Viewing 15 posts - 376 through 390 (of 506 total)
Not sure if this helps but I wouldn't connect via Golden Gate. Instead I would connect directly.
August 17, 2017 at 9:29 am
August 16, 2017 at 4:58 pm
Without seeing DDL for the other table I would guess you have to join on ChangType as well.
August 15, 2017 at 4:18 pm
Why not update directly from the view:
UPDATE mt
SET col1 = mv.col1
, col2 = mv.col2
FROM myView mv
JOIN myTable mt ON mv.PKID=mt.PKID;
August 15, 2017 at 4:13 pm
August 15, 2017 at 3:21 pm
No, That's how log shipping works. Maybe what you want is Replication.
August 15, 2017 at 11:29 am
To audit logins in SSMS right click the server and select properties on the security page select the option button to indicate your preference.
August 9, 2017 at 2:29 pm
I was explaining the two different concepts from a T-SQL perspective, transactions and error handling. If I want to add an address for a new vendor only if i subsequently...
August 3, 2017 at 3:25 pm
Transactions:
BEGIN TRAN
COMMIT TRAN /* ROLLBACK */
Error handling:
BEGIN TRY
END TRY
BEGIN CATCH
END CATCH
Used together:
BEGIN TRY
August 1, 2017 at 6:12 pm
August 1, 2017 at 9:34 am
If the criteria for insert is differs from the update criteria you need to do an update then an insert, otherwise you can apply the criteria to the source using a subquery...
July 27, 2017 at 5:57 pm
July 27, 2017 at 12:08 pm
If you add a modifiedby column defaulted to suser() to your temporal table it will capture the login. Your application could override the default where authorization is controlled in the application. Changes outside the...
July 26, 2017 at 9:54 am
Can you post DDL, create table and inserts with sample data?
July 19, 2017 at 1:51 pm
Viewing 15 posts - 376 through 390 (of 506 total)