Viewing 15 posts - 196 through 210 (of 223 total)
Please provide a sample data of the data you would like to see in the resultset.
June 22, 2009 at 4:22 am
As mentioned above; please provide some sample data.
June 21, 2009 at 3:46 am
This looks like SP2 issue. Did u install service pack 2. I have seen it happen when the client and the server have different service packs installed.
June 21, 2009 at 3:42 am
Something like below should work:
select t1.Cburg,t2.Hburg,t3.Bmac,t4.Soda
from table1 t1 inner join table2 t2 on t1.BK_ID=t2.BK_ID
inner join table3 t3 on t2.BK_ID=t3.BK_ID
inner join table4 on t3.BK_ID=t4.BK_ID
June 19, 2009 at 2:59 pm
Do u mean performance of the table after deletion or during Deletion????
Use Truncate instead of Delete as Pradeep has mention it's much faster..
It's worth checking the indexes after the...
June 19, 2009 at 8:22 am
Worth checking if the indexes need rebuilding or reorganising after the Deletion..
-- CHECK if the indexes need reorganising
DECLARE @db_id SMALLINT;
DECLARE @object_id INT;
SET @db_id = DB_ID(N'@dbname');
SET @object_id = OBJECT_ID(N'@dbname.dbo.@tablename');
IF @db_id IS...
June 19, 2009 at 8:15 am
Please run the below to see how the indexes are for that table. Also, worth looking at the execution plan of the Update script.
Check to see if it needs reorgainising.
DECLARE...
June 19, 2009 at 8:11 am
Guys,
I didn't explain it right in my previous post. My bad.
the problem was resolved by restarting the sql server.
We've run dbcc checkdb with estimateonly on the client server to...
June 19, 2009 at 7:46 am
Please provide us with ur table structure; and the Update Query that you are using.
Check if the indexes need reindexing or reorganising on the table.
June 19, 2009 at 7:18 am
We resolved our deadlocks problems by setting the following
ALTER DATABASE @dbname SET ALLOW_SNAPSHOT_ISOLATION ON;
ALTER DATABASE @dbname SET READ_COMMITTED_SNAPSHOT ON;
June 19, 2009 at 7:10 am
misunderstood ur question, rank() ,row_number() will work better in this case.
June 19, 2009 at 5:49 am
I think u've understood it right..
Your select statement gives me following error messages:
Msg 8114, Level 16, State 1, Procedure ee_updateStatus, Line 0
Error converting data type varchar to datetime.
Msg 8114, Level...
June 19, 2009 at 4:36 am
Viewing 15 posts - 196 through 210 (of 223 total)