About 6,270 results
Open links in new tab
  1. Set Variable equal to result from query? - social.msdn.microsoft.com

    Mar 30, 2011 · I have a query that returns multiple records. One of the columns in the query contains a list of Ids. I want to set a variable that is equal to the list of values in this one column.

  2. Reporting services Count function with condition is it wokring?

    Jul 1, 2011 · hi all , currently i was facing one problem with the SQL server 2008 reporting services's count function.

  3. Calling a server side (non static) method from JavaScript. (in ASP.NET ...

    Oct 7, 2021 · -- Adding [WebMethod] and [ScriptMethod] attributes only allow you to use the PageMethods method in JavaSctipt if the server side method is static. If it is static you can't …

  4. VBA doesn't recognize data in text box separated by commas

    Oct 1, 2015 · Function fncIsInDelimitedList ( _ TheValue As Variant, _ TheList As String, _ Optional Delim As String = ",", _ Optional PartialMatch As Boolean = False) _ As Boolean ' Accepts a string …

  5. Use loop and MID function to reverse a name

    Feb 21, 2012 · I need to take a persons name from a text box and print the name backwards in a label using lop and the MID function.

  6. Full join and Null values - social.msdn.microsoft.com

    Oct 30, 2010 · SELECT ISNULL (tb1.name,tb2.name2) AS name, sum (tb1.sold ) over () AS total_sold,ISNULL (tb1.type,tb2.type) AS name FROM tb1 FULL JOIN tb2 ON tb1.type=tb2.type …

  7. Report Builder 1.0 Can I change the total fields to show differences?

    Apr 8, 2009 · The report you mentioned should be created in Report Designer not the Report Builder 1.0, because we need the inscope () function. Otherwise you cannot separate the detail data and the …

  8. SUM (Amount) when no records - social.msdn.microsoft.com

    Aug 8, 2014 · Only start the subsequent arithmetic when the SUM (AMOUNT) > 0. As you say, you can not use a zero values, but also a undefined value or Null values must be excluded for subsequent …

  9. IsAggregatable property vs. Freeze in MDX

    Aug 1, 2011 · jerry, thank you for the detailed reply, i understand then that the "all" member of the payment period would calculate the sum and show that as the relevant year? and yet i updated the …

  10. How to return a table of key/value pairs from a C# CLR function.

    Jun 14, 2019 · I am looking for help on how to return a table of key/value pairs from a CLR function in SQL Server. I have this code. It doesn't work ATM. Still reading posts and watching videos, but they …