Viewing 15 posts - 3,346 through 3,360 (of 4,745 total)
San, you are correct, the alter database..modify file is the best option for moving database files as it is simple, quick and maintains the database owner and dbid.
please see my...
September 25, 2009 at 7:43 am
San-847017 (9/25/2009)
If database is not production. You can also use backup and restore with move option.
True. But that will leave you with 2 databases unnecessarily. The queston was to to...
September 25, 2009 at 7:07 am
luckysql.kinda (9/24/2009)
george sibbald-364359, what is the meaning of "tablock hint used"? Do you mean we should not use tablock hint?-lk
other way round, if you want th bulk insert minimally logged...
September 24, 2009 at 9:01 am
let us know how it goes.
george
September 23, 2009 at 10:14 am
I believe because the SQLagent kicks off the job BUT the backup command itself is run by the database engine therefore the SQL service account needs access.
Only a bounce of...
September 23, 2009 at 9:52 am
yes, they can be changed independently, BUT, when a database backup command is run it is run by the database engine NOT SQLAgent, I think this maybe why you get...
September 23, 2009 at 8:37 am
this phrase in your original post:
The SQL Server service was previously a local system account but has now been changed to the same domain admin account as the SQL agent...
September 23, 2009 at 8:18 am
log files will only get smaller if a shrinkdatabase or shrinkfile command is issued.
September 23, 2009 at 7:30 am
Any of these indexes clustered? I see the word 'heap' in your result set which suggests not.
September 23, 2009 at 7:15 am
just setting recovery mode to bulk logged is not enough to guarantee minimal logging, a number of conditions have to be met:
bcp and bulk insert:
table not replicated
tablock hint used
no clustered...
September 23, 2009 at 7:03 am
is this SQL2000 or 2005.
In 2005 it is standard behaviour to clear down the whole proc cache for a restore, which is kinda annoying. Can you restore your logs less...
September 23, 2009 at 6:47 am
if the db is in full or bulk logged mode are you backing up the transaction log?
a reindex might cause your log to match the size of the data
September 23, 2009 at 6:02 am
Danb7183 (9/23/2009)
I've attempted your suggestion but it still returning the same:
Msg 3201, Level 16, State 1, Procedure spTestingBackup, Line 11
Cannot open backup device '\\ServerName\DB_Backups\DBName\DBNameFull_20090923_1233.BAK'. Operating system error 53(error not...
September 23, 2009 at 5:58 am
try making the destination a share and backing up to the share name.
September 23, 2009 at 3:59 am
Its not unusual for a reindex to produce log = to the size of the database. If you have a lot of fragmentation a lot of data pages are going...
September 22, 2009 at 10:22 am
Viewing 15 posts - 3,346 through 3,360 (of 4,745 total)