Viewing 15 posts - 106 through 120 (of 272 total)
Your result is ordered by k. It really doesn't matter what in order you load the table, you order it on the select out, or use a clustered index.
June 21, 2010 at 10:16 pm
I have'nt had to think about bitwise operations since the mid '80s so my brain is mushy now. But the modulo gave it away.
Thanks for the question.
June 21, 2010 at 8:48 am
This book I find to be very thourough. It is quite detailed. It is a great reference if you're setting up or administering replication and has...
June 20, 2010 at 6:13 am
July is Lasagna Awareness Month ?? OMG!!! I've been celebrating it all wrong.
😀
June 18, 2010 at 12:14 pm
Great question. Confirmed what I already knew. Point collected.
June 18, 2010 at 12:09 pm
Use a query.
INSERT INTO TABLE_Z
SELECT col1, col2, col_x
WHERE col_y BETWEEN DATEDIFF(dd,GETDATE(),-7) AND GETDATE()
June 17, 2010 at 11:05 am
It seems you are resistant to junction tables, so try it without them in a dev environment and see if it works for you.
There is no law that says you...
June 17, 2010 at 10:59 am
Is there a Human Resources dept? I so, you should schedule a discussion with a HR rep to discuss some concerns and to ask questions about review policy.
June 17, 2010 at 10:47 am
June 17, 2010 at 8:47 am
A single column will always be faster than multiple columns. It's quantity of data down a fixed pipe.
June 17, 2010 at 8:36 am
I think too many (myself included) are looking for trick questions. Nice simple question today. Thank you for that.
June 17, 2010 at 8:24 am
Investors often require all employees to sign NDAs. Your company may replace anyone refusing to sign with someone who will. 😉
June 15, 2010 at 8:54 am
Even though I received 3 points in this question, it leaves a bad taste in my mount. I still had to guess (correctly) that the intent of the author...
June 14, 2010 at 2:15 pm
It is considered poor practice to use "select *" for anything but simple, temporary queries.
The good new is that it's easy to make SQL write your queries for you. ...
June 9, 2010 at 1:53 pm
Viewing 15 posts - 106 through 120 (of 272 total)