Viewing 7 posts - 1 through 8 (of 8 total)
Also here: http://www.c-sharpcorner.com/forums/msg-537-level-16-state-3-procedure-recovertruncateddataproc-lin. Looking at your posting history, you have 106 posts over nine years. Normally I'd expect someone working on SQL Server over that time to be able to...
April 10, 2021 at 4:42 pm
You could try converting to a datetime2 data type - on my machine that produces the leading zero:
declare @dt varchar(30) = '2012-06-03 04:11:49:16'
select...
October 14, 2019 at 4:28 pm
The problem is that you haven't given your first table an alias:
IF OBJECT_ID('IsFirstRemit_D') IS NOT NULL
TRUNCATE TABLE IsFirstRemit_D;
SELECT MIN(a.ClaimDetailID) as ClaimDetailID
,a.FacilityPrefix
,a.AccountNumber
,a.RemitDate
--INTO IsFirstRemit
FROM Adena_EDI_16.dbo.Remit835_ClaimDetail_D a
JOIN (SELECT FacilityPrefix, AccountNumber, MIN(RemitDate) as MinRemitDate...
September 5, 2019 at 7:42 am
Try the Attunity drivers: https://docs.microsoft.com/en-us/sql/integration-services/data-flow/oracle-connector?view=sql-server-2017
Since installing and using these the performance of our SSIS job has improved dramatically
September 4, 2019 at 5:07 am
I'd suggest you ask the DBA to set up a new database on the server (granting db_owner permissions to the Active Directory group you are using to log on), plus...
January 4, 2019 at 4:04 am
Just a thought - if the data you are receiving has a SAON in it the data is being sourced from either a local government property gazetteer or the national...
January 26, 2018 at 8:36 am
I remember seeing the comment "What has she done now?". Unfortunately, apart from the discourtesy, the author had not checked how his code rendered - it appeared in an email...
March 13, 2015 at 4:43 am
Viewing 7 posts - 1 through 8 (of 8 total)