Viewing 15 posts - 46 through 60 (of 506 total)
I would try Replication for small amounts of data
November 29, 2018 at 2:26 pm
Are you the author of the SSIS package. If you open it in SSDT you can add logging to a table, file or Windows Event Log.
November 29, 2018 at 2:18 pm
November 29, 2018 at 1:03 pm
If you have permissions to create a stored procedure you could use WITH RECOMPILE
November 26, 2018 at 11:38 am
Add an entry to the hosts file to override the dns name on each web and ssis server. Next start changing your environment creating database specific dns entries for your...
November 9, 2018 at 2:44 pm
I think temporal (system versioned) tables are better for a number of reasons if you really want to audit DML changes, but it is a feature of 2016+.
November 9, 2018 at 12:41 pm
Yes, using xp_cmdshell or CLR. You could also create a SQL Agent Job to copy or move a file using OS command (.bat, .ps1) or an SSIS package.
November 7, 2018 at 9:34 am
Try adding the suggested index.
November 2, 2018 at 2:08 pm
Try:DECLARE @pick table (
Member_id int NOT NULL
, ApplicationID varchar(30) NOT NULL
, Product varchar(5) NOT NULL
, EffDate date ...
November 2, 2018 at 2:02 pm
gjoelson,
It would behoove you to read the Microsoft...
November 2, 2018 at 1:28 pm
I think you are over complicating the issue.
I would write a procedure to truncate my staging table, insert into the staging table using select distinct from an OpenRowset from...
November 1, 2018 at 5:45 pm
Select *
FROM Table_A A
JOIN Table _B B
On B.Prod_ID LIKE A.AUTO_Value+'%'
November 1, 2018 at 2:55 pm
Try converting your procedure(s) to an inline table valued function(s).
October 31, 2018 at 5:36 pm
Here is you query written as "insert into select"USE [SSSUTIL]
GO
INSERT INTO [dbo].[CustomerOrders]
([co_num]
,[cust_po]
,[co_line]
)
SELECT 38322, 'B123', 2;
GO
It doesn't matter...
October 31, 2018 at 5:18 pm
Viewing 15 posts - 46 through 60 (of 506 total)