Forum Replies Created

Viewing 15 posts - 661 through 675 (of 993 total)

  • RE: equivalent of DateSerial() in T-SQL? (SQL2000)

    3ms is the smallest unit of time a datetime field can capture. So by subtracting 3ms from midnight, you get the latest possible time that could be captured on the...

  • RE: Reformat datetime as: mm/dd/yyyy

    look in books online at the set dateformat command.  But you should always try to get dates in a non-ambiguous format, such as YYYY-MM-DD (or better yet, as a native...

  • RE: Rentention Part 5 - Finding Your Job

    I agree - superb article.  All good points - must remember them if I am ever in such a situation in the future  ...

  • RE: DataBase Restore

    hahaha

    Sorry, meant to say it was like the central part of your SQL Server installation.  It itself is essentially another database on SQL,...

  • RE: Getting the appName?

    Is it true that no matter what app they are running on '98 you get that same app name string?

    OR, do you just get a rubbish app name string running...

  • RE: transaction logs too late to apply

    Thanks for posting the solution - nice to know how these problems are solved.  Didn't occur to me that you were using remote proc execution - even then I wouldn't...

  • RE: How to save an object into a field?

    The textcopy utility is a program you run from the command line (cmd.exe) - kind of like copy, dir, etc...  As such, it is not useful for continuous use in...

  • RE: Optimization job for Maintenance plan ''''db name'''' failed

    We had the same problem and i determined it was probably due to our indexed views or computed columns.  We did the workaround suggested by Rudy, but I do like...

  • RE: transaction logs too late to apply

    David, you have the same problem, although manually created by yourself.  The FULL database backups WILL interfere with your customised log shipping for the same reason that the SQL native...

  • RE: DataBase Restore

    Master is the "heart" of your SQL installation   It's hard enough to restore a backup of it - I can only imagine the...

  • RE: Peformance problems with updates affecting indexed views

    You are using a group by to do a record count - perhaps it is joining back to itself to do the grouping?  Could you add an index on these...

  • RE: How to save an object into a field?

    There is also a command line utility you can used called textcopy for your bulk imports if it is a one-off job.

  • RE: Copying a database setup

    Backup & restore is usually the easiest way... Or detach/attach their DB files.

  • RE: Getting the appName?

    The appname is an optional parameter on your database connection string.  If you are using a custom-written app, you need to pass this as part of your ODBC or OLEDB...

  • RE: Best way to audit table updates

    There have been a couple of articles in the past month about this issue and how to use triggers to store the data, management of the history tables, etc.  Search...

Viewing 15 posts - 661 through 675 (of 993 total)