Click here to Skip to main content
15,897,704 members
Home / Discussions / Database
   

Database

 
AnswerRe: easy_odbc leak memory Pin
Ashfield3-Sep-09 1:30
Ashfield3-Sep-09 1:30 
GeneralRe: easy_odbc leak memory Pin
Ruscoff3-Sep-09 2:47
Ruscoff3-Sep-09 2:47 
GeneralRe: easy_odbc leak memory Pin
Ashfield3-Sep-09 3:36
Ashfield3-Sep-09 3:36 
QuestionScript Check Pin
Mustafa Ismail Mustafa2-Sep-09 9:46
Mustafa Ismail Mustafa2-Sep-09 9:46 
AnswerRe: Script Check Pin
Mycroft Holmes2-Sep-09 18:06
professionalMycroft Holmes2-Sep-09 18:06 
GeneralRe: Script Check Pin
Mustafa Ismail Mustafa2-Sep-09 20:47
Mustafa Ismail Mustafa2-Sep-09 20:47 
Questionupdate issue Pin
Tauseef A2-Sep-09 2:30
Tauseef A2-Sep-09 2:30 
AnswerRe: update issue Pin
Blue_Boy2-Sep-09 2:38
Blue_Boy2-Sep-09 2:38 
AnswerRe: update issue Pin
David Mujica2-Sep-09 3:32
David Mujica2-Sep-09 3:32 
AnswerRe: update issue Pin
Abhishek Sur2-Sep-09 9:43
professionalAbhishek Sur2-Sep-09 9:43 
AnswerRe: update issue Pin
Niladri_Biswas2-Sep-09 17:18
Niladri_Biswas2-Sep-09 17:18 
Questione-blood bank Pin
noo.dyab2-Sep-09 1:07
noo.dyab2-Sep-09 1:07 
AnswerRe: e-blood bank Pin
Ashfield2-Sep-09 1:28
Ashfield2-Sep-09 1:28 
GeneralRe: e-blood bank Pin
Garth J Lancaster2-Sep-09 1:41
professionalGarth J Lancaster2-Sep-09 1:41 
AnswerRe: e-blood bank [modified] Pin
annathor2-Sep-09 1:42
annathor2-Sep-09 1:42 
GeneralRe: e-blood bank Pin
samawat8-Dec-09 4:49
samawat8-Dec-09 4:49 
GeneralRe: e-blood bank Pin
samawat8-Dec-09 4:51
samawat8-Dec-09 4:51 
AnswerRe: e-blood bank Pin
AlexeiXX33-Sep-09 9:47
AlexeiXX33-Sep-09 9:47 
QuestionExporting a database Pin
MarkB7771-Sep-09 23:09
MarkB7771-Sep-09 23:09 
AnswerRe: Exporting a database Pin
SeMartens2-Sep-09 0:14
SeMartens2-Sep-09 0:14 
AnswerRe: Exporting a database Pin
Jerry Hammond2-Sep-09 2:34
Jerry Hammond2-Sep-09 2:34 
AnswerRe: Exporting a database Pin
Abhishek Sur2-Sep-09 9:53
professionalAbhishek Sur2-Sep-09 9:53 
Just run backup...

Run this script in your office computer :

BACKUP DATABASE [db] TO  DISK = N'c:\Backup\db.bak' WITH NOFORMAT, NOINIT,  NAME = N'db-Full Database Backup', SKIP, NOREWIND, NOUNLOAD,  STATS = 10
GO


It will produce an output db.bak in your local C:\backup folder.
[Please replace db with your database name on the script.]

Now in home run this :
RESTORE DATABASE [db] FROM  DISK = N'C:\Backup\DB.bak' WITH  FILE = 1,  NOUNLOAD,  REPLACE,  STATS = 10
GO


Here db is the name of the database it will create when it restores, place the db.bak file from your office to your home computer in C:\backup or whatever you like to and finally run it..

Cool | :cool: Cool | :cool:

Abhishek Sur

My Latest Articles
Create CLR objects in SQL Server 2005
C# Uncommon Keywords
Read/Write Excel using OleDB

Don't forget to click "Good Answer" if you like to.

AnswerRe: Exporting a database Pin
εїзεїзεїз2-Sep-09 11:43
εїзεїзεїз2-Sep-09 11:43 
GeneralRe: Exporting a database Pin
Abhishek Sur2-Sep-09 11:59
professionalAbhishek Sur2-Sep-09 11:59 
GeneralRe: Exporting a database Pin
εїзεїзεїз2-Sep-09 13:42
εїзεїзεїз2-Sep-09 13:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.