Viewing 14 posts - 1 through 14 (of 14 total)
So according to your suggestion, the index would be:
CREATE INDEX IDX_LOCATION_DATE
ON Location_Id, Transaction_Date
INCLUDE (Vertical_ID, Customer_Id)
After creating this index, how can I determine whether it is performing well or not?
March 16, 2014 at 12:05 pm
What if I create two indexes as below:
CREATE INDEX IDX_DATE
ON Transaction_Date
CREATE INDEX IDX_LOCATION
ON Location_ID
INCLUDE (Vertical_ID, Customer_Id)
March 16, 2014 at 11:53 am
With MERGE I want to know whether I can do something like this:
MERGE <table name> USING <sql>
WHEN MATCHED THEN
IF (condition) Then (Update Query)
When NOT Matched...
June 10, 2013 at 1:06 pm
Ok, so I see those books on SQL Server 2008. Since 2012 is there, shall I wait for these books to get revised for 2012?
April 21, 2012 at 5:04 am
I need to check the availability of those books in India. Does that book on administration include Architecture and other Internals?
Any web resources?
April 21, 2012 at 3:51 am
I am struggling to create a sample data for you.
November 5, 2011 at 10:52 am
I guess you missed my second post above where I added complete code with COUNT and image as attachment.
November 5, 2011 at 10:25 am
Data is not possible for me, but I am attaching output that I am getting when below given query is used:
SELECT district_nm,Count(urban_appr) as urban_appr, Count(urban_inprogress) as urban_in, NULL, NULL, NULL,...
November 5, 2011 at 6:59 am
I want to download SQL Server 2008 Express R2 with Advanced Services. Where I can find the .iso for this edition?
September 24, 2011 at 9:18 am
I also got similar error. Later I changed it to 11433. (see below).
=============================================================
Dim Constring As String = "workstation id=MYLAPTOP;packet size=4096;user id=rpk;password=123456;data source=62.141.48.155,11433;persist security info=False;initial catalog=testdb1"
May 15, 2007 at 4:38 am
Thanks for the replies. But I got the reply from the Microsoft Community and they gave the following link:
http://support.microsoft.com/?id=247750
Go to this link to know more about the double...
February 24, 2005 at 10:07 pm
Thanks Andy,
I will try your method, and come back to u.
Thanks a lot.
"Here is a test to find out whether your mission in life is complete. If you're alive,...
May 26, 2002 at 11:21 pm
Andy,
Since I am new to SQL Server 2000, I am not following the row level method. Please decribe it how it can be done. If I create a new user...
May 26, 2002 at 11:33 am
Viewing 14 posts - 1 through 14 (of 14 total)