Viewing 15 posts - 9,166 through 9,180 (of 9,208 total)
do you mean deploy a database using a windows form or deploying sql server express using a windows form?
July 11, 2008 at 4:16 pm
to attach the database, copy the files to the desitred location and use the following T-SQL
sp_attach_db 'dbname', 'drive:\path\filename.mdf', 'drive:\path\fiilename_log.ldf'
July 11, 2008 at 4:13 pm
oh OK. There are advantages and disadvantages of both, the following link details rebuild vs drop and create
July 11, 2008 at 3:54 pm
starflyer (7/11/2008)
I didn't feel this stored procedure would choke on a cursor.
couldnt agree with you more
July 11, 2008 at 3:49 pm
i seem to remember this. The first release MS made of SQL 2005 SP2 had a bug with maintenance plans. Get the latest version of the SQL 2005 SP2 and...
July 11, 2008 at 3:25 pm
thats the way i understood it to be
July 11, 2008 at 3:19 pm
in perfmon under Memory check "available bytes" too.
July 11, 2008 at 3:18 pm
i could be wrong but i get the feeling he was trying to achieve it without the use of a cursor
July 11, 2008 at 3:12 pm
BOL implies this is done on a transactional basis not a time basis?
July 11, 2008 at 3:07 pm
check this info on recovery interval option
http://msdn.microsoft.com/en-us/library/ms191154.aspx
checkpoints occur for a number of reasons
July 11, 2008 at 1:14 pm
what are you shrinking data files or log files
SQL server will not shrink past an active portion of the file, if that happens to be near the end of the...
July 11, 2008 at 12:53 pm
or choose script to new query window then close it and save as .sql script
July 11, 2008 at 12:41 pm
balbirsinghsodhi (7/11/2008)
or you do not have permission.
balbirsinghsodhi (7/11/2008)
Actually, Some Analytical users are using this database and they create whatever they want.
local temp tables should normally clear up when out of...
July 11, 2008 at 12:39 pm
GilaMonster (7/11/2008)
The related effect of the fill factor is to increase the number of pages in the index.
and consequently the overall file size.
it would be interesting to see what happens...
July 11, 2008 at 8:35 am
Viewing 15 posts - 9,166 through 9,180 (of 9,208 total)