Forum Replies Created

Viewing 15 posts - 241 through 255 (of 458 total)

  • RE: SQL Admin

    When the password is stored it's encrypted.

    In 2000 you could sniff the network for connections using SQL authentication, isolate the conection information, run it through a little C utility (see...

  • RE: Display Datetime Field as blank if isnull?

    The datetime specification requires either a date or a null value. There aren't any "blank" dates. If you're using it for display purposes, you can convert to a...

  • RE: Generate Script without using EM

    Robert... good point. Honestly I've never been a fan of sp_rename, or even ALTER statements. If possible I usually drop/recreate objects. But that's something good to...

  • RE: schedule DTS Package through a job -- please help

    You should be able to just right-click the package in EM and select "Schedule Package". That's how I've always done it. It will create the job for you...

  • RE: Generate Script without using EM

    For programmatic objects (functions, triggers, stored procedures) you can use sp_helptext. It's not as good, but it's pretty good. Change your results to text rather than grid and...

  • RE: Multiprocessing Issue

    Sometimes SQL Server decides that the queries which are being sent are not best split into parallel operations.

    That being said... you probably want to check/post settings for your CPU...

  • RE: Query execution failed for data set

    What's the data type of the column it's being compared against. That provides a value which could be evaluated just as easily as an integer (even though it's a...

  • RE: Query execution failed for data set

    It might be worthwhile to try running profiler on the database server at the time of execution and seeing if you can capture the exact SQL statement that is being...

  • RE: DELETE command locking system

    If it's a third-party application you may not have a lot you can do without invalidating any support you've purchased. I'd contact your vendor about it first.

    Delete operations will...

  • RE: The Effect of NOLOCK on Performance

    I have to chime in as well. If anything I've found overuse of NOLOCK by people who don't really understand why blocking exists.

    Blocking is good.

    It ensures that there are...

  • RE: does getdate() produce only the MOST recent datetime?

    GETDATE() is a system function for returning the system's current date/time. If you want to get the most recent date from a column use MAX()... example:

    SELECT Max(MyDateTimeColumn) FROM MyTable

    SELECT...

  • RE: Misbehaving Primary Key

    Be careful about defragging... it's usually not something you should do on SQL Server's usually (for a bunch of different reasons). If you have a maintenance window when...

  • RE: Misbehaving Primary Key

    Sounds like you might have a serious problem with the underlying disk subsystem. You might be able to fix it by creating an exact copy of the data and...

  • RE: Simple Script to Backup Database

    I'd echo John here. Most people will want to use maintenance plans. Something like this should do it for you, but you'll still have to manage removing old...

  • RE: The 400,000 Member Milestone

    Congratulations! This has been an excellent site for furthering my career by allowing me to ask questions, provide assistance and publish my own work.

Viewing 15 posts - 241 through 255 (of 458 total)