Viewing 15 posts - 3,916 through 3,930 (of 7,187 total)
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
Have an Execute SQL task that gets the value you need from the destination, and then configure your data flow so that it only imports the data you require according...
August 1, 2013 at 8:18 am
I think if you use your favourite search engine to search for "Is there any query to get the size of all indexes in a database", you'd get the answer...
August 1, 2013 at 8:07 am
mmartin1 (7/31/2013)
You wont need to create a config file for the master package, only the child packages.
Whilst that's true in the strictest sense, all but the simplest of packages should...
August 1, 2013 at 1:07 am
I'm not totally clear what you're trying to do, but have you tried CROSS JOINing the two tables?
John
July 30, 2013 at 8:24 am
Viewing 15 posts - 3,916 through 3,930 (of 7,187 total)