What is the best way to pass values between two databases
Here its my scenario I have a database with a table with 40 gigas I need to pass that table to another database who is in the same server I try the last Saturday do it the next thing from a query console I make the next query
INSERT INTO databaseA..tb_be_gatewaylog , Desc (log_applicationNumber,log_serviceNumber)
SELECT log_applicationNumber,log_serviceNumber, Desc
From databaseB..tb_be_gatewaylog
But after one hour and a half its send me the next error
Msg 9002, Level 17, State 4 The transaction log for database ' databaseA ' is full. To find out why space in the log cannot be reused, see the log_reuse_wait_desc column in sys.databases
I stop trying to pass de data that day; anyone knows how to pass big data into databases in the same server? Don’t mater is isn’t the fastest way
A DTS could be the best way?
Any help will be appreciated, thanks any way
Here its my scenario I have a database with a table with 40 gigas I need to pass that table to another database who is in the same server I try the last Saturday do it the next thing from a query console I make the next query
INSERT INTO databaseA..tb_be_gatewaylog , Desc (log_applicationNumber,log_serviceNumber)
SELECT log_applicationNumber,log_serviceNumber, Desc
From databaseB..tb_be_gatewaylog
But after one hour and a half its send me the next error
Msg 9002, Level 17, State 4 The transaction log for database ' databaseA ' is full. To find out why space in the log cannot be reused, see the log_reuse_wait_desc column in sys.databases
I stop trying to pass de data that day; anyone knows how to pass big data into databases in the same server? Don’t mater is isn’t the fastest way
A DTS could be the best way?
Any help will be appreciated, thanks any way