Viewing 15 posts - 3,931 through 3,945 (of 7,191 total)
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
I know it's not what you're going to want to hear, but every environment, every workload is different. I'm afraid you're going to need to make the change (preferably...
July 29, 2013 at 7:57 am
thunderousity (7/29/2013)
Sorry, it is a function but not an aggregate function
OK, so HAVING isn't going to work. But never mind. What you're looking for is something like this:
BETWEEN...
July 29, 2013 at 7:53 am
Changing the fill factor in the way you suggest is likely to have a positive effect on write performance (because there will be fewer page splits) but a negative effect...
July 29, 2013 at 6:51 am
The parentheses still don't match.
TRUNCATE isn't an aggregate function in T-SQL, as far as I know. What does it do in MySQL? If you could supply some table...
July 29, 2013 at 6:33 am
I don't think that will even parse, since (a) you've used HAVING instead of WHERE and (b) your parentheses don't match. Also, why do you declare @trig and not...
July 29, 2013 at 4:00 am
OK, you seem to have changed your collation, so here's what to do in general:
(1) Go on to Wikipedia and search for "code page xxxx" where xxxx is the three...
July 26, 2013 at 4:59 am
If removing the space before the Z doesn't do it, please post table DDL in the form of CREATE TABLE statements, sample data in the form of INSERT statements, and...
July 25, 2013 at 8:49 am
If you want to fragment your indexes, you'll need to make lots of modifications - inserts, updates and deletes. Try to choose operations that change data in index key...
July 25, 2013 at 8:45 am
If you've got an environment variable package configuration, I think you need to restart SQL Server after you add or change it.
John
July 25, 2013 at 8:43 am
This indeed returns 0:
SELECT CAST('' AS int)
It's just the way it works. I suppose when the DBMS or the standards were being written, somebody decided that '' would convert...
July 25, 2013 at 8:00 am
Viewing 15 posts - 3,931 through 3,945 (of 7,191 total)