Viewing 15 posts - 49,291 through 49,305 (of 49,571 total)
I use SharpReader (http://www.sharpreader.net/index.html) It's a standalone app. It has occational problems with the corperate firewall/proxy, but nothing serious.
December 19, 2005 at 2:58 am
Please post this in the performance forum, rather than here. This forum is just for discussions of the question of the day.
There could be a thousand reasons for slow performance -...
December 18, 2005 at 7:59 am
That sound like a pretty insane table design. What's wrong with storing all the data in one table with a date column?
December 15, 2005 at 4:06 am
From what I read on the MS training site, the only upgrade exam will be to upgrade MCDBA to the new MC IT Professional: Database Administrator, so unless you have...
December 14, 2005 at 12:30 am
Weapon speeds? What the hell are weapon speeds? (coming from someone who started with D&D 3.0)
Pleae, don't let this deteriorate into a 2nd ed vs 3rd ed argument. There's better...
December 13, 2005 at 7:31 am
My main hobbies are Aikido and computer graphics.
After a day at work it's great to step onto the mat and forget everything except the partner you're working with and the...
December 13, 2005 at 6:39 am
The traceflag is mentioned in Books Online under configuring database mirroring
Important: |
---|
Microsoft support policies do not apply to the database mirroring feature in SQL Server 2005.... |
December 12, 2005 at 4:54 am
Turning off the rpc security didn't help. I was getting the error about not been able to enlist in the specified transaction coordinator until I made some changes in the...
December 5, 2005 at 11:34 pm
Could you give us a little bit broader description of tables involved and what fields are unique?
Ideally you shouldn't put more than one value in a field (doing so...
December 5, 2005 at 7:28 am
update order_header set order_header.total_weight = TotalOrder.TotalWeight from (SELECT order_no, sum(weight) AS TotalWeight FROM order_lines GROUP BY order_no) TotalOrder where order_header.order_number= TotalOrder.order_no
Not tested, but should be more-or-less right.
December 5, 2005 at 4:16 am
awww.. not a concatenated list... that will be absolutely horrible to search through...
Search through? How about updating to remove a job. That goes...
December 5, 2005 at 4:13 am
You could check the syslocks and syslockinfo tables in the master database to see if there are any exclusive locks on the table in question. That would tell you if there's...
December 5, 2005 at 3:51 am
You don't. You normalise your database schema so that a single field stores a single value.
In your example use 3 tables. 1 to store details of the user. (id =...
December 5, 2005 at 3:43 am
Varchar - requires 2 bytes + the amount of characters entered per record. The two bytes is used to store the actual length.
If a field is defined VACHAR(5000) and I...
December 2, 2005 at 2:38 am
I'll add http://www.sqlskills.com
And don't forget the SQL Books Online. It's probably the best reference to SQL that you'll find.
December 2, 2005 at 1:07 am
Viewing 15 posts - 49,291 through 49,305 (of 49,571 total)