Viewing 15 posts - 121 through 135 (of 288 total)
I'm not sure if that is possible. But, even if it is possible, that sounds like a really bad idea.
Have you investigated using a "listener" app that reads unprocessed rows...
May 21, 2010 at 4:17 pm
Jeffrey Williams-493691 (5/19/2010)
However, I would recommend that you get rid of the secondary data file. You can perrform a SHRINKFILE on that with the EMPTYFILE option. Once that...
May 19, 2010 at 2:32 pm
What's the question?
The Modelers we use?
The One we think is best?
The One that supports the most platforms?
Ones we haven't used?
May 13, 2010 at 10:39 am
I wouldn't be too sure that the NOLOCK was not the cause of an issue. It is a fallacy that NOLOCK only gets bad data when there are multiple users...
May 11, 2010 at 12:30 pm
cfradenburg (5/11/2010)
RowID ID
1 ...
May 11, 2010 at 11:15 am
I don't we have enough information to help you much, but if you are going to store the information so that you ahve a history, I suspect that you'll need...
May 10, 2010 at 4:51 pm
Jeff Moden (5/10/2010)
Lamprey13 (5/10/2010)
Jeff Moden (5/8/2010)
Fifth... [font="Arial Black"]do a SELECT/INTO to build the temp table [/font]instead of building it ahead of time. It will be much faster because it...
May 10, 2010 at 3:24 pm
Jeff Moden (5/8/2010)
<snip>Fifth... do a SELECT/INTO to build the temp table instead of building it ahead of time. It will be much faster because it won't log each row.
<snip>
Is...
May 10, 2010 at 1:41 pm
Basically SSIS, but you can downgrade using the Copy Database Wizard http://msdn.microsoft.com/en-us/library/ms188664.aspx
May 6, 2010 at 4:41 pm
Just for fun I took the two queries from above and added antoher method using the ROW_NUMBER() fucntion along with sample data incase the OP wants to compare them.
DECLARE @SNACK...
April 30, 2010 at 1:45 pm
I assume that the create script you posted is in error because of a cut-n-paste error?
Just wanted to check that the table is actually being created. 🙂
April 30, 2010 at 1:25 pm
For fun, here is another way:SELECT T.[Date], T.Value, T.Item, TT.Total
FROM @test-2 AS T
CROSS APPLY (SELECT SUM(Value) AS Total FROM @test-2 WHERE Item = T.Item AND [Date] <= T.[Date]) AS TT
WHERE...
April 7, 2010 at 3:59 pm
Is it correct to say that the DiagBridgeKey is also in the FactClaims table?
My assumption is that in order to maintain the correct cardinality DiagBridgeKey is the PK on...
April 7, 2010 at 3:13 pm
pnmm (4/7/2010)
Thanks for quick answers.About ITVF suggestion, it will not work, because my TVF has logic inside.
Is there a limit on the kind of query you an put in...
April 7, 2010 at 2:28 pm
No one is really going to be able to answer that for you. People's entire careers are based on how to design and load data warehouses. Sadly, the industry, in...
April 6, 2010 at 1:27 pm
Viewing 15 posts - 121 through 135 (of 288 total)