0
votes
0answers
22 views

Trouble Connecting to SQL Server using PHP from localhost

I'm having a lot of trouble trying to connect to a remote SQL Server from my local test environment. I can connect to the server using Toad for SQL Server, but I'm not sure why it's not working ...
0
votes
1answer
72 views

Dynamically change the ServerDB name in SSIS connection manager

We have a few 100's of SSIS packages in our environment. Last night we moved our database from one server to another and renamed it. We now need to go into all of packages and change the connection ...
0
votes
3answers
116 views

Keyword not supported in Connection String: 'database'

Very new to C# and VS2012. I'm trying to connect to a local database connection. Here is the code string selectSql = "select * from Tasks"; string connectionString = "Data ...
3
votes
1answer
50 views

Optimizing database performance for java server

I have a live java server. It has a DatabaseManager class for database connection, operation and closing. But there are a lot of database activities going on (even more than 50 clients simultaneously ...
0
votes
0answers
45 views

pyodbc connect to database twice and failed

I'm trying use Python and pyodbc to access SQL server 2008. The first connection works. Then, after the program finishes its job, it closes the connection. When the program tries to access the ...
0
votes
0answers
23 views

database connection to SQLServer hanging in socketRead0

I am trying to connect to my companies remote database SQLServer I try this using the app, and squirelSQL and both hang and have to be killed. When i use these parameters in SQLServer manangement ...
3
votes
3answers
104 views

How to check for database availability

I have the following code to test DB connection, it runs periodically to test for DB availability: private bool CheckDbConn() { SqlConnection conn = null; bool result = true; try { ...
0
votes
0answers
189 views

“System.Data.SqlClient.SqlException: Invalid object name ” after moving database

I moved a database from a hosted SQL Server 2008 to SQL Server 2012 on a dedicated server. I created the database, and copied a table using the Import/Export Wizard. And I changed the connection ...
0
votes
0answers
28 views

SQL Server Best Approach [closed]

I was thinking of doing a little project that would require users to download and application which they could log into with user-names and passwords, user account information, and application ...
0
votes
1answer
97 views

The log for database “x” is not available

I tried to use the registration page for my site after not changing anything, and suddenly this error message appeared: The log for database "x" is not available. Check the event log for related ...
0
votes
0answers
51 views

SqlConnection.Open hangs over rdp connection in dev studio debug session

I can't seem to get any kind of answer to what must be a common issue - my SqlConnection.open hanging when connecting to sqlserver 2008 when remotely debugging via an mstsc session. I can run up the ...
0
votes
0answers
115 views

How can I allow remote access to my sql database

I have my Database.mdf that is located in C:\Program Files\My Database. When I'm accessing it at runtime (using my vb.net program) I have an error saying that A network-related or ...
0
votes
0answers
60 views

Connection between Doctrine1 and MSSQL database in zendframework

I am working on a php project using zendframework with doctrine. I have a special requirement that i need MSSQL database with zend framework using doctrine. Coding Platform : Zend framework (PHP) ...
0
votes
0answers
173 views

SQL Server 2005 Remote Connection ( Over Internet )

I have installed SQL Server 2005 in mixed mode. I am able to connect to Database "locally" i.e. (Server-name/Instance or internal-ip/Instance) using both kinds of Authentication. I have configured ...
1
vote
1answer
501 views

MS SQL SERVER, PHP, PDO, ODBC: Login failed for user

I'm trying to connect using a string: odbc:Driver={SQL Server Native Client 11.0};Server=(localdb)\v11.0;Database=test;uid=sa;password=123321; Result: SQLSTATE[28000] SQLDriverConnect: 18456 ...
-5
votes
1answer
296 views

Data is not inserted into the database using visual C# 2010 using SQL commands [closed]

private void button1_Click(object sender, EventArgs e) { SqlConnection con = new SqlConnection(); con.ConnectionString = @"Data Source=YUVV-PC\SQLEXPRESS;Initial ...
-5
votes
1answer
97 views

login failed in sql connection with java [closed]

Sorry for this simple question because I'm new in sql server. In create connection between Java and sql server, I use: DriverManager.getConnection(connectionUrl,"username","password"); But, i don't ...
0
votes
3answers
449 views

No suitable driver found for jdbc in java

Im new in sql server, and want to create connection between java and sql server. my connection code is: public static void main(String[] args) { Connection con; try { String ...
0
votes
1answer
17 views

Issue using pg_dumpl

Ok, here's the issue: I want to upload a DB I've got locally and I'm using in localhost, but, when I use: PGPASSWORD=mypassword pg_dump -Fc --no-acl --no-owner -h localhost -U root app_db > ...
-1
votes
1answer
121 views

SQL Server Configuration While installation [closed]

My application’s bootstraper downloads and install SQL Server Express, up to this part everything is fine. My issues are: I want to install it with such parameter that the sa password is set as my ...
1
vote
1answer
256 views

Sharing transaction or connection between multiple instance of the class

Guys you must be thinking why I have to do that ... I may be wrong but the I am designing a system It has following layers Data Access Layer (Handles sql transactions) Data Managers Presentation ...
4
votes
2answers
108 views

Closing(), but not disposing() SQL Connection - effects

I read this question on relating to disposing of SQL connections. My question is, how bad is it to simply close a sql connection, but not dispose of it? We have a function which is simply closed, but ...
0
votes
1answer
15 views

MSWordAddin Connect Database

I am creating a MSWord Addin on visual studio 11. But I want to know how to connect it to the database. There is no configuration file where I can add a connection. Please tell me how to do it?
0
votes
0answers
87 views

Retrieving data from SQL Server over VPN with PYMSSQL

So, I'm trying to use pymssql to connect to a SQL Server database from my Linux box. The database can only be reached from inside my company's private network. It is set up to accept SQL Server ...
0
votes
0answers
257 views

Create Excel workbook connection string to SQL server

As I understand it, there are two ways to connect Excel to an SQL server: Create an external file, or Create a connection string in the workbook. I am working with a spreadsheet that has ...
0
votes
0answers
160 views

Web Service running locally won't connect to local database

I have a web service that's running locally via IIS. Using IE to navigate to it to test a specific service instantly returns 0 (default value returned by the stored procedure that gets called when ...
1
vote
1answer
514 views

Database connection “Sqlserver” is missing, or could not be created

I am trying to connect to a Microsoft SQL Server database, with CakePHP 2.2.4. As my dev environment I have installed a fresh WAMP Server on my machine. I have enabled the PHP extensions: ...
3
votes
2answers
1k views

How to find the number of concurrent SQL Server connections

I have a SQL Server that is reaching the max limit of concurrent connections. I have many different servers & services connecting to one SQL Server at the same time. I did find another query ...
0
votes
1answer
118 views

connect php with mssql while using iis

I have successfully configured php in IIS. sample php pages working fine. now i want to connect it to sql server i tried it by downloading a mssql .dll file in ext folder,I also tried by installing a ...
-1
votes
3answers
362 views

Java connection to Windows SQL Server 2005 [closed]

This is an issue that has really been killing me, so I figured I would take it to you fine gentlemen/women to see if we can get a solution. I am trying to connect to a SQL server 2005 (MSSQLSERVER, ...
0
votes
1answer
147 views

SqlConnection - The timeout period elapsed prior to obtaining a connection from the pool

Can anyone see anywhere in the code below where connections might leak out for this logging to database code? I am receiving the error in the title occasionally but not always when running this ...
0
votes
1answer
140 views

ASP.NET SQL - Pool - timeout

I've a problem with Asp.net and SQL. I have many timeout errors from connection pool. All connections are used within using block so they are correctly closed. In the connectionSting I have : ...
0
votes
2answers
2k views

Diagnosing Connection to SQL Server

I'm trying to create an ODBC connection to SQL Server, but when i do, i get error: Connection failed: SQLState: '01000' SQL Server Error: 10060 [Microsoft][ODBC_SQL Server Driver][TCP/IP Sockets] ...
0
votes
1answer
886 views

Connection to SQL Server 2008/2012 with dynamic ports [closed]

My problem is that I can't connect to any SQL Server instance installed on our server (it has both 2008 and 2012) using dynamic ports. Static ports works well. Also, if you mention dynamic port number ...
0
votes
0answers
834 views

IIS cannot connect to Sql Server - Windows Server 2008 Standard

Okay, I've read a bunch of the related questions on here, and been googling, and cannot figure this out. One of our clients wants us to set their website up on a server, which is also running Sql ...
0
votes
1answer
940 views

Making sql server 2008 connection with PHP with sqlsrv big problems

I know there are some threads with this topic, but I'm a little desperate now so I think I should do a new one. I´m trying to connect sql server 2008 with php, I'm using WAMP server and php 5.4.3. I ...
0
votes
1answer
940 views

VB.NET connect to Win2008 SQL server DB

I am running Visual Studio 2008 on my Windows XP Professional SP3 box. The server is on Windows 2008 R2 Enterprise SP1 The server is on our network, and I am able to ping it via the DNS name used in ...
6
votes
0answers
826 views

Zend Framework 2 Microsoft SQL Server 2008 DB connection

I tried out Zend Framework 2 skeleton application and its working fine in Zend Server 5.6 (PHP Version 5.4.0 apache 2.2.21 MYSQL 5.0.10). But i want Zend Framework 2 to connect with MS SQL 2008. I ...
0
votes
0answers
384 views

com.microsoft.sqlserver.jdbc.SQLServerException: The connection is closed

I am using MS SQL Server 2008 RS2 in my Java application. SQL Server worked in LAN network. My application is working fine irrespective of if the network is proper. In case If I disconnect my network ...
0
votes
3answers
243 views

Dropping SQL Server database: handling concurrent connections

During my integration tests, I try to drop database using: USE master ALTER DATABASE TestXyz SET SINGLE_USER WITH ROLLBACK IMMEDIATE DROP DATABASE TestXyz However, quite often (given the number of ...
0
votes
1answer
83 views

Connect on SQL Server with server & port

I'm trying to connect to my SQL Server with host AND port, but no success. I've found that the default port for its services is 1433, but I've tried strings like .,1433 and localhost,1433 but it ...
2
votes
1answer
874 views

SSIS Excel Connection Manager Error

I am trying to create an Excel Connection Manager from an Excel file that has 19,852 rows. After I select the file and the Excel Sheet and click ok, I get the following error: value does not fall ...
0
votes
1answer
218 views

Classic ASP / SQL Server sites intermittent connectivity

We have a Windows 2003 server and we have recently started to upgrade some really old classic ASP sites that were using MS access to now use SQL Server 2005. But these sites are getting random SQL ...
0
votes
0answers
1k views

Login failed. The login is from an untrusted domain and cannot be used with Windows authentication

I have a trouble with connection to the MS Sql server 2008 R2 from my Management Studio. Connection is failed due to the following error: Login failed. The login is from an untrusted domain and cannot ...
0
votes
2answers
556 views

Migrate from SQL server 2008 to 2012

I have successfully migrated all my databases from 2008 to 2012 and mapped the user to the specific databases. My problem being is 2008 expired (hence why I got 2012) and I was using a web service to ...
1
vote
2answers
5k views

Connect to remote SQL server 2012 using visual studio server explorer

I'm trying to find a good guide for how to make a connection to the remote SQL server (it's 2012 epxress). After some investigation on the interwebs , i couldn't find a decent guide to help me trough ...
0
votes
2answers
645 views

Not able to connect MS SQL server 2008 with java

I tried to connect java with My MS SQL express, I downloaded the sqljdbc4.jar also When I don't bother with the CLASSPATH and all and I try to execute my program( even with sqljdbc in C:\Program ...
0
votes
2answers
180 views

Connecting to my remote SqlServer database

Im currently making a wpf Windows Application, and it withdraws data from a database, so it is needed that I setup a connection to my remote servers SQL Server Database. Now i am getting a couple ...
0
votes
1answer
148 views

Default Connection to master DB

Our application hosted in multitier environment. When the App servers create a connection to the SQL Server it opens the connection on its default database (let's say xyz) but when the Data Servers ...
1
vote
2answers
467 views

jdbc connection fails while running the program from jar file

I've got an application, where I use a JDBC connection. When I run it from the Eclipse environment, there's no problem with anything, neither with connection. But, when I pack it into executable jar ...

1 2 3