- Community Home
- >
- Servers and Operating Systems
- >
- HPE ProLiant
- >
- Server Management - Systems Insight Manager
- >
- Backing up MSDE installation
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2004 02:05 AM
04-23-2004 02:05 AM
Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2004 02:08 AM
04-23-2004 02:08 AM
SolutionJust issue the following command:
BACKUP DATABASE xxx TO DISK = 'yyy\xxx.bak'
xxx = database name
yyy = disk path
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2004 02:39 AM
04-23-2004 02:39 AM
Re: Backing up MSDE installation
I found the 'mybackup.sql' about half-way through the "HP Systems Insight Manager Help Guide" (502 pages!) located at:
http://h18000.www1.hp.com/products/servers/management/hpsim/infolibrary.html
The reason I hoped someone else had a copy is that I had previously spent about half a day getting it to work in my environment. (I'm definitely NOT a Transact SQL guru)
:)
PS. I have attached a text copy of the .sql procedure for your perusal.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2004 02:47 AM
04-23-2004 02:47 AM
Re: Backing up MSDE installation
The difference between what I gave you and what the script provided by HP shows is the following:
My code will execute a one time backup. The script provided by HP actually creates a job that can be executed at scheduled intervals utilizing the SQL Server Agent. Keep in mind that sans a few minor differences, MSDE is SQL Server.
The script provided by HP also provides a step for transaction log backups. This is a much larger issue than what I will go into here but lends to what type of recovery capabilities you need for the database. If you need to be able to recovery to a specific point in time (lets say you can only stand to lose 30 minutes of data is the server blows up) then you should be doing transaction log backups at least every 30 minutes. Your DB should also be in full recovery model. If you do not need point in time recoverability and going back to your last DB backup is fine, then you can skip the TLOG backups (make sure to put the DB in simple recovery mode so the log does not balloon) and routinely backup the database as per your needs.
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2004 04:50 AM
04-23-2004 04:50 AM
Re: Backing up MSDE installation
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2004 06:33 AM
04-23-2004 06:33 AM
Re: Backing up MSDE installation
Paul