Click here to Skip to main content
15,899,026 members
Home / Discussions / Database
   

Database

 
Questiondatagridview in tabcontrol! Pin
jeshra27925-Sep-09 18:31
jeshra27925-Sep-09 18:31 
AnswerRe: datagridview in tabcontrol! Pin
Mycroft Holmes26-Sep-09 15:12
professionalMycroft Holmes26-Sep-09 15:12 
QuestionTake a databse back up with LINQ ? Pin
Mohammad Dayyan25-Sep-09 15:58
Mohammad Dayyan25-Sep-09 15:58 
AnswerRe: Take a databse back up with LINQ ? Pin
Not Active25-Sep-09 17:19
mentorNot Active25-Sep-09 17:19 
GeneralRe: Take a databse back up with LINQ ? Pin
Mohammad Dayyan25-Sep-09 17:26
Mohammad Dayyan25-Sep-09 17:26 
GeneralRe: Take a databse back up with LINQ ? Pin
Not Active26-Sep-09 5:05
mentorNot Active26-Sep-09 5:05 
GeneralRe: Take a databse back up with LINQ ? Pin
Abhishek Sur26-Sep-09 6:48
professionalAbhishek Sur26-Sep-09 6:48 
GeneralRe: Take a databse back up with LINQ ? Pin
Mohammad Dayyan26-Sep-09 7:54
Mohammad Dayyan26-Sep-09 7:54 
Thanks Abhishek Sur.
I'm using LINQ, so I've used the following code :
public static void GetBackUp()
{
    if (!Directory.Exists(StaticVariables.BackUPFolder))
        Directory.CreateDirectory(StaticVariables.BackUPFolder);

    using (RezaRestaurant.SQL.DataClasses1DataContext dbc = new RezaRestaurant.SQL.DataClasses1DataContext())
    {
        dbc.ExecuteCommand(@"BACKUP DATABASE " + dbc.Mapping.DatabaseName + " TO DISK='c:\aaa.bak'");//Exception
    }
} 


and this Exception has occurred :
http://www.codeguru.com/forum/attachment.php?attachmentid=25454&d=1253973435[^]
QuestionConvert scripts for Postgresql to SQL Server Pin
Not Active25-Sep-09 5:32
mentorNot Active25-Sep-09 5:32 
AnswerRe: Convert scripts for Postgresql to SQL Server Pin
Mycroft Holmes26-Sep-09 15:16
professionalMycroft Holmes26-Sep-09 15:16 
GeneralRe: Convert scripts for Postgresql to SQL Server Pin
Not Active26-Sep-09 15:21
mentorNot Active26-Sep-09 15:21 
GeneralRe: Convert scripts for Postgresql to SQL Server Pin
Mycroft Holmes26-Sep-09 15:45
professionalMycroft Holmes26-Sep-09 15:45 
GeneralRe: Convert scripts for Postgresql to SQL Server Pin
Not Active27-Sep-09 3:40
mentorNot Active27-Sep-09 3:40 
AnswerRe: Convert scripts for Postgresql to SQL Server Pin
Tim Carmichael28-Sep-09 6:54
Tim Carmichael28-Sep-09 6:54 
QuestionSynchronization Pin
Shalini_U25-Sep-09 2:04
Shalini_U25-Sep-09 2:04 
QuestionProblem connecting to sql server 2008 database from sql server 2005 express.. Pin
Nada Adel25-Sep-09 1:19
Nada Adel25-Sep-09 1:19 
AnswerRe: Problem connecting to sql server 2008 database from sql server 2005 express.. Pin
Vimalsoft(Pty) Ltd25-Sep-09 1:44
professionalVimalsoft(Pty) Ltd25-Sep-09 1:44 
AnswerRe: Problem connecting to sql server 2008 database from sql server 2005 express.. Pin
Henry Minute25-Sep-09 2:03
Henry Minute25-Sep-09 2:03 
GeneralRe: Problem connecting to sql server 2008 database from sql server 2005 express.. Pin
Nada Adel25-Sep-09 2:25
Nada Adel25-Sep-09 2:25 
GeneralRe: Problem connecting to sql server 2008 database from sql server 2005 express.. Pin
Nada Adel25-Sep-09 2:26
Nada Adel25-Sep-09 2:26 
GeneralRe: Problem connecting to sql server 2008 database from sql server 2005 express.. Pin
michelle sollicito15-Mar-10 4:58
michelle sollicito15-Mar-10 4:58 
GeneralRe: Problem connecting to sql server 2008 database from sql server 2005 express.. Pin
Nada Adel25-Sep-09 3:22
Nada Adel25-Sep-09 3:22 
GeneralRe: Problem connecting to sql server 2008 database from sql server 2005 express.. Pin
Henry Minute25-Sep-09 3:34
Henry Minute25-Sep-09 3:34 
GeneralRe: Problem connecting to sql server 2008 database from sql server 2005 express.. Pin
Nada Adel25-Sep-09 3:47
Nada Adel25-Sep-09 3:47 
GeneralRe: Problem connecting to sql server 2008 database from sql server 2005 express.. Pin
Henry Minute25-Sep-09 4:14
Henry Minute25-Sep-09 4:14 

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.