Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 ****

share|improve this question
I think your biggest hint is "The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections." Have you been able to connect to the DB remotely before? Can you use alternative authentication (username/password)? What else have you tried? – Tony Jul 17 '12 at 21:58
i have also tried putting in the UN/PW, and that did not work either. what do you mean by remote? I can hit my corp SQL server see syntax above, but I cant hit the db I created in Visual Studio. – user1521068 Jul 19 '12 at 19:16

closed as too localized by casperOne Aug 1 '12 at 13:45

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

You may have mixed your connection string settings, have a look at Connection Strings for your version of SQL Server.

There are two forms, the first is:

Data Source=myServerAddress;Initial Catalog=myDataBase;Integrated Security=SSPI;

The second is:

Server=myServerAddress;Database=myDataBase;Trusted_Connection=True;

You have mixed setting names from both Server= and Initial Catalog=

Try changing the connection string to conform to one or the other and see if that helps.

share|improve this answer
i put both strings I've tried in the code snippet. SQL SERVER works, SQL EXPRESS doesn't. – user1521068 Jul 19 '12 at 19:03

i found that my SQL install was misconfigured. problem resolved. I used SQL import/export tool once install was corrected.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.