i have a database (ms 2005 server). How to get bak or mdf file BUT; it is running windows 2008 server also over 600 stuffs is using this DB. if i get .bak file or mdf. i must close connection. i dislike it. is there any useful methods or method to get BAK or MDF? this method may be a EXE or ms sql property or tool?
How to get Bak file or MDF without close connection sql server?
780 Views Asked by Penguen At
1
There are 1 best solutions below
Related Questions in SQL
- Can MVC.NET prevent SQL-injection at razor or controller level?
- SQL server not returning all rows
- When dealing with databases, does adding a different table when we can use a simple hash a good thing?
- Creating a parametrized field name for a SELECT clause
- Combine two rows based on common ID
- Column displays each count
- Slick query for one to optional one (zero or one) relationship
- Aggregate and count in PostgreSQL
- MAX and GROUP BY - SQL
- SQL statement for a tricky 2 table query
- How to create nested selects with sql?
- Pull and push data from and into sql databases using Excel VBA without pasting the data in Excel sheets
- Best Practice for adding columns to a Table in Oracle database
- SQL FIFO STACK using two tables
- SQL Query - Order by String (which contains number and chars)
Related Questions in WINDOWS
- Get Maximum Log Size
- Debugging Windows Services while starting
- Possible consequences of duplicate ProgId for different classes
- How to chain BCryptEncrypt and BCryptDecrypt calls using AES in GCM mode?
- mingw-64 conflicting declarations when cross-compiling
- I run an EXE program from a Windows Service but I can't see form C#?
- Why is PowerShell "not recognized" when installing Chocolatey?
- How to check if Windows device is phone or tablet/pc?
- How to add directories to Cygwin gcc default search path
- Can't install anything with pip2 on Windows 7 due to UnicodeDecodeError
- Active directory and linux nslcd binding without extending the AD schema
- How To Prevent Over Scrolling in Scroll Viewer Windows Phone 8.1
- Unicode error from pip install
- Where is the 'EnablePinning' property in the ribbon framework's recent items?
- How can I implement the same models and data across ASP.NET and Windows Apps
Related Questions in SQL-SERVER-2005
- sqlsrv_query doesn't return false on faulty T-SQL query
- PHP error connecting to MS SQL 2005 using CodeIgniter
- SQL Insert Date Mystery on 2012 from 2005
- SQL Server 2000 query conversion
- How to compare two date in SQL Server 2005?
- Different SELECT's for an INSERT INTO
- Selecting from a column with Ampersand(&)
- Get Parent and grand parents of a particular child
- UPDATE after INSERT for potentially multiple rows - not working
- Is there a way to re-write this SQL query using a WITH clause or any other CTE that might be even better?
- Get Active Directory Name From SQL User ID
- vb.net auto update datagridview when database change
- sql query to join and concat values
- UNION ALL on 2 tables select with Cases
- LEFT JOIN on multiple columns with unwanted duplicates
Related Questions in WINDOWS-SERVER-2008
- How to sort text qualified CSV file that doesn't fit in memory?
- Unauthorized Access Exception on IIS7 virtual directory with proper permissions
- Error while deploying MVC 5 application on Windows Server 2008
- Running ASP site with SQL Server 6.5 on Windows Server 2008 R2
- php-cgi.exe memory usage reaches server maximum despite almost zero traffic
- Shared folder access with login & password impersonation - W2K8 IIS7
- Windows user rights administrator group
- Publishing to Azure Virtual Machine with Web Deploy
- Is there a way to make the security settings in PDFSharp work in an environment that is restricting to FIPS compliant algorithms?
- ADO.Net change "Persist Security Info" default back to True
- Locale independent Windows Performance Counters on multiple server versions
- .net frame work 3.5 not showing in feature list window server 2008 sp2.
- How to pass a parameter to PowerShell Get-NetTCPConnection cmdlet?
- scripting control userpassword2
- SQL Server error: the paging file is too small for this operation
Related Questions in MDF
- How i can delete database from local server without database files
- Cannot attach file as database in multiple projects
- SQL Server Database not working due to server version issue on testing machine
- Is it possible to merge ndf files and mdf file into one single mdf file?
- Connection String on Visual Studio 2013 with SQL Server 2014
- Cannot attach mdf file as database
- Connect VB.net to SQL Server Express mdf
- incorrect syntax error near ,
- Azure WebJobs cannot connect to mdf database
- Winforms application : How to save .mdf to Windows %USERPROFILE% folder?
- Fill Datagrid with Sql Query using Date " 'Operand type clash: date is incompatible with int''
- Given a SQL Express database base file (.MDF) how can I wipe/clear/reset the schema and/or data?
- mdf file and connection error
- How to get Bak file or MDF without close connection sql server?
- Long Database name when attaching MDF file
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You certainly do not need to drop users to make a backup. Just right click your database in SQL Server Management Studio -> Tasks -> Back Up
Even better, setup a regular backup schedule.
Here's further instructions on backing up SQL Server 2005.