Viewing 15 posts - 48,556 through 48,570 (of 49,571 total)
Down here (South Africa) an average-good salary for a DBA with 4 years experience is around R360k/year. At current exchange rates, that's about $50k/year.
We've also got major shortage of skilled...
July 21, 2007 at 6:58 am
Thanks
Guess I'm too used to forums where when writing a reply, the entire thread is visible.
July 21, 2007 at 6:57 am
Sweet. I like how it is now.
Maybe now Notification Services: Administration won't get posts on everything under the sun... *g*
July 21, 2007 at 6:49 am
3604 directs output to the client, 3605 directs it into the error log.
I don't think 3605 is necessary. 1204 on its own writes deadlock info into the error log. We...
July 20, 2007 at 2:59 am
I had to go hunting for the SQL forums... Took me a while to find them.
Sicne this is a SQL Server site, how...
July 20, 2007 at 12:35 am
Which table is the blocking on? You'll be able to see that from the wait_resource if you query sys.dm_exec_requests or from the resource_associated_entity_id in sys.dm_tran_locks.
Based on what you said, and...
July 19, 2007 at 11:54 pm
Sounds like a typical parameter sniffing problem.
Let's say the first time SQL comes to execute this, the value for @Branch is 100 and @contact is 0. SQL optimised the proc...
July 19, 2007 at 12:35 am
NoLock only applies on selects. SQL will take locks for updates/inserts/deletes.
Check the indexes on the tables, make sure they're not fragmented.
Could you post the proc here with an indication of...
July 18, 2007 at 11:49 pm
Sure on that?
If you have multiple files in the primary filegroup, then the writes are proportional to the free space in the file, nothing to do with CPU affinity to...
July 18, 2007 at 12:50 am
Could you post some sample data and your desired output please.
July 18, 2007 at 12:28 am
The 1 file per CPU does apply for user database.
Why? What's the logical reason behind it?
For TempDB, at least on SQL 2000 it was due to the round-robin algorithm...
July 17, 2007 at 11:58 pm
I'm getting exactly the same error messages from my Itanium server. No power utils are running on th box. It's single-core, none-HT.
Any ideas as to the cause, or should I...
July 17, 2007 at 12:50 am
There's a recomendation from MS to have 1 file per CPU for TempDB.
I've never heard that suggestion applied to user databases and I don't think it's a good idea.
July 17, 2007 at 12:42 am
Hmmm. will think a bit more. Do you have some sample data please (as insert statements if possible)?
The reason I suggested Full Text is that it does automatically what you're...
July 16, 2007 at 6:46 am
Try adding the following after the group by, before the order by. The filter there will depend on the no on keywords. No promices, I'm guessing here.
HAVING COUNT(distinct w1.word) >...
July 16, 2007 at 6:14 am
Viewing 15 posts - 48,556 through 48,570 (of 49,571 total)