Viewing 15 posts - 301 through 315 (of 1,098 total)
With the function app_name() you can know if the trigger is being called by a job.
the result is that is being called by SQL Agent and also is gives you...
January 8, 2004 at 7:13 am
Yes it can be done. But be shure you don't have upadtes or deletes from old records, because replication will fail.
When you subscribe to the publisher you can choose that...
January 6, 2004 at 7:17 am
You can change the identity property to NOT FOR REPLICATION and assing different seeds and values to each server, or you can also change to Merge replication that will manage...
January 6, 2004 at 5:52 am
If using transactional replication the hard work will be in the distributor. So my advice is to separate the distribution server into a separate server than the publisher.
January 5, 2004 at 2:24 pm
Is seems you create a media set before with that file. To re use it execute the backup with the FORMAT option.
BACKUP DATABASE DBNAme TO DISK = 'e:\backupfilename.bak' WITH FORMAT
January 5, 2004 at 12:10 pm
You should check for the SET LOCK_TIMEOUT option in the trace to know id the app transaction is setting a lokcing option. But you should find anything.
You should also check 'locks',...
January 5, 2004 at 8:27 am
Also:
CREATE PROCEDURE Sp_RepHour
@MaxTime AS INT OUTPUT
AS
SELECT @MaxTime = MAX(CAST(REPLACE(Objvar,':','') As int)) FROM TblBid
GO
And then when calling it:
DECLARE @MaxTime AS INT
EXEC Sp_RepHour @MaxTime = @MaxTime OUTPUT
PRINT @MaxTime
January 5, 2004 at 7:07 am
I think you didn't do it in the correct order.
Fist you should delete all the subscriptions to your publicacion, on both server. (In this way you won't have to use...
January 2, 2004 at 2:00 pm
I think SQL doesn't write in parallel to Log files. It just will use another file, when the first is full. So adding log files won't help.
But it might help...
January 2, 2004 at 1:36 pm
The Restore verifyonly is the same that "Verify the integrity of the backup upon completion".
But it only checks that the the backup is readable, not the integrity of the data.
So...
January 2, 2004 at 1:31 pm
In QA:
Tools\Options\Results tab\Maximun characters per column
December 31, 2003 at 7:06 am
If the dial up connection goes down the active transaction in the replication process should be roll backed. So you shoudn't have any inconsistant problem.
About the restore, that is easy...
December 31, 2003 at 6:04 am
SQL doesn't has to recovery tempdb when restarted, so it doesn't need to log everything in the log file as much as in a user db.
So write...
December 30, 2003 at 12:37 pm
Viewing 15 posts - 301 through 315 (of 1,098 total)