473,748 Members | 11,134 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

URGENT- Unable to connect to the SQL Server

Hello Guys,

I need some help urgently regarding the code to connect to the SQl Server
on a remote machine and possible configurations to make, or chanegs in the
connection string or so.

I mean i keep getting the error "SQL Server or Access denied"

To rectify this i have used 'n' number of diff combinations of the
conenction string with the SQLConnection methos, please let me know if they
are correct or if there is something that needs to be added

The various connection strings tried:-

myConnectionStr ing = "Initial Catalog=Northwi nd;Data Source=\\
blrkec25251;Int egrated Security=SSPI;"

myConnectionStr ing = "Persist Security Info=False;Inte grated
Security=SSPI;d atabase=northwi nd;server=MSSQL SERVER;data
source=blrkec25 251;user ID=zalak;pwd=de dhia"

myConnectionStr ing = "User ID=zalak;pwd=de dhia;Initial
Catalog=Northwi nd;Data Source=MSSQLSER VER;Workstation ID=blrkec25251"

myConnectionStr ing = "data source=blrkec25 251;initial
catalog=Northwi nd;uid=sa;pwd=S ysAdmin"
myConnectionStr ing =
"uid=sa;pwd=Sys Admin;database= Northwind;serve r=192.168.206.9 7"

I need to know what exactly to out the value for each of these parameters
needs to be

SERVER
INITIAL CATALOG
Data Source
Workstation Id
thanks and regards,
zalak
Nov 21 '05 #1
4 1640
Check out this website

http://www.connectionstrings.com/

Locke

"Zalak Dedhia via DotNetMonster.c om" <fo***@nospam.D otNetMonster.co m> wrote
in message news:7b******** *************** *******@DotNetM onster.com...
Hello Guys,

I need some help urgently regarding the code to connect to the SQl Server
on a remote machine and possible configurations to make, or chanegs in the
connection string or so.

I mean i keep getting the error "SQL Server or Access denied"

To rectify this i have used 'n' number of diff combinations of the
conenction string with the SQLConnection methos, please let me know if
they
are correct or if there is something that needs to be added

The various connection strings tried:-

myConnectionStr ing = "Initial Catalog=Northwi nd;Data Source=\\
blrkec25251;Int egrated Security=SSPI;"

myConnectionStr ing = "Persist Security Info=False;Inte grated
Security=SSPI;d atabase=northwi nd;server=MSSQL SERVER;data
source=blrkec25 251;user ID=zalak;pwd=de dhia"

myConnectionStr ing = "User ID=zalak;pwd=de dhia;Initial
Catalog=Northwi nd;Data Source=MSSQLSER VER;Workstation ID=blrkec25251"

myConnectionStr ing = "data source=blrkec25 251;initial
catalog=Northwi nd;uid=sa;pwd=S ysAdmin"
myConnectionStr ing =
"uid=sa;pwd=Sys Admin;database= Northwind;serve r=192.168.206.9 7"

I need to know what exactly to out the value for each of these parameters
needs to be

SERVER
INITIAL CATALOG
Data Source
Workstation Id
thanks and regards,
zalak

Nov 21 '05 #2
Hi,

You probably will have to check with system administrator to get the
server name if it is wrong but one of these 2 should work. Integrated
Security = sspi means it uses your windows login to verify you have access to
sql server. Data source and server are the name of the sql server. Data
source = server only need to specify one not both. Initial catalog is the
database name. Can use database or initial catalog. Workstation id is the
name of the computer connecting to the sql server.

myConnectionStr ing = "database=north wind;data source=blrkec25 251;user
ID=zalak;pwd=de dhia"

or

myConnectionStr ing = "Integrated Security=SSPI;d atabase=northwi nd; data
source=blrkec25 251;"

http://msdn.microsoft.com/library/de...tringtopic.asp

Ken
--------------------
"Zalak Dedhia via DotNetMonster.c om" wrote:
Hello Guys,

I need some help urgently regarding the code to connect to the SQl Server
on a remote machine and possible configurations to make, or chanegs in the
connection string or so.

I mean i keep getting the error "SQL Server or Access denied"

To rectify this i have used 'n' number of diff combinations of the
conenction string with the SQLConnection methos, please let me know if they
are correct or if there is something that needs to be added

The various connection strings tried:-

myConnectionStr ing = "Initial Catalog=Northwi nd;Data Source=\\
blrkec25251;Int egrated Security=SSPI;"

myConnectionStr ing = "Persist Security Info=False;Inte grated
Security=SSPI;d atabase=northwi nd;server=MSSQL SERVER;data
source=blrkec25 251;user ID=zalak;pwd=de dhia"

