Viewing 15 posts - 31 through 45 (of 161 total)
are there any triggers on the table that may be doing a rollback ?
April 19, 2007 at 4:34 am
Hi,
there is a built in function to do this. look up abs in BOL.
HTH
Paul
March 22, 2007 at 9:32 am
hi, try something like :-
if not exists (select 1 from INFORMATION_SCHEMA.TABLES
where TABLE_NAME = '{table_name})
begin
create table {table_name} (columns ...)
end
Paul
June 16, 2006 at 9:58 am
hi, not sure what your exact problem is, but this might help :-
http://www.sqlservercentral.com/columnists/sjones/atemporarymove.asp
it explains how to move tempdb.
June 15, 2006 at 1:03 am
anyone think it could be horse racing ? lots of horses, course, jockeys , races and distances. and all around the world, all year !
June 9, 2006 at 6:22 am
all this is in the table designer in enterprise manager
June 2, 2006 at 3:46 am
hi,
hold the ctrl key down and select both (or more) rows. When highlighted, press the key button, and the key icon should appear next to both fields
HTH
Paul
June 2, 2006 at 3:45 am
Ian,
I don't think that there is an empty log file after 22:489:1, as it uses that for the first LSN for the next restore. I was wondering if loading an empty...
June 1, 2006 at 4:58 am
hi,
it is possible that the transaction logs that have errors are empty ? (as they are on smaller, quieter systems). it may just be complaining about an empty log.
HTH
Paul
June 1, 2006 at 3:38 am
hi,
change EXECUTE @tmpMessage to EXECUTE (@tmpMessage)
and your variable @tmpMessage should be nvarchar(4000)
HTH
Paul
May 30, 2006 at 8:41 am
hi, look at BOL for DBCC OPENTRAN, and see if you have any long running transactions , and kill it off if you have. Or Look at Backup Log (IN BOL...
May 25, 2006 at 2:20 am
hi,
are you expecting it to return qwertyuiuoipthe ?
that's the result i get on my SQL Server 2000
Paul
May 25, 2006 at 2:07 am
Viewing 15 posts - 31 through 45 (of 161 total)