Viewing 15 posts - 4,351 through 4,365 (of 11,678 total)
Just curious: why do you use a script task as a destination? What is your destination?
Maybe there are easier alternatives.
As long as you don't use any blocking transformations (sort, aggregate...
October 24, 2013 at 1:40 pm
BIDS is meant to develop and debug the SSIS packages.
After that, you need to deploy the packages to a server which will run them.
You either deploy them to SQL Server...
October 24, 2013 at 1:37 pm
rocky_498 (10/24/2013)
I am thinking, how I about I rename a file from txt file to FileName.bak, would that be good?
Yes. You can also specify the filename.dat in the flat file...
October 24, 2013 at 12:02 pm
I'm not 100% sure of the syntax.
Try EXECUTE AS 'dbo'
October 24, 2013 at 7:13 am
char, varchar and text are all character strings.
char has a fixed length, while varchar has a varying length.
text is also varying length, but is used for blob storage. It is...
October 24, 2013 at 3:19 am
First I would optimize the query a bit.
select distinct fiscalyear from VW_DIM_FISCAL_CALENDAR_PERIOD where periodid='201302'
I assume this only returns one single value? If yes, I would execute this query first and...
October 24, 2013 at 2:00 am
Use another data type instead of ntext?
Ntext is deprecated by the way.
October 24, 2013 at 1:54 am
It would be useful if you would supply us some sample data for the .dat file.
But as Luis suggested, a flat file destination will probably do the trick.
October 24, 2013 at 1:54 am
It might be useful if you also gave us the query...
(if you run the query and check the actual execution plan, it gives a hint about possible indexes)
October 24, 2013 at 12:55 am
Why would you want to delete a transaction log?
You can still attach a database without a transaction log.
October 24, 2013 at 12:50 am
You really need to give more specific details.
What exactly do you mean with "processed"? Which transformations are you using?
October 24, 2013 at 12:49 am
Can you be a bit more specific?
Is the job scheduled with SQL Server Agent, or with another scheduler?
With which tool did you make the ETL job? If SSIS, did you...
October 24, 2013 at 12:48 am
Since you mention datatable, I assume you're using .NET?
Take a look at MARS (multiple active result sets):
October 23, 2013 at 2:10 pm
SQLSophist (10/23/2013)
"BENCHMARK TESTING. You must obtain Microsoft's prior written...
October 23, 2013 at 12:56 pm
Viewing 15 posts - 4,351 through 4,365 (of 11,678 total)