Viewing 15 posts - 241 through 255 (of 458 total)
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...
February 2, 2007 at 4:51 pm
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...
February 2, 2007 at 8:58 am
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...
January 31, 2007 at 11:59 am
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...
January 31, 2007 at 11:46 am
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...
January 31, 2007 at 11:39 am
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...
January 29, 2007 at 4:56 pm
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...
January 29, 2007 at 3:12 pm
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...
January 29, 2007 at 2:29 pm
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...
January 29, 2007 at 10:12 am
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...
January 24, 2007 at 10:23 am
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...
January 23, 2007 at 4:18 pm
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...
January 23, 2007 at 11:22 am
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...
January 23, 2007 at 10:42 am
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...
January 23, 2007 at 9:29 am
Congratulations! This has been an excellent site for furthering my career by allowing me to ask questions, provide assistance and publish my own work.
January 23, 2007 at 8:41 am
Viewing 15 posts - 241 through 255 (of 458 total)