Viewing 15 posts - 16 through 30 (of 32 total)
Back to local groups vs domain groups.
When granting file level security it is better to grant to local groups then add domain groups. This is because re-orgs and other...
February 13, 2003 at 6:40 am
I suggest that you never truncate the transaction log, always back it up.. Database backups are fine for restoring the state of a database, but the transaction log preserves...
January 3, 2003 at 6:39 am
Regardless of how often, or how you do your backups, if you have never tried to restore the data to a different machine you are at serious risk.
You should always...
January 3, 2003 at 6:22 am
The transaction log dump cannot occur while a database backup is in progress. The failed dump you are experiencing does not break the chain of TL dumps because it...
January 3, 2003 at 6:12 am
Back to the original question. We have a database (55GB) that is primarly one table that our custom CAD package uses to store its data. The data is...
December 30, 2002 at 7:02 am
I have to agree with David.
Most programmers I have worked with, given free reign, would never finish a project. They would spend their time evaluating new toys...
December 16, 2002 at 8:50 am
To reply to the original question:
1) There is a bug in the FTP task in DTS. If the file is greater than a certain size, it will be deleted...
December 9, 2002 at 8:17 am
The reason that you can roll back a truncate is because the actual data changes made during a truncate are logged.
The difference between 'truncate' and 'delete from' is that delete...
December 5, 2002 at 6:29 am
We have a Hitachi SAN with 10TB of disk. The SAN performance is signifigantly greater than any of the local disk arrays. It has also simplified our lives as...
November 25, 2002 at 9:04 am
Be sure that you are NOT using named pipes from your web sserver to your database server. You want to be using TCP/IP. With TCP/IP, all you need...
October 31, 2002 at 8:54 am
If you use the 'permanent' temporary table with the SPID column, you will want to clear it at the start of your procedure, not at the end. If you...
October 10, 2002 at 6:20 am
Interesting. We also use IBM's Tivoli backup solution. Have you ever considered using their TDP backup client for SQL Server? We use it so that we do...
October 4, 2002 at 11:16 am
We were having the same problem with large files. Finally gave up and just call a batch file that starts FTP with the -s parameter. This allows the...
September 19, 2002 at 8:09 am
We do the same thing with a DTS package that uses an ActiveX script to log into each of our 41 servers and query msdb. The results are written...
September 19, 2002 at 6:49 am
I really did find this code in an application. You are all right in that it was not coded to produce the desired results (i.e. delete the records from...
July 12, 2002 at 3:43 pm
Viewing 15 posts - 16 through 30 (of 32 total)