Viewing 15 posts - 256 through 270 (of 4,820 total)
If you can identify the client by either the data in the file, or by the folder from which it came, yes, this can be done. If you expect someone...
March 6, 2019 at 11:52 am
e4d4 - Wednesday, March 6, 2019 8:35 AM
Looks like I've learned something new today. Thanks!
March 6, 2019 at 9:38 am
The basic problem here is that you were trying to use a column that was not participating in the INSERT. Can't do that without using MERGE, and that does appear...
March 6, 2019 at 9:17 am
Here we go:IF OBJECT_ID(N'tempdb..#StatusHistory', N'U') IS NOT NULL
BEGIN;
DROP TABLE #StatusHistory;
END;
CREATE TABLE #StatusHistory (
Status_History_Id int NOT NULL PRIMARY KEY CLUSTERED,
[Status] tinyint NOT NULL,
March 6, 2019 at 9:05 am
I took your original posted code and integrated Jeffrey Williams ideas into it:/********************************************
EXEC [cusVA_SEHMedicaidReconciliationReport]
@DATETYPE = 'DOS'
, @STARTDATE = N'01/01/2014'
,...
March 6, 2019 at 7:57 am
Replication in SQL Server just doesn't provide that kind of functionality. It's entirely a one-way operation. However, have you looked into high availability features?
March 6, 2019 at 7:10 am
March 6, 2019 at 7:07 am
Dear all,
This issue occurs repeatedly with a table with columns that are somewhat...
March 6, 2019 at 7:03 am
You haven't really provided much in the way of detail. All we know is that you use an SSIS package, with a container, and that there are 7 SQL tasks. ...
March 1, 2019 at 6:44 am
March 1, 2019 at 6:32 am
February 20, 2019 at 1:56 pm
drew.allen - Wednesday, February 20, 2019 7:43 AMMulti-select parameters are passed to stored procedures as a comma-delimited list.Drew
Don't you need to use...
February 20, 2019 at 1:37 pm
I guess I look at this differently. Why would you ever expect such constructs NOT to affect the order? NULL values would clearly cause the ordering to change, and whether...
February 20, 2019 at 1:23 pm
Sue_H - Monday, February 18, 2019 2:27 PMThey'd save a lot of money on labor costs 🙂
Either that or it's IRAQ...
February 18, 2019 at 2:36 pm
Viewing 15 posts - 256 through 270 (of 4,820 total)