Viewing 15 posts - 1 through 15 (of 25 total)
IBM used to look specifically for music majors to hire them as developers. It might be worthwhile to ask them about that policy.
I think it has a bit to do...
May 15, 2008 at 6:13 am
athurgar is right. Create a clustered index, then drop the index to return it to heap status.
------------------------------------
create clustered index CookieMonster
on
March 4, 2005 at 6:57 am
I agree, the varchar(1) is useless, because it has provisions to handle nulls. Besides it doesn't sound like they are too concerned about the SQL server side of things.
If you...
February 24, 2005 at 9:38 am
Yea, I'd agree with all of the above. My thoughts are to create a table / temp table that you can populate with the 25,000 ids, then use a subquery...
February 24, 2005 at 6:54 am
Unlike other RDBS, SQL handle row structure and storage for you. It looks at the datatype makeup that you've requested and then physically stores the rows in an efficient manner....
February 24, 2005 at 6:46 am
Yep. When I was teaching SQL classes I used to tell the class that one thing that irked me was that Enterprise Manager (EM) is not so good at refreshing....
February 24, 2005 at 6:34 am
I agree with Andy. I admire your ingenuity, but there's no need to duplicate MS's efforts when they offer you a tool to do just that. The SQL Profiler can...
February 11, 2005 at 6:47 am
Another option would be to wrap it all up as a subquery where the outer query does the summing. That'd be my first reaction.
However, this would no doubt be less...
February 11, 2005 at 6:39 am
I feel your pain. I tried to do that too at one point. I had an SP create a temp table, then try to populate it in a different SP....
February 11, 2005 at 6:32 am
I'm going to side with everyone here about the "put it in a string" line of approach. However, allow me to add something. If you have a limited number of...
February 10, 2005 at 6:47 am
I'd give a nod to what PhillCart said. However I'd add that for me it is largely a question of performance.
SPs give the best performance of the three objects of...
February 10, 2005 at 6:39 am
If I am not mistaken, there is a script to promote the secondary to the primary, and there is also a script to demote the primary to the secondary. It...
October 26, 2004 at 6:02 am
Believe it or not, there is some evidense that 4 cpus is optimal for SQL. I believe Gartner Group may have some data on this, but the jist is that...
September 3, 2004 at 10:40 am
Remember that you can have up to 249 non-clustered indexes on a table, and 1 clustered.
Assuming that the Clustered is already taken, a separate index on all three of the...
September 3, 2004 at 10:35 am
You may hate this answer, but it will work.
If you are not in a production environment, or can get your data to server that is not crucial, you an stop...
September 1, 2004 at 8:01 am
Viewing 15 posts - 1 through 15 (of 25 total)