Viewing 15 posts - 1 through 15 (of 33 total)
Dear all,
thank you so much for the explaining and the syntax.
Now i have options to choose..
January 25, 2017 at 8:27 pm
Dear all,
I made the Stored procedure to search Years, Months, days by looping
@EXP_DATE --> Expired_Date
SELECT @@DIFF = DATEDIFF(DAY, GETDATE(),@EXP_DATE)
SELECT @@DIFF1 = DATEDIFF(DAY,@EXP_DATE,GETDATE())
January 19, 2017 at 1:45 am
thank you Jhon and Kingston for the link
January 16, 2017 at 6:57 pm
January 16, 2017 at 2:36 am
whenriksen (11/30/2016)
November 30, 2016 at 7:56 pm
azdeji (11/28/2016)
Iām attempting use the output statement to populate the audit table for scd1 columns that are overwritten from a merge into a secondary history table ā
That shows the...
November 28, 2016 at 7:57 pm
info 58414 (11/23/2016)
Hi,How can i get the information from all dtsx packages
which driver is used (maybe with dll-file and path)
Thanks
Regards
Nicole
š
hii,,
Try using dtexec Utility (SSIS Tool)
November 25, 2016 at 1:38 am
WhiteLotus (11/23/2016)
I have to compare all tables in 2 databases . these 2 databases have the same table structure but different content
If the content in table A...
November 24, 2016 at 12:07 am
DesNorton (11/18/2016)
Deny Christian (11/18/2016)
So, it will take only 1 data if there are 3 data at the Source ?
The MERGE statement will take all of the data that you provide...
November 18, 2016 at 2:16 am
DesNorton (11/18/2016)
To prove this, let's create a simple data set that will cause the PK error
CREATE TABLE #M_SUPPLIER...
November 18, 2016 at 1:24 am
DesNorton (11/17/2016)
Please supply table structures for M_SUPPLIER and TEMP_SUPPLIER, as well as sample data that will consistantly cause the error that you are getting.
--M_SUPPLIER
Column_nameTypeComputedLengthPrecScaleNullableTrimTrailingBlanksFixedLenNullInSourceCollation
SUPPLIER_CODE(PK) varcharno6 ...
November 17, 2016 at 11:58 pm
DesNorton (11/17/2016)
MERGE M_SUPPLIER A --- TARGETUSING TEMP_SUPPLIER B --- SOURCE DUMMY
ON A.SUPPLIER_CODE = B.SUPPLIER_CODE
-- You are matching on A.SUPPLIER_CODE = B.SUPPLIER_CODE
-- Then you say WHEN A.SUPPLIER_CODE <> B.SUPPLIER_CODE
WHEN MATCHED --AND...
November 17, 2016 at 11:12 pm
John Mitchell-245523 (11/17/2016)
November 17, 2016 at 6:42 pm
John Mitchell-245523 (11/17/2016)
November 17, 2016 at 3:01 am
John Mitchell-245523 (11/17/2016)
Your update statement doesn't make sense, either. You're updating to set m_id in the outer table to be...
November 17, 2016 at 2:30 am
Viewing 15 posts - 1 through 15 (of 33 total)