About 50 results
Open links in new tab
  1. The data types varchar and bit are incompatible in the add operator

    Feb 19, 2008 · If you're trying to perform an addition (+) with char and numeric datatypes, SQL doesn't know what you're trying to do - concatenate the character strings with a converted version of the …

  2. Alias all columns in a given table - social.msdn.microsoft.com

    May 23, 2012 · this can be resolved with a stored procedure but not with direct t-sql. You have to concatenate the execution strint and execute it with sp_executeSQL. See the following example. …

  3. SSRS Using Two Different Data Sources - social.msdn.microsoft.com

    Mar 26, 2014 · You can concatenate the value of each object in the collection as a string using JOIN. Therefore if you are trying to retrieve multiple fields from DS then you need to have multiple …

  4. access vba loop SQL with a variable from an access table

    Oct 30, 2013 · Looks like that can be done without VBA. Create an append query and join the oracle table with the Regions table on the corresponding RegionNumber field. The resulting query will …

  5. Converting @myString to @myInt - social.msdn.microsoft.com

    Dec 12, 2008 · Here's a fun one. BOL says that using CONVERT or CAST to change a string into a number won't work. The following "works" and I'm assuming it is because the compiler can verify that …

  6. KQL - how to find specific string - social.msdn.microsoft.com

    Dec 3, 2012 · I'm trying to write a KQL query that looks for a specific sub string in a string.

  7. passing two multi-select parameter boxes values to stored procedure

    Apr 23, 2014 · A multiselect parameter (@Param) with the values 1, 2, and 14 selected might be used in a JOIN statement (=JOIN (@Param, ";")) to produce the string "1;2;14". Also, SSRS expressions has …

  8. MSDN

    MSDN

  9. How to fix Cross-Site Scripting: Persistent issues

    Mar 13, 2019 · There is a software called Fortify that scans my web code pages and that the code below vulnerable for Cross-Site Scripting: Persistent. I am not sure how to go about fixing it. Any ideas? …

  10. How to filter string with linq to sql (C#)

    Mar 11, 2011 · Answers 0 Sign in to vote On 3/2/2011 12:18 PM, AntiGameZ wrote: > with t-sql, for instance, I can filter record like below: > > SELECT * > > FROM Customer > > WHERE FirstName …