Viewing 15 posts - 76 through 90 (of 522 total)
We need to use SELECT and put the "WITH namesapce" in the outside of the assignement, and use TYPE directive in the SELECT for XML statement The following should work:
ALTER PROCEDURE [dbo].[uwmSP_GetScenarioPreStage]...
July 16, 2007 at 6:55 am
The purpose of the "inlcuded columns" in the index is to remove the key lookup. In the test4 of the article, it achieved this by removing those columns (GroupName, ParentGroupName,ParentGroupID) in the...
May 10, 2007 at 7:35 am
The hard limit of partition number is 999.
May 8, 2007 at 7:17 am
I just sent an email to Steve about the broken of the link to the scripts.
If it's not possible to fix the link, I can send the scripts to your...
May 8, 2007 at 7:11 am
I guess you turned SET IMPLICIT_TRANSACTIONS to ON in the query window (connection). When it's ON, whenever you start a SELECT, INSERT, UPDATE, DELETE .. etc statements, SQL server starts...
May 8, 2007 at 7:04 am
Thanks everyone.
The scripts were all submitted to SQLCentral.com with the article. I am not sure why the link was broken.
To Charles Kincaid:
What...
May 8, 2007 at 6:46 am
I summarized the solution to the MSDTC issue in one of my blog. Take a look and see whether it's helpful.
April 9, 2007 at 11:13 am
Check out this:
If the result of the subquery contains NULL value and ANSI NULL is set ON, the query result of IN + NOT IN does not equal to the statement...
March 16, 2007 at 7:58 am
1) Indexes are for the table, not for partitions of the table. So you can't keep the index for the last partition and drop the same index for the older...
March 16, 2007 at 7:48 am
1) Indexes are for the table, not for partitions of the table. So you can't keep the index for the last partition and drop the same index for the older...
March 16, 2007 at 7:40 am
SQL server does not support time zone when cpnverting xml dateTime data type.
If you truncate the time zone part from the date time string (-5:00), the converted data time will have the...
March 14, 2007 at 7:04 am
SQL server converts the result of top expression to float. This results in a wrong number of records returned. You can confirm this by the execution plan.
Anyway, it sounds a...
March 12, 2007 at 7:17 am
Kunal,
You said in your first post that you had this issue in SQL2005 Enterprise endition, and my answer is definitley for sql 2005.
For SQL 2000, I have no idea.
March 8, 2007 at 9:54 am
SQL server has plan guides, which is designed exactly to solve the issue you are facing by a vendors queries. E.g. if the vender's client sends a quey:
SELECT * FROM Sales.SalesOrderHeader...
March 7, 2007 at 7:02 am
For databases in replication, multiple servers are involved (publisher, distributer, and subscribers). you need to upgrade the servers in the right order. The SP2 readme has the details.
March 2, 2007 at 6:59 am
Viewing 15 posts - 76 through 90 (of 522 total)