Viewing 15 posts - 48,736 through 48,750 (of 49,563 total)
That will probably be fine then. Just wanted to be sure that Field2 wasn't a char(500) or something like that.
April 17, 2007 at 1:00 am
What datatypes are Field1 and Field2? If 2 is a wide type then it's better if it isn't in the cluster. The wider a clustered index key, the wider all...
April 17, 2007 at 12:52 am
Run DBCC CheckDB to see if you have any data corruption.
Since you say the users connect as SA, are you sure someone didn't accidentally drop the tables? That's the most...
April 16, 2007 at 2:29 am
I know there was a discussion panel at PASS last year regarding new certifications. I got an invite but didn't attend.
Sounds interesting.
April 10, 2007 at 4:06 am
If you're planning to do cross database queries, make sure you're not using application roles.
Also watch for broken ownership chains
April 9, 2007 at 1:59 am
Wow. This looks really good.
Vry good timing too, seeing as I'm writing 441 on Friday.
April 9, 2007 at 1:37 am
Does the table testwidth have a trigger?
there's another problem with your trigger. The way it's written, you will get some very odd behaviour if multi-row updates are done.
If an update...
April 5, 2007 at 1:04 am
What I'd do is restore the db and the tran logs to another server. Use STOP AT to stop the restore just before the bad transaction started, then copy the...
April 4, 2007 at 11:54 pm
I've never been much for team sports, watchng or participating.
I do enjoy getting out onto the archery range on the weekends and into the dojo some evenings.
April 3, 2007 at 5:21 am
Restore the latest database backup you have and any transaction log backups since then.
You do have a backup?
What errors are you getting and where?
April 3, 2007 at 1:39 am
Checkpoint will only return the 'command completed successfully' There's no more details than that.
You really don't want to run CLEARPROCCACHE & DBCC DROPCLEANBUFFERS on a production server, especially not on...
April 3, 2007 at 1:02 am
Yeah, but it's not going to throw a syntax error. Just won't do as he's expecting, which he probably didn't notice.
April 2, 2007 at 11:45 pm
Yes, but i do think an UPDATE locks the table itself, not just the row being updated.
It depends. If you're updating the entire table, a table lock is very likely...
April 2, 2007 at 11:45 pm
If you don't have a backup then fixing a corruption problem (if you do have one) will be unpleasant. Is this a production database?
Run the following. (replace <dbname> with the...
April 2, 2007 at 6:12 am
Viewing 15 posts - 48,736 through 48,750 (of 49,563 total)