Viewing 15 posts - 976 through 990 (of 1,222 total)
Have you checked the script library here at SQL Server Central. If you can't find exactly what you are after, you are pretty likely to get something fairly close
e.g....
November 13, 2007 at 7:46 pm
Your understanding is close. The txn undo file contains modifications that were not committed on the source database but were in progress when the txn log was backed up...
November 13, 2007 at 7:27 pm
I am not exactly sure what it is that you can't find. So here is a few things to check.
Maintenance plans are normally created and changed using SQL Server 2005...
November 12, 2007 at 7:35 pm
You certainly can - just install client tools
November 8, 2007 at 7:34 pm
The difference between a covering index and an index using INCLUDES is that in a covering index all columns in the index are included in the b-tree. This makes...
November 8, 2007 at 7:21 pm
I am inclined towards mirroring. It is so much easier to manage and if you do wish to have automatic failover, that is just so easy to get up...
November 8, 2007 at 7:16 pm
Are you able to get to the log file for the database ?
If you can, you can backup the log and get the last 25 minutes of transactions with...
November 6, 2007 at 7:56 pm
You can't easily select a different folder for each database. Yeah, it would be nice to have more flexibility especially when it comes to storing partitions on different drives...
November 2, 2007 at 10:28 pm
Just a quick note on the use of indexes and LIKE searches. Yes, prior to SQL Server 2005, a condition such as LIKE '%Xyz%' would not have benefited from...
November 2, 2007 at 10:20 pm
If you are needing a high availability solution, replication is not really a very good choice.
Have a look at SQL Server clustering and also at Log Shipping. These are...
October 30, 2007 at 10:37 pm
Have you considered using full text catalogs for your meta data columns ?
October 30, 2007 at 8:25 pm
To get the table definitions and data to the replica database, you will need to create a subscription. In Enterprise Manager, you should see a node called "Replication"....
October 30, 2007 at 8:15 pm
The code supplied is for SQL 2005. Instead of sys.sysprocesses, try dbo.sysprocesses
October 29, 2007 at 8:35 pm
I think Jeff is saying that if the logreader agent fails, the transaction log will grow (which is true because transactions must remain in the trans log until they have...
October 29, 2007 at 7:36 pm
I have customers who regularly have multi-gigabyte transaction log files and they don't experience problems. I also have not noticed any posts from people having problems.
Are you able to...
October 28, 2007 at 8:38 pm
Viewing 15 posts - 976 through 990 (of 1,222 total)