Click here to Skip to main content
15,867,835 members
Home / Discussions / C#
   

C#

 
AnswerRe: WHY GIRLS DONT LIKE TO MARRY SOFTWARE ENGINEERS ????? Pin
Shameel21-Sep-12 1:48
professionalShameel21-Sep-12 1:48 
GeneralRe: WHY GIRLS DONT LIKE TO MARRY SOFTWARE ENGINEERS ????? Pin
pasztorpisti22-Sep-12 12:20
pasztorpisti22-Sep-12 12:20 
AnswerRe: Why c# do not support Multiple Inheritance Pin
Dave Doknjas21-Sep-12 6:02
Dave Doknjas21-Sep-12 6:02 
AnswerRe: Why c# do not support Multiple Inheritance Pin
jschell21-Sep-12 10:51
jschell21-Sep-12 10:51 
AnswerRe: Why c# do not support Multiple Inheritance Pin
pasztorpisti22-Sep-12 12:34
pasztorpisti22-Sep-12 12:34 
AnswerRe: Why c# do not support Multiple Inheritance Pin
Bernhard Hiller23-Sep-12 21:09
Bernhard Hiller23-Sep-12 21:09 
GeneralRe: Why c# do not support Multiple Inheritance Pin
Himanshu Yadav11-Oct-12 0:10
Himanshu Yadav11-Oct-12 0:10 
QuestionHow to have multiple DB back up activities running simultenously Pin
Sajeevsadan20-Sep-12 7:44
Sajeevsadan20-Sep-12 7:44 
Question and Scenario: We have N number of users using this utility to back up multiple DB's(consider 5 selected by a user) from a server.From the above code this will only execute serialy one after the other for each user. Instead of this , selected 5 db back up operation should process parallel and the control should come out accepting the request from the next user
Could anybody suggest the best approach that will provide the best perfomance Cry | :((
We have code written need to back up and restore database using LiteSpeed extended procedures
=====================================
<pre lang="c#">public bool ArchieveDB(string serverName, string databaseName)
        {
            try
            {
                string fileName = ATTACH_FILE_PATH + databaseName + ".BAK";
                SqlParameter[] dbParameters = new SqlParameter[]
                {
                    new SqlParameter {ParameterName =SERVER_NAME, Value = serverName },
                    new SqlParameter {ParameterName =DATABASE_NAME, Value = databaseName },
                    new SqlParameter {ParameterName =FILE_NAME, Value = fileName },
                    new SqlParameter {ParameterName = INIT_VALUE, Value =  1}
                };
                ExecuteNonQuery(BACKUP_SP_NAME, dbParameters);                return true;
            }
            catch (SqlException ex)
            {
                return false;
            }
        }

AnswerRe: How to have multiple DB back up activities running simultenously Pin
Mycroft Holmes20-Sep-12 20:09
professionalMycroft Holmes20-Sep-12 20:09 
AnswerRe: How to have multiple DB back up activities running simultenously Pin
Shameel21-Sep-12 1:52
professionalShameel21-Sep-12 1:52 
QuestionAjax Tab Events And Gridview help Pin
HimalR820-Sep-12 0:57
HimalR820-Sep-12 0:57 
AnswerRe: Ajax Tab Events And Gridview help Pin
Pete O'Hanlon20-Sep-12 1:46
subeditorPete O'Hanlon20-Sep-12 1:46 
GeneralRe: Ajax Tab Events And Gridview help Pin
HimalR820-Sep-12 1:55
HimalR820-Sep-12 1:55 
GeneralRe: Ajax Tab Events And Gridview help Pin
Pete O'Hanlon20-Sep-12 2:10
subeditorPete O'Hanlon20-Sep-12 2:10 
Questionconnection of mssql 2008 to cloud in windows form application Pin
KUNWAR99920-Sep-12 0:07
KUNWAR99920-Sep-12 0:07 
AnswerRe: connection of mssql 2008 to cloud in windows form application Pin
Ingo20-Sep-12 1:38
Ingo20-Sep-12 1:38 
GeneralRe: connection of mssql 2008 to cloud in windows form application Pin
KUNWAR99920-Sep-12 5:30
KUNWAR99920-Sep-12 5:30 
GeneralRe: connection of mssql 2008 to cloud in windows form application Pin
Ingo20-Sep-12 5:51
Ingo20-Sep-12 5:51 
GeneralRe: connection of mssql 2008 to cloud in windows form application Pin
KUNWAR99920-Sep-12 6:07
KUNWAR99920-Sep-12 6:07 
AnswerRe: connection of mssql 2008 to cloud in windows form application Pin
Ingo20-Sep-12 6:15
Ingo20-Sep-12 6:15 
GeneralRe: connection of mssql 2008 to cloud in windows form application Pin
Pete O'Hanlon20-Sep-12 6:06
subeditorPete O'Hanlon20-Sep-12 6:06 
GeneralRe: connection of mssql 2008 to cloud in windows form application Pin
KUNWAR99921-Sep-12 3:29
KUNWAR99921-Sep-12 3:29 
QuestionDirectShow.Net - Add text to video capture Pin
Testi_x6419-Sep-12 23:54
Testi_x6419-Sep-12 23:54 
Questioninstallaer with Shedule task Pin
Member 795211919-Sep-12 19:24
Member 795211919-Sep-12 19:24 
AnswerRe: installaer with Shedule task Pin
Ingo19-Sep-12 21:03
Ingo19-Sep-12 21:03 

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.