Viewing 15 posts - 46 through 60 (of 72 total)
hm ... i read something about this somwhere. It says if your first condition match with your first column in your index, it will fasten the speed to build the query...
you have to put the column's data type after the column name (but before the IDENTITY keyword)
for example,
alter table alter column mycol int IDENTITY(200, 2)
try and see
Leo
what i did was like this:
1. go to sysusers and look for the uid that i want
2. update sysobjects with the uid that i just found for those objects that i want...
thanks, Gabor.
my previous SQL Server database was > 900GB.
it is a database used by a factory. of course, it needs to be up 24 x 7.
however, my transaction log is...
Sufian,
u can try this code:
backup log db_name with truncate_only
dbcc shrinkfile (logfile_name, size)
u can truncate the log even when ur database is online.
u can put any parameter for the size. its...
Viewing 15 posts - 46 through 60 (of 72 total)