Forum Replies Created

Viewing 15 posts - 4,471 through 4,485 (of 6,216 total)

  • RE: SQL Maintenance Plans

    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...

  • RE: how to get error message when DMO backup fails

    Not a C++ guy but wont the hresult give you an error code you can map to an error message?

    Andy

  • RE: transferring users

    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...

  • RE: Error Checking & Output Params

    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...

  • RE: Stored Procedure and Permissions

    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...

  • RE: The identifier that starts...Maximum length is 128

    They havent that I know of. Could you post the first part of the proc?

    Andy

  • RE: Trans Replication - foreign keys in subscriber

    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...

  • RE: Service Packs

    SP2 is the most current. Each SP supports all the various editions.

    Andy

  • RE: Moving a SQL 2K Database

    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!)...

  • RE: Disaster Recovery Plan

    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...

  • RE: Producing a Stored Procedure Stack Trace

    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

  • RE: Stored Procedure and Permissions

    Could you post the code?

    Andy

  • RE: Automatic re-setting of default databases

    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

  • RE: ASP formating & SQL

    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...

  • RE: SQL70

    Should work. Are you using a named instance for SQL2K? If so you either have to upgrade your clients to MDAC 2.6 or configure an alias using the Client Utility.

    Andy

Viewing 15 posts - 4,471 through 4,485 (of 6,216 total)