Viewing 15 posts - 76 through 90 (of 174 total)
drnorbert (6/16/2013)
BACKUP DATABASE ISMDATA TO DISK='C:\ISMBACKUP\db.bak'Is this means that the log is backup together with each execution or is a different command for the transaction log every 15 min?
I don't...
June 16, 2013 at 6:22 am
OK. good luck
June 16, 2013 at 5:44 am
I have already given you everything to handle a 15 minute transaction log backup. Just specify WITH NOINIT and see how it goes.
June 16, 2013 at 5:29 am
Append will work in transaction log too using the WITH NOINIT. The default is also append. You must be looking at something different. Easy way to see it:
create table...
June 16, 2013 at 4:48 am
2008 & 2008r2 will work. You will have to test it on 2003/sbs. if it doesn't work then try downloading that file mentioned in the URL.
June 16, 2013 at 4:27 am
I have no idea how the "points" works on this website. It seems to just be "posts" unlike on the Oracle forums where you receive points for correct/helpful answers o:
If...
June 16, 2013 at 3:26 am
drnorbert (6/15/2013)
This is a great solution.This command are execute in a query?
It can be executed in a query to test it. First you would need to create the folders on...
June 15, 2013 at 7:48 pm
I don't think a remote backup is really required. How many disks does your server have? Assuming there's one spare for backups you could just do this to maximise reliability:
backup...
June 15, 2013 at 6:31 pm
OK so there is 3-4 databases for you to do transaction log backups of. They are changing/adding 100 records, is that per day? per hour? per week? How important is...
June 15, 2013 at 4:04 pm
Saggy (6/15/2013)
1. Save in notepad sqlcmd sript as .bat file
Yes.
Saggy (6/15/2013)
June 15, 2013 at 1:30 pm
drnorbert (6/15/2013)
Yes is SQL 2008 (Enterprise Edition).What about Shrink Database, index, the database gets larger from 300MB to 600MB.
The database will get larger as you include more data. Unless the...
June 15, 2013 at 12:47 pm
BACKUP DATABASE your_database_name TO DISK='D:\db_15_06_2013.bak'
Run that in the query window & you will have a backup for the shortest time fix.
Then YouTube "sql server maintenance plans" and in 5-10...
June 15, 2013 at 11:36 am
Something like this will work:
A .bat file containing the following:
sqlcmd -S SERVERNAME\INSTANCENAME -E -d master -e -b -i d:\mssql\backup\backup_tlogs.sql -o d:\mssql\backup\backup_tlogs.log
Then in backup_tlogs.sql you would have:
DECLARE @name VARCHAR(50) -- database...
June 15, 2013 at 11:25 am
Why not use SQL Server Agent? XE?
June 15, 2013 at 7:16 am
You can see this example: http://snipplr.com/view/52490/%5B/url%5D
June 15, 2013 at 7:14 am
Viewing 15 posts - 76 through 90 (of 174 total)