Viewing 15 posts - 8,281 through 8,295 (of 14,953 total)
Just keep in mind that data compression (which is essentially what you're looking at there) only goes so far, while multiple queries can scale infinitely to as many tables and...
September 30, 2009 at 12:11 pm
Think of it as "you hit them first after they kicked you".
September 30, 2009 at 12:10 pm
I prefer not to use mixed mode, because that means the sa login is active. Find that one password, and you own the server. Windows authentication, you have...
September 30, 2009 at 12:03 pm
In my experience, OpenRowset is the easiest way to do that.
What issues are you having with that?
September 30, 2009 at 11:54 am
I always use the From version. Allows for more complex logic, since In only allows comparison of one column at a time unless you get into correlation complexities.
I alias...
September 30, 2009 at 11:52 am
First, datetime isn't quite that accurate. You might need to make the milliseconds 997 to get what you're looking for.
Second, depending on how the data gets into the field,...
September 30, 2009 at 11:37 am
Any reason to not use more than one OpenQuery and just join them together?
September 30, 2009 at 11:02 am
Those seem like legitimate questions to me.
September 30, 2009 at 9:37 am
If the sequence matters, put it in the trigger code, and don't count on firing sequence.
Most of the time, it's better to have the code in the insert proc instead...
September 30, 2009 at 9:36 am
The only way you'll get an index on every column is to vertically partition the table (move some of the columns to separate tables), or build a lot of indexed...
September 30, 2009 at 9:33 am
I don't know. I see far too many statistical analyses of various groups of people, and I just don't see the use of them in the vast majority of...
September 30, 2009 at 7:22 am
Yes, there are a lot of ways to accomplish this. I still think the simplest is to use "not" for the test.
September 30, 2009 at 7:06 am
It sounds like what you're looking for is parsing the data, then pivoting it.
The data from this article will teach you how to parse it http://www.sqlservercentral.com/articles/T-SQL/62867/.
That will give you one...
September 29, 2009 at 3:04 pm
The first thing I'd do with this would be to switch to ANSI style joins, where you explicitly list the join type and the join math in the From clause,...
September 29, 2009 at 3:01 pm
Viewing 15 posts - 8,281 through 8,295 (of 14,953 total)