Viewing 15 posts - 601 through 615 (of 1,825 total)
As you are using 2008 , why not use a TVP ? (Table Value Parameter)
October 5, 2010 at 2:52 am
For those interested , attached is the script i used at sqlbits.
All pretty self explanatory really, i choose the tally split function to demonstrate
A) You cant trust the...
October 4, 2010 at 12:58 pm
Jack Corbett (10/4/2010)
Roy Ernest (10/4/2010)
October 4, 2010 at 8:49 am
Thanks all , its a whole new scary world into which ive taken the first few pigeon steps.
The cost of sqlbits (3 days worth including 1 day precon)...
October 4, 2010 at 7:46 am
All the session were filmed , so will be on the sqlbits site "at some point".
Started off , other than pre-amble, with a run through of my "Fifo" query from...
October 4, 2010 at 7:21 am
Cool,
WITH (NOEXPAND) is different. Post the plan with that on , IMO its not a hint more of an instruction.
October 4, 2010 at 3:50 am
Please see this article
http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
Note that BigTable, BigTable2 and BigTable3 have been clustered, and benefit from the MERGE join
Ordinarily, you shouldnt really need to provide a merge query hint.
Remove it ,...
October 4, 2010 at 3:31 am
Thats sqlbits all over with now , great conference. My talk seemed to go pretty well, room full of blank faces when i asked "who uses tally tables"....
October 3, 2010 at 2:03 am
Gianluca Sartori (9/30/2010)
This is a statement generated by our BI front-end.
Surprisingly enough, after 4 minutes of...
September 30, 2010 at 3:55 am
unfortunately it is not supported .
You will have to use replace to convert to the 'us-english' standard on using a fullstop.
Vote up this item
http://connect.microsoft.com/SQLServer/feedback/details/126363/escape-character-for-decimal-point
September 29, 2010 at 4:07 am
Please see this page
http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
September 28, 2010 at 1:18 am
So , something like this ?
select 4, sum(case when seqno =3 then 0-amt1 else amt1 end) as amt1,
sum(case when seqno...
September 27, 2010 at 7:07 am
Because you have multiple rows in your source WHICH 1,2 and 3 are you referring to ?
September 27, 2010 at 6:51 am
Before you throw hardware at that issue , make sure the queries are tuned correctly and you are using indexes etc...
September 27, 2010 at 5:46 am
so we don't have fixed number of colums in tbl_A
Then you really are stuffed. 🙂
You will have to generate a dynamic sql statement to do this , if you...
September 27, 2010 at 4:57 am
Viewing 15 posts - 601 through 615 (of 1,825 total)