Viewing 15 posts - 196 through 210 (of 463 total)
This is the good old procedure from SQL 7.0. It works great.
create proc sp_force_shrink_log
/*
*************************************************************
Name: sp_force_shrink_log
Description:
Shrink transaction log of the current database in SQL Server...
December 7, 2004 at 8:47 am
Check the article below.
http://support.microsoft.com/kb/246133#4
You can restore used databases as Steve suggested or also copy the data files from SQL 7.0 to SQL 2000.
December 6, 2004 at 3:09 pm
I think that this error indicates that your connection is opening up with your application and might be your connection is breaking up while performing some reads. Not sure what...
December 6, 2004 at 10:27 am
Check the role TargetServerRole in msdb. This should give you permissions to view the jobs.
December 6, 2004 at 10:17 am
Try running DBCC CHECKDB and verify that everything is fine on the database. Regarding writing to the log file, Truncate log on checkpoint will only truncate completed transactions on a checkpoint....
December 6, 2004 at 10:15 am
You can check if any of your enterprise admins can help you figure out where the host is located ? Something we also do is we have alerts set up...
December 6, 2004 at 9:57 am
Can't open default user database. Login failed
For this error, check the default database to which the login has been assigned and make sure that your login has access to that...
December 6, 2004 at 9:51 am
This is a workaround but doesn't answer why it is sitting with the blinking cursor. Schedule the DTS package with any schedule. Open the job which is created and copy the...
November 24, 2004 at 8:01 am
That is weird. You can copy the data and log files for model database from another server and attach them on this server.
November 24, 2004 at 7:51 am
Kevin,
If you select the first option, reorganize data and index options, you should not be concerned about updating the statistics. The statistics will be updated with the index rebuild.
Regarding the...
November 23, 2004 at 7:44 pm
Make that user the owner of the database. The database owner shares the alias name dbo within a database and hence any objects created by that user would be prefixed...
November 19, 2004 at 10:08 am
Just in addition to what Frank advised, under pageheader, m_objId gives you the object id
November 18, 2004 at 3:36 pm
November 18, 2004 at 3:21 pm
1) When you execute the package, the latest version of the package will be executed.
2) If you right click the package, and click on version, you should be able to see the...
November 18, 2004 at 3:16 pm
Viewing 15 posts - 196 through 210 (of 463 total)