Viewing 15 posts - 2,446 through 2,460 (of 2,897 total)
I generally use "failure" to send emails. To get around the problem of email not working, and thus not getting the failure, I send myself a generic email every day...
November 10, 2006 at 8:32 am
We also use Diagnostic Manager and have been satisfied with it. They've had a few updates, which is good to see that they're keeping up to date. I nice feature...
November 10, 2006 at 8:27 am
Rudy ... Did you come up with a good solution ? I'm in the same situation. TIA
TDuffy ... I'm trying your approach and noticed you have a typo. If you...
November 7, 2006 at 1:00 pm
I haven't seen that particular error before. Are both servers on the same domain ? If so, is your SQLADMIN account a windows account or SQL account ? I always...
November 7, 2006 at 12:41 pm
I was missing /PAE ... Thanks !
(I missed the joke)
November 4, 2006 at 12:23 am
Tim,
The little bit that I know is that the DTS migration tool will work for simple DTS packages, but some of the more complex ones will not convert because...
November 3, 2006 at 2:32 pm
How big is your database ? If it's fairly small, you can back up the database, which creates a .BAK file, put that on the CD, then put it on...
November 2, 2006 at 9:50 am
You also have to determine WHICH duplicate to get rid of. There's a difference between duplicate keys, and duplicate records. You may have duplicate customers: ABC Company entered twice, but...
November 1, 2006 at 2:58 pm
How about
select top 1 eventtext, cutomerID
from CustomerDB
order by eventtimestamp desc
November 1, 2006 at 2:42 pm
I've never heard of Bridgehead. We've used Idera's SQLSafe with good results. It compresses our 220 Gig backup down to 40 G, and runs in half the time as native...
November 1, 2006 at 2:27 pm
This is what I do. I backup DatabaseA on ServerA, Remote logon to ServerA, zip it, copy it to ServerB on the other domain
(copy D:\pgmFiles\MSSQL\Backup\DBA.BAK \\RemoteServerB\d$\pgmfiles\MSSQL\BACKUP\ ),
unzip...
November 1, 2006 at 2:04 pm
I actually like having all the backup history intact. I have found it useful as an analysis tool for backup run times and database growth because that info is stored...
November 1, 2006 at 1:32 pm
Just to clarify .... Transactional replication requires a primary key, so that it can find the records to update. Snapshot replication does not require a key because it imports the...
November 1, 2006 at 12:36 pm
Yes, locked tables from snapshot replication is a likely cause. Or running a snapshot for a re-initialized transaction subscription. You can possibly adjust the timing of the various jobs involved. ...
October 26, 2006 at 3:12 pm
Viewing 15 posts - 2,446 through 2,460 (of 2,897 total)