Viewing 15 posts - 3,916 through 3,930 (of 7,191 total)
August 8, 2013 at 8:38 am
How can you have a count on each row? It'll either be 1 or 0 (equal or not equal). Please will you provide some sample data and expected...
August 8, 2013 at 5:19 am
Join the two tables on number=number and do t1.sec - t2.sec for the second column of your result set. Make sure you know how you will handle the cases...
August 8, 2013 at 4:42 am
james.ingamells (8/8/2013)
My SQL knowledge is basic to average and need some help in counting rows in a join where 2 dates match:
SELECT MT.[Organisation ]
,MT.[Assignment Number ]
,MT.[First Name ]
,MT.[Last Name ]
,MT.[Position...
August 8, 2013 at 4:38 am
Martin
Let me see if I can be of a little bit more help. I'm disappointed, but not altogether surprised, that the code you posted is generated by a Microsoft...
August 8, 2013 at 2:09 am
Martin
You're declaring table variables (@tbNames etc), which are materialised in tempdb, and comparing data in them with data in your database, which has a different collation from tempdb. Hence...
August 7, 2013 at 8:29 am
P Jones (8/7/2013)
August 7, 2013 at 6:55 am
Steveyam90 (8/6/2013)
Very simple question
What is your question?
John
August 6, 2013 at 3:19 am
Martin
Yes, open SSMS, connect to your server, click on New Query, paste the query into the ensuing window and press F5.
I've just re-read your original post. Please will you...
August 6, 2013 at 1:03 am
martin 7826 (8/5/2013)
I'm always happy to follow the easy route so I'll try to change the collation of...
August 5, 2013 at 8:37 am
The way you've written it, it will return everything that has 'UK' in. If you lose the first '%' then you'll get everything that starts with 'UK'. Some...
August 5, 2013 at 7:50 am
There's a last_execution_time column in dm_exec_query_stats.
John
August 2, 2013 at 8:55 am
arthur.teter (8/2/2013)
I never noticed before today that the corresponding definition fields in the information_schema views are limited to the first 4000 characters of the script.
Same with syscomments, which you should...
August 2, 2013 at 8:47 am
You need to use Parameter Mapping or result set, not both. If you use Result Set, the results of your query are saved to a variable of type Object,...
August 2, 2013 at 1:24 am
Use an output parameter or result set in your Execute SQL task to get the value into a variable, and then user that variable to configure your data flow.
John
August 1, 2013 at 8:31 am
Viewing 15 posts - 3,916 through 3,930 (of 7,191 total)