Hi,
I've got 2 databases on one server; let’s call them db A and B. Database A is about 11 GB, database B is very small (155mb). Database B has some views and procs which are constantly accessing and updating data in database A.
The interesting thing is, the log for database B quickly grows to huge sizes, I think it grew to about 12 GB in under a week. Database A doesn't grow that big that fast.
What could be causing my log to grow that much? Is there something going on when you select data from another database, that would cause my log to grow like that?
I know when you do something similar against a database on a different server, the data is all moved to the calling database before it's joined and selected ... I can see this causing log growth, could the same thing be happening on the same server?
SQL2000 SP4 STD edition
Full Recovery model
Thanks in advance, John
BTW-I realize that changing my recovery model to Simple may help, but I'd like to know why this is happening first.