Viewing 15 posts - 3,421 through 3,435 (of 13,882 total)
IMHO, you are on the right path. I'm currently doing exactly what you described. Importing flat, delimited files to a 'staging' table where all fields are defined as VARCHAR(500),...
August 12, 2019 at 10:46 pm
August 12, 2019 at 9:37 pm
Please provide some additional background information:
August 11, 2019 at 7:32 pm
So restoring the ssisb did not create the master key.
No, you have to do a backup/restore of the master key as a separate task.
Is the jobs run using sql agent...
August 9, 2019 at 5:13 pm
I have not heard anything about being able to do this ... but then again, I've never lived anywhere where the standard Gregorian (not English - more like Italian!) calendar...
August 9, 2019 at 2:06 pm
Are you sure about that?
When you create SSISDB, you are presented with this screen:

After you complete this screen, the master key is created for you.
If you still...
August 8, 2019 at 9:09 pm
Run the package in debug mode to determine exactly when the error is generated. Also to be 100% certain that the connection string being assembled is in the right form.
August 8, 2019 at 8:02 pm
As long as it's not marked as 'sensitive'.
Try running this in SSISDB as you'll see for yourself:
SELECT * FROM [internal].[environment_variables]
August 8, 2019 at 7:12 pm
Did you also recreate the Master Key? Without it, you won't get very far, as some of that db is encrypted.
August 8, 2019 at 6:43 pm
Not possible, as far as I know. It's not the first time this question has been asked!
You can modify the default order in which the packages are displayed by modifying...
August 8, 2019 at 4:18 pm
I presume you've considered pushing the data into a staging table first and then pivoting from that?
I would expect it to be faster than the SSIS component, and your column-naming...
August 6, 2019 at 5:53 pm
Have you considered just skipping the first row?
August 5, 2019 at 10:36 pm
Contact the web site admins and ask them, maybe?
Why not script out the entire thing in VB? What does your macro do?
August 4, 2019 at 6:30 pm
Phil
i have 3 tables in the query and I’m doing an inner join on column from each table.
How will the partition help my query?
Kal
As I can't see your tables...
August 4, 2019 at 2:58 pm
As you have not provided any DDL, I had to make a guess.
drop table if exists #x;
create table #x
(
Ident varchar(20)
, Name...
August 4, 2019 at 2:25 pm
Viewing 15 posts - 3,421 through 3,435 (of 13,882 total)