Viewing 15 posts - 151 through 165 (of 184 total)
Isn't that illegal???? You should probably go buy it so you have the labs and what you do have will be legal. Someone had to spend a lot of time...
June 21, 2004 at 3:09 pm
After running this, did you run DBCC SHRINKDB('database')?
June 21, 2004 at 3:07 pm
No. He should run the business and leave the database to others. You NEED to run this maintenance on a regular basis.
June 20, 2004 at 12:19 pm
How are you trying to connect? What's your connection string look like? Are you installing MSDE as a named instance or the default instance?
June 20, 2004 at 12:15 pm
Drop and recreate the index.
June 20, 2004 at 12:05 pm
As you said, the INDEXDEFRAG does allow you to claim more space in the shrink db process. If you want to maximize your shrink and have a good maintenance window:
1. ...
June 20, 2004 at 12:03 pm
One other thing I forgot on my list (DOH). After you restore the msdb database, you need to update the originating_server column in the sysjobs table to the new server. ...
June 14, 2004 at 10:36 pm
It's preferrable that you do not. SQL is a set based language and processes sets much more efficiently. Having said that, here's an example:
June 14, 2004 at 7:00 am
The only problems we've experienced so far are instances where the server was attached to a SAN. Make sure all your hardware is on the W2K3 compatability list and you...
June 13, 2004 at 9:00 pm
RESTORE FILELISTONLY
FROM DISK = 'c:\Northwind.bak'
--This will give you the list of the logical files.
RESTORE DATABASE TestDB
FROM DISK = 'c:\Northwind.bak'
WITH MOVE 'Northwind' TO 'c:\test\testdb.mdf',
MOVE 'Northwind_log'...
June 13, 2004 at 8:58 pm
1. Look for sp_help_revlogin by searching the forums on http://www.sqlteam.com. Run this script in the master database on the old server to script out all the logins, database users,...
June 13, 2004 at 8:53 pm
Assuming you're using SQL Server Agent to schedule the jobs, you could run sp_update_job from osql.
June 13, 2004 at 3:42 pm
You'll want to track Security Audit..Audit Object GDR Event. With the view, you might also want to track Security Audit..Audit Object Derived Permissions.
Make sure you include the databaseid, object id,...
June 13, 2004 at 3:38 pm
Why don't you just go to http://www.microsoft.com/data and download the MDAC from there? Then you don't have to fool with the key or setup at all.
June 13, 2004 at 12:33 pm
Viewing 15 posts - 151 through 165 (of 184 total)