Viewing 15 posts - 5,791 through 5,805 (of 14,953 total)
Steve Jones - SSC Editor (12/7/2010)
Brandie Tarvin (12/7/2010)
December 7, 2010 at 9:51 am
Ann Cao (12/6/2010)
It will work if I right click managment studio and choose...
December 7, 2010 at 6:35 am
I prefer a bigger job with some custom logging over splitting it up. It makes it more obvious that it's all part of the same sequence. More "ACID".
December 7, 2010 at 6:30 am
The queries aren't nested in the order you would expect.
SELECT DISTINCT pilot_name
FROM PilotSkills AS PS1
WHERE NOT EXISTS
(SELECT *
...
December 7, 2010 at 6:25 am
CirquedeSQLeil (12/6/2010)
Alvin Ramard (12/6/2010)
December 7, 2010 at 6:14 am
Given the limited physical power on the server, and the sheer size of the table, I'd be kind of surprised if it were significantly fast.
SQL table sizes are limited by...
December 6, 2010 at 2:52 pm
It depends on how you intend to encrypt sensitive data that you keep, if you intend to keep any at all.
If, for example, you will never store credit card numbers,...
December 6, 2010 at 12:39 pm
Connection pooling isn't handled by the database engine, it's handled by a higher level of code.
The upper limit on connections, if you set it to 0, is 32,767, per http://msdn.microsoft.com/en-us/library/ms143432.aspx.
December 6, 2010 at 11:11 am
Are the columns varchar or char data types?
December 6, 2010 at 11:03 am
When you install SQL Server, there's an option for adding the current login (the one you're using to install it) as an admin. If you don't select that, sa...
December 6, 2010 at 11:01 am
Steve Jones - SSC Editor (12/6/2010)
.... It's actually impossible to get a real person at google.
Real people are overrated. I've had plenty of tech support people fail the Turing...
December 6, 2010 at 9:23 am
That's generally just a matter of having Excel pick the right symbol-set, by selecting a font that supports the characters you want.
December 6, 2010 at 6:23 am
There's a whole article on it here:
http://www.sqlservercentral.com/articles/Auditing/63247/
http://www.sqlservercentral.com/articles/Auditing/63248/
I think the articles are awesome. But I wrote them, so I may not be completely objective about that. 🙂
If you read the...
December 3, 2010 at 2:06 pm
Bing or Google the name of it. You'll find data that way.
December 3, 2010 at 2:03 pm
select OrderNumber
from @test
where PartNumber = 'GGT-122'
intersect
select OrderNumber
from @test
where PartNumber = 'GGT-123';
That will give you the ones where they've ordered both.
It easily expands to include a variety of complex combinations, using...
December 3, 2010 at 12:37 pm
Viewing 15 posts - 5,791 through 5,805 (of 14,953 total)