Viewing 15 posts - 91 through 105 (of 296 total)
You can register for receiving emails from Microsoft regarding security updates. You can get more information about how to at http://www.microsoft.com/technet/security/Current.aspx
As far as patching / updating the servers is concerned,...
April 15, 2009 at 11:16 am
You will have to take the output from readerrorlog in to a temporary table and then perform the date time comparison.
April 15, 2009 at 6:54 am
Have you looked at the logs to see if there is any error or information in there?
April 14, 2009 at 11:49 am
Windows 2008 is a lot more restrictive (sometimes to the point of being annoying) where security is concerned. You seem to be taking a backup in the default folder. Users...
April 14, 2009 at 9:28 am
You can delete the data from the table which has the foreign key or you can disable constraint checks and then delete.
So it really depends on your database design.
April 14, 2009 at 8:54 am
The growth of the log size would depend on how many records are deleted. You can limit the impact on the system and the log file by deleting in batch....
April 14, 2009 at 6:38 am
It seems, like most historical data, your data serves a reporting function. If the current data is part of an OLTP, I would probably look to move the historical data...
April 14, 2009 at 6:32 am
Moreover, if you really need to delete data based on some criteria you could do it in smaller batches using the ROWCOUNT statement. However, you need to keep in mind...
April 14, 2009 at 4:37 am
Does your 350 GB database have historical data? If so, is all the historical data being accessed all the time? Have you considered partitioning?
Are you currently having any performance...
April 14, 2009 at 4:33 am
Like mentioned above, you could log any attempt to drop tables and completely restrict dropping of tables. It depends on what your requirements are.
April 13, 2009 at 1:01 pm
Why not write the output of the scripts to a file and review after implementation. The output could include both DDL and DML.
You could have timestamp appended to the output...
April 13, 2009 at 12:55 pm
The only time I've seen something like this automated is while using a file editor which had an option to make a backup of the file before opening it.
Are you...
April 13, 2009 at 12:33 pm
What purpose is this report going to serve?
April 13, 2009 at 12:20 pm
I think it had to do with the order in which I did this. For future reference -
1. Enabled PAE / 3GB which ever applicable or both (boot.ini)
2. Provide Lock...
April 13, 2009 at 12:16 pm
Viewing 15 posts - 91 through 105 (of 296 total)