Viewing 15 posts - 5,866 through 5,880 (of 7,168 total)
I think I am the same page as you now, sorry, I missed your *I* inference in your OP.
The intertubes did not turn much up for me, as I suspect...
June 25, 2011 at 12:52 pm
The optimization issue is what keeps me away from table variables. I had heard about the recompile option but it did not sway my view on things given the expense...
June 25, 2011 at 12:33 pm
One point for clarification:
...upgrade advisor during the migration time...
The advisor is most useful when run well before your migration effort begins. It inspects your current system and provides information on...
June 25, 2011 at 12:27 pm
My initial thoughts went towards explicit transactions and transaction isolation levels. What is the real-world scenario behind the question? And are you equally worried about locking on both tables, or...
June 25, 2011 at 12:22 pm
srferson-957148 (6/25/2011)
opc.three (6/24/2011)
I would like to help. Do you mind providing some DDL and DML to build the test environment consistent with your post?Here is what I mean:
http://www.sqlservercentral.com/articles/Best+Practices/61537/%5B/url%5D
create table #test
(Part...
June 25, 2011 at 8:20 am
@dji I sense a little frustration in your posts 🙂 It seems like you're "in it" and will be "in it" for a little while longer so I wanted to...
June 25, 2011 at 1:07 am
New temp tables will use the default collation of tempdb unless otherwise specified.
Here are a few options (there may be others) for you in terms of creating your temp tables...
June 25, 2011 at 12:18 am
I can vouch for GnuPG being solid. It's free unless you require the patented Idea algorithm in which case you'll need to buy a license for that.
June 25, 2011 at 12:05 am
Wow, it must be spring, err summer, cleaning time again. I think I have seen a thread like this 3 or 4 times this week. Another good suggestion from another...
June 24, 2011 at 11:55 pm
An env var to point to a package config is a good start but it goes downhill from there. This is probably a .NET developer trying to treat the Script...
June 24, 2011 at 11:50 pm
I think what you want is to use a CTE that makes use of the ROW_NUMBER() function PARTITION BY configurationname and ORDER BY enddate DESC, and then you will select...
June 24, 2011 at 10:31 pm
I would like to help. Do you mind providing some DDL and DML to build the test environment consistent with your post?
Here is what I mean:
http://www.sqlservercentral.com/articles/Best+Practices/61537/%5B/url%5D
June 24, 2011 at 10:19 pm
I ran the test script after adding the TABLOCK hint to the target # table on INSERT and the end result was similar: for heaps SELECT...INTO is still faster than...
June 24, 2011 at 5:50 pm
The computed column IS a workaround. You are screwed by poor database design. The proper way out of the mess is to redesign the schema so columns that naturally need...
June 24, 2011 at 5:00 pm
This is what I mean about adding a computed column and having it participate in an index:
ALTER TABLE OrderHeader ADD OrderHeader_ID2 AS (CAST(OrderHeader_ID AS VARCHAR(100))) ;
CREATE INDEX [ix_OrderHeader.OrderHeader_ID2] ON OrderHeader...
June 24, 2011 at 4:38 pm
Viewing 15 posts - 5,866 through 5,880 (of 7,168 total)