Viewing 15 posts - 751 through 765 (of 1,098 total)
because the jobs executes the DTS package and it success when is executes.
You should let the DTS package to warn you on error
April 1, 2003 at 12:35 pm
You could try killing all the users when needed and putting the db in single user mode. But can be dangerous killing all the users. Or also could stop and...
April 1, 2003 at 11:05 am
You should be able to eliminate any remote server if it doesn't have any logins specified. You could try removing the logins firts wit hsp_droplinkedsrvlogin or drop the server with...
April 1, 2003 at 10:59 am
Sorry, my mistake.
With EM, go up to replication monitor and find the subscription with the error. Right click over it and click in Agent Profile.
Check wich one is SQL using....
April 1, 2003 at 6:32 am
Also have the same problem, and is because of a large transaction.
If you have the MaxDeliveredTransactions equal to 0 (wich means all transactions) increase the value to for example 10...
April 1, 2003 at 5:46 am
If deleting the 6 mil records, crashes yor server, you could execute the deletes in parts. You could delete the top 1 mil. for example, and then the next mil.
...
April 1, 2003 at 5:39 am
You could also check that you do not have duplicate rows before creating your PK with a count and a group by clause for example.
April 1, 2003 at 5:32 am
You should schedulle system databases backups, and also backup a database after you change it. For example, if you create a new db, backup the master, if you add an...
April 1, 2003 at 5:18 am
Are you sure? I don't use it, and all my sp works just fine.
March 28, 2003 at 2:21 pm
You could create an sp wich name starts with 'sp_', (just like bultin stored procedures)
in the master. This will let you call the sp from any db, like almost sp...
March 28, 2003 at 12:31 pm
I think it tried to start the SQL Server Agent at the subscriber. But it coudn't do it because of a login problem. Is the login account used on the...
March 28, 2003 at 12:14 pm
You could create a cursor like this:
DECLARE @Table AS SYSNAME
DECLARE curTables CURSOR LOCAL FOR
SELECT [name] FROM sysobjects WHERE xtype = 'U'
OPEN curTables
FETCH NEXT FROM curTables INTO @Table
WHILE (@@FETCH_STATUS = 0)
BEGIN
PRINT...
March 28, 2003 at 10:47 am
Check in the db options the autogrowth property and also the Mb or % on incremental size. Maybe there is to big and the db size increase to much for...
March 28, 2003 at 9:54 am
I would also use DTS packages to export the data that you need. If you want to also replicate the jobs, I would set my production server as a master...
March 28, 2003 at 9:41 am
You should be very carefull about this. I would also configure the mail to advice me when the SQL Serve Agent start so I can know everyhing went right. You...
March 28, 2003 at 9:03 am
Viewing 15 posts - 751 through 765 (of 1,098 total)