Viewing 15 posts - 46 through 60 (of 73 total)
This has given some direction but not serving my need exactly...
can any one please post any query( may be using dmv) to get unused objects list directly..
May 5, 2010 at 3:27 am
Nope..you misunderstood..
overlapping indexes are the indexes which overlapped over the columns...for example..if i have 3 indexes..
index 1 is on Table1 on col1,col2,col3
index 2 is on Table1 on col1,col2
index 3 is...
May 4, 2010 at 5:25 am
Second one is so sweet and fast as you....thanks again......
April 30, 2010 at 12:48 am
Thanking all for responses..
I did some work on this procedure..rewritten the code without using while loops...tried having tally table to insert the values from comma separated string into temp tables...
March 23, 2010 at 11:08 pm
One more question which i missed in Original Post..
Does it require to have an index on FK columns. can any one please post possitives and negatives of having an index...
March 3, 2010 at 10:27 pm
Thanks for the query. It works great.........
March 3, 2010 at 9:41 pm
Is this you are looking for?
declare @tblStr varchar(max)
declare @intMnth int
set @intMnth =1
while @intmnth < 12
begin
set @tblStr = 'CREATE TABLE [dbo].[DERInfo_2010'+cast(@intmnth as varchar(10))+'](
[trnxid] [int] IDENTITY(1,1) NOT NULL,
[DDate] [datetime] NOT NULL,
[TID]...
February 22, 2010 at 11:41 pm
Thanks Bru..i donot have access to Server. i will ask DBA to set this permission..
December 16, 2009 at 11:23 am
Thanks....how / where to set the permission?
December 16, 2009 at 11:05 am
Thanks bru for response..
One more thing i missed in my original post is...compatiblilty level for the DBs in SQL 2005 is set to 80. does it have any dependency on...
December 10, 2009 at 11:49 am
Thanks..I will try when i post next query ...
December 7, 2009 at 12:27 pm
Viewing 15 posts - 46 through 60 (of 73 total)