About 50 results
Open links in new tab
  1. How to select a case sensitive value in SQL with C#

    Mar 29, 2017 · In order to get the case senstive to work, go inside SQL 2005 and right click the column and choose modify. Under neith the table designer field click the Collation button which will bring you …

  2. Unable to access SSIS package - social.msdn.microsoft.com

    Sep 4, 2007 · I'm able to execute the package using the Execute Package Utility on my local version of SQL Server 2005, and the text file is written correctly. It just doesn't happen using the Web Services …

  3. Index rebuild job Failed, need solution.

    Apr 10, 2017 · However, I would recommend that prior to openning case you check that you are on the latest service pack (you could post the output of SELECT @@version and we can tell you), and if …

  4. Find out the objects (including SSIS packages) dependent on Table.

    Mar 20, 2012 · Select SSIS.name As PackageName ,SSIS.description As PackageDescription ,SSIS.createdate As PackageCreateDate ,SSIS.ownersid , (Case SSIS.packagetype when 0 then …

  5. Invalid column name for GROUP BY...

    Jul 15, 2009 · 2). WHERE 3). GROUP BY 4). HAVING 5). SELECT As you can see the SELECT clause is processed after the GROUP BY clause, and this is why the alias defined in SELECT is not …

  6. Want to pass list in sql query - social.msdn.microsoft.com

    Dec 3, 2015 · Danyal, put a breakpoint on the line where you actually execute the code. Get the value of 'query' which is what is being sent to SQL. Paste that query into SQL and confirm that you're getting …

  7. Equallent Application dbms_application_info""in SQL Server

    Aug 19, 2010 · So in this case, you can use sys.dm_exec_sessions and sys.dm_exec_connections DMVs to get all information about the connections established to an instance of SQL Server and the …

  8. How to know if SQL column is a foreign key or not?

    Mar 9, 2011 · I want some sample code to know if the column in a dataset is actually a foreign key or not?

  9. Change vertical results to horizontal - social.msdn.microsoft.com

    Dec 3, 2014 · 1 Sign in to vote ;with cte as (select Number, Certificates, Other, row_number () over (partition by Number order by Other) as Rn from myTable) select Number, max (case when Rn = 1 …

  10. Must declare scalar variable "@DatabaseName"

    Oct 22, 2016 · You are probabl on a case-sensitive SQL Server and the script has a bug in it since it apparently wasn't tested on such a SQL Server. Make sure that the case (upper/lower) matches …