I am setting up the Reporting Servers for a SQL server that I am migrating and one of the data sources connects to Teradata. I am able to connect fine using the DB username and password but when I try to use Windows/LDAP it fails to connect. My company requires it being set up with the LDAP login.
The current connection string I am using is Data Source= datasource.com; Database=db1,db2
Is there a different connection string I can use to enable LDAP within the SSRS?
Thank you in advance.
Related
I deployed a package which stores db names and user roles of diffent servers. image
I set up the my source connection manager with specific username and pwd. But when i start the package then my connection manager always uses the windows authentication.
I get the username and pwd from table and store them in the variables. Here is my dynamic connection manager properties window: image
I want to connect my servers with each username and pwd of them. Thanks for helps.
You cant tell from the image but I believe you have Integrated Security=SSPI in your expression. If you look at the connection string property you can see it on the end. If you remove that it should use SQL login instead of Win Auth.
I need to develop Client/Server Application in VB.Net, Database is MySQL.
So, Now I am doing connection testing. I created Connection string and it connected successfully in Server. Its working perfect. My Connection string is
Dim myConnectionString As String =
"SERVER=192.168.2.193;PORT=3306;UID=root;PASSWORD=globe;DATABASE=firstdb;"
But When I am trying to access from Client, it shows error : Unable to connect to any of the specified MySQL hosts.
Please help me to clear this issue.
Thanks.
I'm working on an Excel client for our company. It requires several connections to a MySql database (which is a PC running Apache Server(XAMPP) located in our office). I'm able to connect remotely and push/pull data fine so development is going good in that respect.
But, my only concern is how secure the connection is over public networks (i.e. hotels, restaurants, airports)?
If odbc connection string data is easily sniffed I'll need to find another way. I Hope you can point me in the right direction if that is the case.
Driver: MySQL ODBC 3.51 Driver (installed by MySQL Connector)
Provider: MSDASQL
I would like to add remote authentication on startup because it may be required from time-to-time to disable access for a particular user.
Added:
Would this secure a connection on public network If I added security certificate on remote server and the Excel client used ssl connection string like so?
Driver={MySQL ODBC 3.51 Driver};Server=myServerAddress;Database=myDataBase;
User=myUsername;Password=myPassword;sslca=c:\cacert.pem;
sslcert=c:\client-cert.pem;sslkey=c:\client-key.pem;sslverify=1;Option=3;
Thanks for your help.
I'm building a website with EF4.1 and MVC3 (C#). Trying to find out what the proper way to remove the password from the connection string is. I've done some searching and can't seem to find anything that tells how to remove the password from the connection string.
I'm actually working on two different sites at the moment. One is hosted on GoDaddy and is using their SQL Server db. The other is hosted here at work and will be using SQL Server 2005.
Lastly, is it possible to do the database first code generation with a MySQL database? I'm personally more comfortable with MySQL and prefer it to SQL Server, but have had issues getting this to work.
If you should need any additional information please let me know.
You should probably encrypt your web.config connection strings before deploying it to the server.
AFAIK, if you connect to your server using SQL Server Authentication, the connection string needs the username and password. If your app and db servers had domain trust, you can use integrated mode / windows authentication / identity impersonate to have a password-less connection string. But most service providers don't let you do this -- they use SQL Server Authentication to keep customers out of their domain.
Either way, there is more sensitive information in the connection string than just the password. You should encrypt the whole <connectionStrings> node.
I have installed Crystal Reports 2008 on my Windows PC at work.
We have an internal MySQL server which has data which we need to access. I have the IP address, port, user, password and database-name.
When I fire up Crystal Reports, and run the Report Creation wizard, it gave me a slew of ways to connect to various data sources, but not MySQL. I tried ODBC, but it asked for a connection string. How do you make a proper connection string for MySQL? Is ODBC even the right way to go?
How do I connect this thing to MySQL?
connectionstrings.com is an excellent resource for connection string examples.