Viewing 6 posts - 106 through 111 (of 111 total)
We do this a lot (not through an sp but manually) since we sometimes want to run tests on a database that contains actual production...
October 14, 2005 at 8:34 am
Is there something causing the SQLAgent service to be shutdown on Saturdays?
October 11, 2005 at 9:08 am
Here's a working example that executes a 'select *' on dbo.Table:
DECLARE @SQLString nvarchar(100)
set @SQLString = N'select * from '+ @@servername + '.' + db_name() + '.dbo.Table'
PRINT @SQLSTRING
EXEC(@SQLString)
October 7, 2005 at 7:56 am
If you are want to limit the size of your transaction log when moving large amounts of data, why not use "bcp" (bulk copy) and the batch size switches (see...
October 5, 2005 at 11:42 am
I have been reading "Microsoft SQL Server 2005 New Features Essential Skills for Database Professionals" by Michael Otey. (ISBN - 0-07-222776-1)It is a good book.
You also might want to check...
September 30, 2005 at 7:10 am
As Deni Kusdeni mentioned, the current production versions of SQL Server does not support synonyms. However, SQL 2005 will have the ability to assign synonyms to objects.
You probably can't wait...
September 23, 2005 at 11:08 am
Viewing 6 posts - 106 through 111 (of 111 total)