Viewing 15 posts - 46 through 60 (of 68 total)
No, you cannot shrink the tlog on a mirrored database without breaking the mirror first.
Given that your log is 50Gb vs data at 2Gb you're going to need...
October 20, 2008 at 4:49 am
If your log file is growing from 2Gb to 27Gb every day then there is a reason for it.
Having to shrink the log every day just means SQL has to...
October 17, 2008 at 9:46 am
CrazyMan (10/15/2008)
I am having a table with 5 columns, with 2 big int columns, 1 int and 1...
October 16, 2008 at 7:43 am
rbarryyoung (10/13/2008)
Umm, I'm going to assume that the smiley face means that you are kidding about using cursors here.
Correct - I have enough problems with performance when some genius decides...
October 14, 2008 at 10:27 am
Hmmm a good point. And best of all, I've just counted the rows in the table.
You. Don't. Want. To. Know.
I could buy a...
October 13, 2008 at 10:35 am
SELECT Col1, Col2, Col3, ColD4 FROM TABLE1
WHERE Col1 LIKE
CASE
...
October 13, 2008 at 9:38 am
The way I've done it in the past is to use vbs scripts (scheduled task run) to copy the latest backup files from prod then a SQL job to restore...
October 9, 2008 at 10:25 am
If there are connections open on the secondary database then the logshipping will fail. The logshipping jobs need exclusive access while they're restoring the transaction log.
Let's say your backup...
October 9, 2008 at 4:27 am
Firewall issue:
Is your SQL server on a different part of the network (for security reasons) and thus having port 1433 blocked?
DNS issue:
Has some numpty in the network team typo'ed the...
October 8, 2008 at 8:27 am
Maint plans (such as full db backup) should be on the primary server.
I normally make a copy of all these plans on the secondary server but leave them disabled. ...
October 8, 2008 at 5:15 am
How big is the database? There's always cut'n'paste 😀 from the results window. Or saving to a text file and importing the results 😉
I've found the Export Data...
October 1, 2008 at 10:30 am
Are you sure you don't work for the same place I do?
The best solution I've found is to allow them to do whatever they want with the dev systems. ...
October 1, 2008 at 4:34 am
Thanks for all your suggestions.
I just wanted to make sure I hadn't missed a simple method for doing what seems to be basic task. Since the live db must...
September 29, 2008 at 10:23 am
Yes I do need data as well as structure. Since the db is 20Gb I was rather hoping to avoid the backup to file, copy file (to another server),...
September 29, 2008 at 9:50 am
You send me money and I'll send an envelope containing lots of space. 😀
Seriously, some more details would be helpful.
September 26, 2008 at 8:42 am
Viewing 15 posts - 46 through 60 (of 68 total)