Can anyone tell me what is DUnit and what is NUnit Please give me the link for further more detail knowledge for NUnit and for DUnit
divya
Can anyone tell me what is DUnit and what is NUnit Please give me the link for further more detail knowledge for NUnit and for DUnit
divya
I am going to start testing . Can any one tell me how to prepare test cases and test plan
divya
can any one give me the test plan
divya
what is the major and minor differences between SQL2000 and SQL2005
divya
Give me a link from which i can able to access the all SQL commands and concepts
divya
Actually i want to make an application in VB.Net through which we can upload different file formats just as rtf files and more type of files and after uploading we are able to see that files
divya
how can we implement different file formats in VB.Net
divya
I wanted to transfer the data of one database to blank database in SQL With Windows Application divya -- modified at 6:38 Wednesday 5th July, 2006
:(Please Help Me I wanted to make a module of data migration I have to transfer the data from one database to the blank database in SQL Server with VB.Net application divya -- modified at 0:48 Wednesday 5th July, 2006
i want an test plan format if anybody is able to give it then please help me -- modified at 6:41 Wednesday 5th July, 2006
please can you give another suggesionsor link divya -- modified at 6:37 Wednesday 28th June, 2006
Can anyone please help me. It's Urgent I have to make a module for given below In windows application with VB.Net. i have to make a application in that application There on SQL server thereare two databases one is blank and another has some data. But the tables in both the database are same. I want to transfer the data on the same sever in the blank databases through VB.Net coding. Also please give me the code for solving the problem of identity column. and some tables have relation with other tables how the data of thattables should be migrated. divya
i am not able to get the data from this link can you please give me another information divya -- modified at 5:01 Monday 26th June, 2006
i want to make a project of data migration in VB.net. In which i am able to transfer the data from one database tables to a blank database tables with in the same server divya
please help me in completing this module i want to transfer the data from one database to another within the same server. But there is a problem of identity column that exist in the table and it will unable the code to transfer the data within the new database my coding is Dim ObjSrcConnection As System.Data.SqlClient.SqlConnection Dim ObjDesConnection As System.Data.SqlClient.SqlConnection Dim TableListConn As SqlConnection Dim cmd As SqlCommand Dim ObjSrcCommand As SqlCommand Dim ObjDesCommand As SqlCommand Dim da As SqlDataAdapter Dim ds As New DataSet Dim dr As SqlDataReader Dim dt As New DataTable Dim query As String Dim TableName As String Dim TableListConnString As String Dim strConSrc As String Dim strConDest As String Dim string1 As String Dim TableQuery As String Dim strCol As String Dim strType As String Dim sqlQuery As String Dim intJ As Integer Dim intK As Integer Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnGetTable.Click Validation() Table() End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnMigrate.Click TableName = ListTable.Text strConSrc = "server=" & txtSrcServer.Text.Trim & ";user id=" & txtUser.Text.Trim & ";password=" & txtPwd.Text.Trim & ";database=" & txtSrcDb.Text.Trim & "" strConDest = "server=" & txtDesServer.Text.Trim & ";user id=" & txtDesUser.Text.Trim & ";pwd=" & txtDesPwd.Text.Trim & ";database=" & txtDesDb.Text.Trim & "" ObjSrcConnection = New SqlConnection(strConSrc) ObjSrcConnection.Open() ObjDesConnection = New SqlConnection(strConDest) 'con2.ConnectionString = strConDest ObjDesConnection.Open() TableQuery = "select * from " & TableName ObjSrcCommand = New SqlCommand(TableQuery, ObjSrcConnection) dr = ObjSrcCommand.ExecuteReader(CommandBehavior.CloseConnection) dt = dr.GetSchemaTable Dim i As Integer = dt.Rows.Count For intJ = 0 To i - 1 If intJ = 0 Then strCol = dt.Rows(intJ).Item(0).ToString() Else strCol = strCol & "," & dt.Rows(intJ).Item(0).ToString() End If Next If find1() = True Then Exit Sub End If While dr.Read() Try 'sqlQuery = "Ins