Viewing 15 posts - 16 through 30 (of 131 total)
How would being trigger from SQL Server help? Understanding this will help determine the best course of action. And do you mean "triggered" in the sense that the process...
September 11, 2020 at 12:00 pm
What is your current Index Rebuild strategy and how frequently and in what % the fragmentation is happening?
August 27, 2020 at 5:51 am
Ohh got it.
I suspect it's not possible. A Flat File Source/Destination is tightly coupled with it's Connection Manager.
However, you can have single package with all 6 files and based on...
August 25, 2020 at 2:08 pm
Try this.
SELECT Original
,Cleaned = REPLACE(Original,';#',', ')
FROM #ReplaceCharacters
;
August 25, 2020 at 1:36 pm
Quick search on SSIS Dynamic Configuration, found these useful.
Using Package Configuration
Using Script Task
August 25, 2020 at 1:23 pm
You can use Configuration file to store your configurations (including flat file path or other connection string) and then use Script Task to apply decision tree. Right click on the...
August 25, 2020 at 1:18 pm
You can use Script task to implement decision tree and to route the files accordingly.
August 25, 2020 at 1:00 pm
queries on ID are typically for a single record, rarely for a small group of ID's mentioned in a list.
nobody is ever interested in records with ID's within a...
August 25, 2020 at 12:55 pm
I'm not sure specifically what the OP meant by "records [presumably meaning rows] for only the columns that have data in them".
Does that mean rows with NO null columns...
August 25, 2020 at 11:31 am
I need a query that will basically generate a select statement that will select all records for only the columns that have data in them .
Does it means column...
August 25, 2020 at 11:26 am
April 11, 2020 at 3:33 pm
Hi Jeff & Steve,
I wrote an article in 2016 on "Work around to scalar functions". I've mentioned 3 workarounds with example.
This was my first article! I hope you would find...
April 11, 2020 at 1:01 pm
Hi Steve,
Recently wrote an article on Stuff() function. I hope you will find it inline with your expectation!
https://sqlservercarpenter.com/2020/02/04/demystifying-stuff-function/
April 11, 2020 at 12:45 pm
You can try SELECT * INTO and then rename the table with sp_rename and also create constraints and indexes.
March 8, 2020 at 4:12 pm
Backup policy can be leveraged more specifically for Point In Time Recovery. It can be also used for DR where the RTO applies but if your Database Size is huge...
January 27, 2020 at 1:38 pm
Viewing 15 posts - 16 through 30 (of 131 total)