myConnectionStr ing = "User ID=zalak;pwd=de dhia;Initial
Catalog=Northwi nd;Data Source=MSSQLSER VER;Workstation ID=blrkec25251"

myConnectionStr ing = "data source=blrkec25 251;initial
catalog=Northwi nd;uid=sa;pwd=S ysAdmin"
myConnectionStr ing =
"uid=sa;pwd=Sys Admin;database= Northwind;serve r=192.168.206.9 7"

I need to know what exactly to out the value for each of these parameters
needs to be

SERVER
INITIAL CATALOG
Data Source
Workstation Id
thanks and regards,
zalak

Nov 21 '05 #3
Thanks Ken Tucker.

I got a good insight into the various parameters but have not yet tried to
deal with the problem. Shall let you know if i could solve it!!

Thanks again,
Zalak

--
Message posted via DotNetMonster.c om
http://www.dotnetmonster.com/Uwe/For...b-net/200505/1
Nov 21 '05 #4
Thanks Locke

Will try to use this and let you know if any other queries arise.

Thanks again,
Zalak

--
Message posted via DotNetMonster.c om
http://www.dotnetmonster.com/Uwe/For...b-net/200505/1
Nov 21 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
2440
by: Rob | last post by:
I have a form - when you click the submit button, it appends a variable to the URL (e.g. xyz.cgi?inputID=some_dynamic_variable) It also opens a new page. Now, that some_dynamic_variable is actually the name of a form element on the parent window. On the new page, I have this javascript: ---- var var2 = location.search.substring(9); document.write(var2)
9
4315
by: Stefan Bauer | last post by:
Hi NG, we've got a very urgent problem... :( We are importing data with the LOAD utility. The input DATE field data is in the format DDMMYYYY (for days) and MMYYYY (for months). The target data format is european DD.MM.YYYY (for days) and 01.MM.YYYY (for months). The input format is not recognizable as a DATE input to a DB2 LOAD for
8
5260
by: Mike | last post by:
Hello, I have a few rather urgent questions that I hope someone can help with (I need to figure this out prior to a meeting tomorrow.) First, a bit of background: The company I work for is developing a web-based application, one part of which involves allowing the user the ability to page through transaction "history" information. The _summary_ history table will have the following fields: ServiceName, Date, User-Ref1, User-Ref2,...
28
3061
by: Tamir Khason | last post by:
Follwing the struct: public struct TpSomeMsgRep { public uint SomeId;
7
7253
by: zeyais | last post by:
Here is my HTML: <style> ..leftcolumn{float:left;width:300px;border: 1px solid #ccc} ..rtcolumn{float:left;width:600px;border: 1px solid #ccc} </style> <body> <div class="leftcolumn" id="d_links"> multiple <a href="hello.aspx?q=something">something</a><a href="hello.aspx?q=something1">something1</a><a
33
3434
by: dembla | last post by:
Hey Frnds can anyone help me in this i need a program in 'c' PROGRAM to print NxN Matrix 9 1 8 1 2 3 2 7 3 as 4 5 6 6 4 5 7 8 9 in sorted form
8
2783
by: ginnisharma1 | last post by:
Hi All, I am very new to C language and I got really big assignment in my work.I am wondering if anyone can help me.........I need to port compiler from unix to windows and compiler is written partially in c and partially in fortran. I guess i need to change host specific files to make it working. I wonder if standard header files are going to change in this case.my current windows compiler doesn't have sys/resource.h but unix compiler...
1
1923
by: alok sengar | last post by:
hi, I have already tried this URL's code "http://www.java2s.com/Code/CSharp/Network/SimpleSNMP.htm" but I am getting error when i am creating a UDP type Socket and recieving packet from this socket. some time error is---"An existing connection was forcibly closed by the remote host" and some time error is--- "A connection attempt failed because the connected party did not properly respond after a period of time, or established...
3
6471
by: N. Spiker | last post by:
I am attempting to receive a single TCP packet with some text ending with carriage return and line feed characters. When the text is send and the packet has the urgent flag set, the text read from the socket is missing the last character (line feed). When the same text is sent without the urgent flag set, all of the characters are read. I'm reading the data using the blocking read call of the network stream class. The .NET...
7
5984
by: Cirene | last post by:
I used to use the Web Deployment Project with my VS2005 projects. Now I've fully upgraded to VS2008. Do I have to download a new version of the Web Deployment Project? If so where can I find it? If not, how do I have to change my deployment strategy? Thanks!
0
8989
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9537
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9367
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8241
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6795
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6073
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4599
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4869
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2213
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.