Viewing 15 posts - 46 through 60 (of 72 total)
The is an undocumented engineering script you can use to change the collation on an entire server, which includes all databases, all fields and all indexes. It's also very quick....
March 1, 2017 at 3:29 am
Maybe you could use an SQL Agent Job to run the SSIS package which itself is started using sp_start_job
February 27, 2017 at 8:45 am
Use the for each loop to populate a table with the full filename of each file. Have two additional fields of Prefix and FileDateTime, derive the values for these from...
February 22, 2017 at 4:56 am
If you use the Project Deployment Model you can set up parameters in your project, either at the project level or package level. (You can even tailor these to your...
February 22, 2017 at 2:33 am
You could simplify your SQL, for example:
declare @start datetime;
set @start = '20170101 09:00:00';
declare @end datetime;
set @end = '20170101 09:15:28';
select convert(varchar(8), @end - @start,...
February 22, 2017 at 2:24 am
Create a string variable and call it currentFile.
In the For Each Loop editor go to Variable Mappings, in the Variable field select User::currentFile and in the Index field enter...
February 6, 2017 at 4:37 am
January 30, 2017 at 9:55 am
January 30, 2017 at 9:35 am
January 30, 2017 at 6:51 am
I have a DTS package which was built in SQL 2000 by a team working...
January 30, 2017 at 5:09 am
So I have been doing some further reading and it would seem that XS:string will always map to wstr with a 4000 characters limit, you cannot map it to Unicode...
January 27, 2017 at 9:47 am
Use an Execute SQL Task to run the SQL to return the connection string records. Map the result to an object variable in SSIS. Then use a Foreach loop using...
November 8, 2016 at 8:38 am
In your data flow task use substring in a Derived Column Transform
November 8, 2016 at 8:31 am
Viewing 15 posts - 46 through 60 (of 72 total)