Viewing 15 posts - 1,051 through 1,065 (of 13,838 total)
Please provide a CREATE TABLE script for [Cranes].[dbo].[LPKCColmnized], along with your desired results, based on the provided sample data (which would be easier to use if it were provided as...
December 7, 2022 at 2:54 pm
Sounds rather complex. You might be better off putting this into a view or stored procedure.
Are you using global temp tables rather than local ones for a reason? Local temp...
December 4, 2022 at 6:18 pm
I suspect you'll find that this is a fairly thankless task, once you expand your dataset to include other name varieties, but this code works for your sample data. It...
December 4, 2022 at 10:00 am
Can you explain the rules? Looks something like
field1x-field2x-field3x----
where fieldnx = replace(fieldn,'-','')
except your sample data desired output is all over the place
a) the ordering of fields is inconsistent
b) the number of...
December 3, 2022 at 10:19 pm
Hi All- Thanks for pointing that out. i am working on optimizing the execution. Also, for file count/data matching with table destination, I will insert my transactional data first...
November 22, 2022 at 1:02 pm
--Deleted. Once again, the site created two versions of my post
November 20, 2022 at 11:04 am
I made idCategoria only on table categoria, I was gonna make an Alter Table on usuario for creating the foreign key, it means then that I need to create...
November 20, 2022 at 11:03 am
Frederico's comments are spot-on.
If it were me, I would attempt to resolve those warnings (exclamation mark inside yellow triangle). Something is misaligned and whatever it is may be slowing things...
November 18, 2022 at 2:00 pm
Another approach would be to push the initial extract to a raw file, then use that as the source for your flat file and Oracle destinations.
But I don't see...
November 18, 2022 at 8:40 am
Have you isolated the line of code which gives the error?
November 17, 2022 at 1:33 pm
--Edit: removed duplicate reply.
November 17, 2022 at 8:36 am
That seems somewhat inefficient. I suggest that you add a Multicast after your OLEDB source to broadcast the same source data to both destinations in parallel. Here's a link...
November 17, 2022 at 8:35 am
If a column contains a non-numeric character, do you want to treat it is zero? If not, what?
Have you investigated TRY_CAST()?
Remember that the numeric datatype has both a size and...
November 4, 2022 at 2:43 pm
You need to install SSDT and then add the 'SQL Server Integration Projects' extension.
November 4, 2022 at 7:41 am
This looks like a duplicate of https://www.sqlservercentral.com/forums/topic/validate-result
November 3, 2022 at 3:52 pm
Viewing 15 posts - 1,051 through 1,065 (of 13,838 total)