Viewing 13 posts - 1 through 13 (of 13 total)
Installing OLE DB Driver for SQL Server - OLE DB Driver for SQL Server | Microsoft Docs
https://docs.microsoft.com/en-us/sql/connect/oledb/applications/installing-oledb-driver-for-sql-server?view=sql-server-ver15
June 25, 2021 at 7:11 pm
Hi this site is nice to build and explain RegEx expressions
See your first one. It allows 0-3 spaces from the start of the string and then captures 4 digits.
September 29, 2020 at 7:18 am
Just shoot in the dark - check that you have read permissions on the drive and parent folders...
September 8, 2020 at 5:27 pm
You have to set low (say 10000) Rows per batch and Maximum insert commit size on the OLE DB Destination.
December 19, 2018 at 6:21 am
I've used it for parsing few similar but with own specifics fixed length text files.
There was a header with important note and summary fields that needed checking against...
November 14, 2018 at 8:47 am
This file is on a shared folder. I think this is not a problem of SSIS but some other thing. Probably you have changed Windows version, some different configuration, domain...
September 21, 2018 at 2:10 am
Thank you, but late for me 🙂 I've just lost a day trying to fight that. Why MS are still keeping this broken release online... I've reverted to uploading the...
August 27, 2018 at 3:20 am
Nice exercise but you still have an unique index on EmailAddress so why not instead of the two indexes, make one unique over EmailCheckSum and EmailAddress and miss all the...
September 24, 2015 at 1:54 am
Actually we use log shipping for establishing a reporting database but there is an issue that we need one reporting base updated once a day and another one hourly. The...
May 7, 2008 at 9:18 am
Thanks for your opinion, Sergiy it is valid but I want to clarify the situation. It is web based application with separate database, application server and web server. Indeed I...
June 5, 2007 at 2:17 am
Thanks, Jacobs, Sergiy and others in this nice discussion.
The sollution with triggers was indeed over my head, despite the fact that I have created views with instead of triggers...
June 4, 2007 at 6:04 am
Good article, little bit simple and short but its a refresher anyway
April 24, 2007 at 1:28 am
Better way is:
SELECT *
FROM t1 a
LEFT JOIN t2 b ON a.f1=b.f1
WHERE b.f1 IS NULL
April 24, 2007 at 1:27 am
Viewing 13 posts - 1 through 13 (of 13 total)