Forum Replies Created

Viewing 15 posts - 46 through 60 (of 62 total)

  • RE: A better way of generating numbers than identity

    I've been a big fan of Identity columns for years. At least since v 6.5. [ I think I used it in version 6.0, but that was years ago. ]

    But,...

  • RE: Best Method to Upgrade NT4/7 --> W2K/2000

    If at all possible, I'd recommend getting a new server for the upgrade. This forces you to really document the key system info such as linked servers, sp_configure, logins,...

  • RE: INSERTS that will STAY after a ROLLBACK is issued

    Thanks, I missed that at first. But with the correct password, I now get error = 0, but after rollback, the table is empty - no non-logged records.

  • RE: DATETIME

    Yes,

    make sure it can store nulls.

    but try below,it puts a null

    into a datetime field.

    create table ##test

    (myddd datetime null, myaaa varchar(10) )

    insert into ##test values ( NULL, '111')

    select *...

  • RE: xp_sendmail with Triggers - arrgh !!!!

    If you use a global temp table,

    the object name will show up in the tempdb exactly as ##AC_Updates. This is unlike a non-global temp table. So you need...

  • RE: Script for column usage

    If the "application" you are refering to includes database triggers, procedures, etc, then you can search the syscomments table.

    Better still, dump all triggers and procedures to a text file, and...

  • RE: Backup Strategies - Third Party Solutions

    If you must use a third-party solution, use the one you are using for all your other system backups. Veritas is good.

    but I agree with Steve, do what ever...

  • RE: track changes in columns

    If you just want to occasionally look at the activity, perhaps Lumient Log explorer will work,

    but if you have a real business/application need, then either use a table trigger,...

  • RE: Is certification really valued

    I remember reading this same tread months ago.

    Good attitude, experience, and knowledge. But if you really want some insight, put your self in the hiring managers position....

  • RE: Restoring the master database

    I've seen this error with SQL7 & NT4.

    And, the solution was just as prescribed by MS (no action required).

    If the master database did not exist at all,

    then in...

  • RE: Alternatives to SQL Backups

    Andy, Keep pushing the limits! Gotta agree with you, there is more to data integrity than just nightly backups. As for solutions, as you have indicated, it all depends....

  • RE: Snapshot Replication

    In this time of zero latency between systems, snapshot does seem a bit outdated.

    But you were right-on with the focus on Business requirements. In many of the large corporations...

  • RE: Push Those Logs Away!

    Thanks for highlighting.

    Worthy of going into a best practices category! I suspect quite a few of us overlook the 24 hour exposure of our backups until the nightly...

  • RE: Schedule restore?

    If you are looking for a way to fully automate both the backup of the primary server, and to then restore the secondary server, you may want to take a...

  • RE: The Case for SQL Logins - Part 1

    Gotta agree with Andy.

    Would love to use WA, but there is always something...that is the issues Andy outlined.

    Actually, cannot think of a situation where we used WA for any web...

Viewing 15 posts - 46 through 60 (of 62 total)