I have created a database (dbTest) and a table (tblFactSaleZ) in my VB (VS2010) project.
I would like to copy a table on our corporate SQL Server to my VB project database.
Here's what I've tried, and the results I've received.
Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
'This string works for our corporate SQL SERVER
Dim con As SqlConnection = New SqlConnection("Server = ***-*-*******;" & "Database = ***;" & "Trusted_Connection=TRUE")
'This is the string I can't get to work with my "internal" VB.NET database I created.
Dim con As SqlConnection = New SqlConnection("Server = ovp-l-r8mxe5m\SQLEXPRESS;" & "Database = dbTest;" & "Trusted_Connection=TRUE")
con.Open()
Dim cmdA As SqlCommand = New SqlCommand("SELECT * INTO tblFactSaleZ " & _
"FROM [OVP-S-BPCDEVD].[CMP].[dbo].[tblFactSales] " & _
"WHERE DATATYPE='FORECAST' AND TIMEID='20120700'", con )
cmdA.ExecuteNonQuery()
MessageBox.Show("Records Moved Successfully.", "Move Complete", _
MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1)
End Sub
When I try to connect with the SQLEXPRESS connection, the error reads: Cannot open database dbTest requested by the login. The login failed. Login failed for user ****