Viewing 15 posts - 331 through 345 (of 506 total)
An AG allows failing over multiple database at the same time for example if the are interdependencies.
December 13, 2017 at 5:58 pm
Use SSIS. It will handle inserts in batches behind the scenes without having to roll your own solution. You can do it manually using ORDER BY with OFFSET.
December 7, 2017 at 9:30 am
December 7, 2017 at 8:50 am
I don't think SSIS is pausing just the refresh to the GUI is asynchronous. SSIS also commits periodically maybe that has something to do with it.
December 5, 2017 at 3:45 pm
December 5, 2017 at 2:07 pm
INSERT INTO Emptbl (
mp_Name
, Emp_Phone
, ...
December 1, 2017 at 10:54 am
I have tested some commands and its not working...
November 29, 2017 at 10:05 am
I would use SSIS to load the data into your staging table. SSIS will handle chunking out the data so you don't have to move 1 million row in one...
November 28, 2017 at 12:37 pm
What do you mean by against server b? A stored procedure can reference objects on a linked server. A stored procedure can be executed on a linked server if RPC...
November 28, 2017 at 9:54 am
Please post create table statement and inserts with sample data.
November 27, 2017 at 5:27 pm
Use the COLUMNS_UPDATED() Function in your trigger and log that as well if you like.
Alternately a more elegant and simpler solution would be to duplicate SQL Server 2016's...
November 7, 2017 at 11:42 am
The port in a TNSNAMES.ORA listing is the port the Oracle Listener is listening on.
November 2, 2017 at 6:23 pm
Mainstream Support for SQL Server 2008 R2 ended in 2014.
November 2, 2017 at 6:11 pm
Viewing 15 posts - 331 through 345 (of 506 total)