Viewing 15 posts - 4,471 through 4,485 (of 6,216 total)
So it's creating the backup, then fails on the copy? I've never had a problem with log shipping, to start with I'd recommend verifying the permissions one more time, making...
April 16, 2002 at 6:47 pm
Not a C++ guy but wont the hresult give you an error code you can map to an error message?
Andy
April 16, 2002 at 6:01 pm
You're trying to move logins or database users? Logins are just data in sysxlogins, you can BCP, DTS, or in SQL2K there is even a special DTS task. Users get...
April 16, 2002 at 6:00 pm
I use @@error when I think I need to, not after every statement. If it's always going to be one record I use output parameters unless Im returning other recordsets...
April 16, 2002 at 12:19 pm
No idea yet. Couple questions though. Why don't you use a true #temp table rather than creating a permanent table? And if you're just doing a select, why not just...
April 16, 2002 at 6:01 am
They havent that I know of. Could you post the first part of the proc?
Andy
April 15, 2002 at 9:06 pm
I agree that changing things on the subscriber requires extra care, not to be done lightly. Cascading delete seems like a good suggestion for this case. If you enforce the...
April 15, 2002 at 8:28 pm
SP2 is the most current. Each SP supports all the various editions.
Andy
April 15, 2002 at 2:10 pm
If you only have a few I'd recommend going with detach/attach. We've got several articles on the site that discuss it and there is code in one (mine of course!)...
April 15, 2002 at 1:22 pm
It does leave a potential gap. I fall into that category, full every night, then sporadic log backups during the day based on usage. Have to weigh the risk of...
April 15, 2002 at 9:58 am
You could instrument all your procedures so that each logs a line to a table as it executes, spid and proc name (and maybe parameters too).
Andy
April 15, 2002 at 9:56 am
I havent been able to reproduce. Have you tried profiling to see if you can see when it happens and what is doing it?
Andy
April 15, 2002 at 9:53 am
I agree that embedding formatting in the data is a bad idea, just hard to avoid it sometimes. A lot of standard formatting gets thrown away by the browser, you...
April 15, 2002 at 5:51 am
Viewing 15 posts - 4,471 through 4,485 (of 6,216 total)