About 372 results
Open links in new tab
  1. sql query to separate the semicolon - social.msdn.microsoft.com

    Dec 24, 2010 · Premature optimization is the root of all evil in programming. (c) by Donald Knuth Naomi Nosonovsky, Sr. Programmer-Analyst My blog Marked as answer byKJian_Friday, December 24, …

  2. Is there a way to see the sql code in powerpivot after the initial ...

    Mar 21, 2013 · From the PowerPivot window, select the table you want. Then go to the Design tab and select "Table Properties". If the table you've selected has a SQL query source, you'll see the …

  3. Querying Informix - TSQL syntax is used

    Dec 12, 2008 · So, SSAS is assembling a query to submit back to Informix using the SQL Server 2000 cartidge. It is taking your named query, using it as a nested statement within a SELECT statement it …

  4. Linq query, comparing execution time in SQL Profiler, same final query ...

    Oct 7, 2021 · The main point is why I´m getting different duration time on SQL Server to run same query. I´m considering data collected by SQL Profiler are pure SQL requests/response, and it is not related …

  5. Same query uses different execution plans on two different servers

    Apr 6, 2018 · It uses two totally different execution plans on the old and new servers. The new execution plan doesn't even know the underlining system table sys.sysrowsets for sys.partition. Instead, the …

  6. sql query to see all received message BizTalk 2006 R2

    Oct 18, 2010 · You can pretty much copy-paste those queries into a SQL Management Studio and run them agianst the BisTalkDTADb database. Theere is a message facts view and a service facts view …

  7. Azure Data Factory to copy Azure Log Analytics query result into SQL …

    Feb 18, 2020 · It can be done with the help of Log Analytics REST APIs. You can set up a copy activity with the REST API for your query as the source and with your output as the SQL table.

  8. Insert Into OpenQuery to Oracle fails from a T-SQL trigger

    Mar 17, 2011 · However, when I use the same in a T-SQL after insert trigger which actually needs to do this job, "INSERT OPENQUERY (DBLink, 'SELECT fields FROM OraTab') SELECT fields FROM …

  9. Group By Select Top 1 Rows - social.msdn.microsoft.com

    Mar 25, 2015 · However, if you are trying to get the top 1 SHGMemberId for each SHGId group modify this query with your fields and tables and should return the results you need (using temp table).

  10. stored procedure for rebuild indexes - social.msdn.microsoft.com

    Oct 11, 2012 · USE [databasename] GO StoredProcedure [dbo]. [sp_RebuildIndexes] SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE PROCEDURE [dbo]. …