Viewing 15 posts - 5,626 through 5,640 (of 7,168 total)
kingrudedog (7/6/2011)
I love this forum...The level of awesomeness is rediculous...
Indeed it is 😀
GilaMonster (7/6/2011)
The usage stats can't be explicitly cleared
Boooo 😛 I thought you could clear those but you're right...
July 6, 2011 at 1:18 pm
Revenant (7/6/2011)
opc.three (7/6/2011)
...even with the nested loops introduced by the CTE I just posted I am not sure I would choose the cursor method you posted over them
Yes, RBAR...
July 6, 2011 at 1:11 pm
kingrudedog (7/6/2011)
July 6, 2011 at 1:08 pm
Revenant (7/6/2011)
July 6, 2011 at 1:01 pm
I think he was asking why you don't refactor your tables. Your comment is where I was headed. Here is what I came up with:
IF EXISTS ( SELECT *
...
July 6, 2011 at 12:52 pm
Cool. Thanks for posting back. It's nice to hear the direction after the questions are answered and a decision is made 🙂
July 6, 2011 at 12:27 pm
There is no security table in your sample script :ermm:
No matter though. Here is your insert reformatted:
-- insert statement
INSERT INTO VimasProFast1
SELECT...
July 6, 2011 at 12:23 pm
Here is the fastest known method:
http://www.sqlservercentral.com/articles/T-SQL/68467/%5B/url%5D
July 6, 2011 at 12:08 pm
I have used all three you mentioned and IMHO TFS is the best fit for you mainly because of the development environment integration it offers into BIDS and the testing...
July 6, 2011 at 11:46 am
You could continue to use SSIS but change your source to a query like this:
SELECT *,
NULL AS LastColumn
FROM ...
July 6, 2011 at 11:36 am
Which jdbc driver are you using? And can you post the code for the temporary stored proc?
(@P0 bigint, @P1 datetime)EXEC Test_db1.dbo.sp_CreateDynamic @P0, @P1
</curious>
July 6, 2011 at 11:32 am
It sounds like you want to know the row in the database that corresponds to the first line in the file, and the second, and so on. To do that...
July 6, 2011 at 11:15 am
greg.bull (7/6/2011)
Not really, it wouldn't be a problem when plotting as a visualisation.
I only asked because if you are not interested in pulling a complete set of deciles from SQL...
July 6, 2011 at 10:58 am
Uggh...I thought about this a few different ways, maybe normalizing your Xref table a bit more, maybe running different queries based on inputs that would only join to a subset...
July 6, 2011 at 10:43 am
Viewing 15 posts - 5,626 through 5,640 (of 7,168 total)