Viewing 15 posts - 541 through 555 (of 1,166 total)
http://www.sql-server-performance.com/gv_stress_test_lessons_3.asp
There are some third party tools if you want to spend money...
January 18, 2007 at 5:27 pm
You can use CONTENT button in 2005 to get the same info.
January 18, 2007 at 5:06 pm
You can create a function and update the table using function...
you can use the function from the following url..
http://sqljunkies.com/Forums/ShowPost.aspx?PostID=11222
January 18, 2007 at 5:02 pm
You can download trial version and use it.
Microsoft SQL Server 2005 Enterprise Evaluation Edition
January 18, 2007 at 4:55 pm
PRB: Log Reader Agent Does Not Function and You Receive an Error Message During Transaction Replication
http://support.microsoft.com/kb/811030
You can also log the error message for troubleshooting...
How to enable replication agents for...
January 18, 2007 at 4:48 pm
You can script the replication through Enterprise Manager and also can be done using SQL DMO.
Script the replication when you are running on different server you need to replace the...
January 18, 2007 at 4:39 pm
To script procedures, triggers and views you can use OBJECT_DEFINITION function in sql 2005 and it is very simpled...
Check BOL for more details...
SELECT OBJECT_DEFINITION (OBJECT_ID(N'sys.sp_columns')) AS [Object Definition];
OBJECT_DEFINITION applies to...
January 18, 2007 at 3:56 pm
January 18, 2007 at 3:47 pm
FIX: The replication on the server does not work any longer when you manually fail over databases...
January 18, 2007 at 3:42 pm
Yes, as along as the server has valid SQL SERVER 2005 licence, if you want to install on a seperate server than sql server then you need to buy seperate...
January 18, 2007 at 3:13 pm
Here you go free tool..
http://www.sql-server-performance.com/news_releases/xsql_software_20060705.asp
January 18, 2007 at 12:51 am
SELECT b.database_name,
b.backup_start_date,
b.backup_finish_date,
b.user_name,
f.logical_name,
f.physical_name,
mf.physical_device_name,
f.file_type,
f.file_size,
b.backup_size
FROM msdb.dbo.backupfile f,
msdb.dbo.backupset b,
msdb.dbo.backupmediafamily mf
WHERE f.backup_set_id = b.backup_set_id
AND b.media_set_id = mf.media_set_id
AND b.database_name = 'pubs'
ORDER...
January 18, 2007 at 12:28 am
Viewing 15 posts - 541 through 555 (of 1,166 total)