Viewing 8 posts - 1 through 9 (of 9 total)
Thanks guys, the difference in speed is amazing 🙂
June 23, 2015 at 8:46 am
The first one
CREATE NONCLUSTERED INDEX idx_Transactions_TransTime
ON dbo.transactions (trans_time, SiteID)
INCLUDE (transactionID,siteID,areacode,gamename,sitename)
GO
is reporting
Msg 1909, Level 16, State 2, Line 1
Cannot use duplicate column names in index. Column name 'SiteID' listed more than...
June 23, 2015 at 8:19 am
wow thanks for this, adding these, will not effect the table data will it, the last thing i need is to mess up the database lol
June 23, 2015 at 8:10 am
right got it, its attached, thanks for the help 🙂
June 23, 2015 at 7:01 am
GilaMonster (6/23/2015)
Open up Management Studio, navigate in Object Explorer to the tables and script out the...
June 23, 2015 at 4:06 am
Attached is the sqlplan, not sure how to get the other info you wanted.
June 23, 2015 at 3:26 am
GilaMonster (6/22/2015)
You mean SQL 2005?
See http://www.sqlservercentral.com/articles/SQLServerCentral/66909/ for saving execution plans.
For the index definitions, you can see them in Management Studio, should be same...
June 22, 2015 at 9:27 am
GilaMonster (6/22/2015)
Index definitions and execution plan (saved as a .sqlplan file) please.
I'm not ofay on how to do this, i'm not a SQL developer i come from an embedded software...
June 22, 2015 at 8:52 am
Viewing 8 posts - 1 through 9 (of 9 total)