Viewing 15 posts - 151 through 165 (of 273 total)
Do u see any other errors in ur event viewer relating to your I/O problem?
May be there is problem in ur hardware or maybe device driver .
In ur event viewer...
April 21, 2009 at 2:16 pm
I found this on net, to calculate size of index in ur database(for all tables).
select objectname, index_size = LTRIM (STR ((CASE WHEN usedpages > pages THEN (usedpages - pages) ELSE...
April 21, 2009 at 2:04 pm
Joseph (4/21/2009)
hi,how do we getthe actual size of indexes of table.
thanks
Joseph
sp_spaceused TableName
will give u size of the index of the table
April 21, 2009 at 1:35 pm
I did like this article by Sanjay Mishra about calculating index size:
download.microsoft.com/download/D/9/4/D948F981-926E-40FA-A026-5BFCF076D9B9/TEMPDB_Capacity_Planning_Index.doc
I usually follow rule of thumb that in order to built an index, it will take 2.2 times the...
April 21, 2009 at 1:32 pm
Also I am guessing whether u have column with NULL values, in that case Aggregate functions will give u incorrect results. I fu do have isnull columns then u should...
April 21, 2009 at 9:52 am
venkataramanis (1/8/2008)
Ldf file will get increased during reindexing but in my setup .mdf file also getting increased.
I like to know the reason why mdf file...
April 21, 2009 at 6:48 am
what messge do u get when u run this command on ur backup:
RESTORE VERIFYONLY FROM DISK = 'C;\BlahBlah\urDatabase.bak'
where 'C;\BlahBlah\urDatabase.bak' is location of ur database.
Its nothing to do with the error...
April 9, 2009 at 11:25 am
so if for a particular State = NULL ,count(status)>1 only 'Active' status row should be displayed or any status row can be displayed('Active' or 'Pending').
April 8, 2009 at 1:08 pm
Transaction cane be commited if u use commit tran on the same SPID or client that had started executing your T-SQL queries. (i.e. same window)
April 8, 2009 at 8:10 am
Opps I am sorry u have to add this in the code too
EXEC(@tsqlalter)
--after the
SELECT @tsqlalter = @AlterTable+@AddColumn+'money'
so it should be
SELECT @tsqlalter = @AlterTable+@AddColumn+'money'
EXEC(@tsqlalter)
April 8, 2009 at 7:59 am
Above transaction will result in Deadlocks. This current SPID will allways be in a running state until commited or killed.
April 8, 2009 at 7:36 am
Viewing 15 posts - 151 through 165 (of 273 total)