Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    MS SQL Server


SuperbHosting.net have generously sponsored dedicated servers to ensure a reliable and scalable dedicated hosting solution for BigResource.com.





Visual Studi Connection String


Hi iam trying to create a script which will create a connection to the server based on server name variable

using Script Task. only serer name is variable, windows authentication, sql server database.

 

I am reading the server name from a table to an variable and calling that variable in script task ReadOnlyVariable : server_name

 

in the design script  i dont know how to use this variables

i dont know visual studio can anyone give me the sysntax

 

Thanks

 

 

 




View Complete Forum Thread with Replies

Related Forum Messages:
Help With Connection String After Clickonce Install From Visual Studio 2005
I have a sql express .mdf that is located in c:appdirectorymydb.mdf whilst developing an application.  During development my connection string uses the above path to connect to the db.  e.g.

"server = .sqlexpress; Integrated Security=True; database=C:appdirectorymydb.mdf"
 
I have published the app using click once in visual studio.net which places the db in : C:Documents and Settingsuser.nameLocal SettingsApps2.0DataJN1WL1DJ.X7B ... 08ed2810aab2abData

 
When i am executing the application following a clickonce install, what should I use in my connection string for the path to the db ? or where can I find the above path (e.g. in the registry) so that I can provide it to the connection string ?

 
Alternatively, can I specify where the DB is going to be installed (via click once).  e.g. in my app directory under program files ?
 
I have tried searching what seems like everywhere for a solution to this problem and as a last resort thought it worth posting the question.
 
Many thanks in advance.
 
Simon

View Replies !
SQL Server 2005 Connection String In Visual Studio 2005
Hey
I need to know what shall i specify in this connection string in visual studio web.confug file inorder to connect to ma registered server (locally) not directly to my dedicated server ....cuz i am facing network connection problems ....
b4 i used to use this connection string :
<add key="conn" value="data source=IP addresseel,1433;initial catalog=xxx;user id=username on the dedicated server;Password=password on the dedicated server;timeout=60"></add>
So how can i change it ???? to be able to connect locally ????
Please Help ???!
Thanks in advance
Hiba

View Replies !
Cannot Set Connection Property Of Backup Database Task If Connection String Is Customized In Connection Object
I added a connection (ADO.NET) object by name testCon in the connection manager - I wanted to programmatically supply the connection string. So I used the "Expressions" property of the connection object and set the connectionstring to one DTS variable. The idea is to supply the connection string value to the variable - so that the connection object uses my connection string.

Then I added a "Backup Database Task" to my package with the name BkpTask. Now whenever I try to set the connection property of BkpTask to the testCon connection object, by typing testCon, it automatically gets cleared. I am not able to set the connection value.

Then after spending several hours I found that this is because I have customized the connection string in testCon. If I don't customize the connection string, I am able to enter the "testCon" value in the connection property of the BkpTask.

Is this an intrinsic issue?

View Replies !
Sql Server Business Intelligence Development Studi
Hi,

I am new to sql server reporting service.

I am using Express edition of Sql server 2005.

For using sql server reporting service. I have downloaded SQLEXPR_ADV.EXE and SQLEXPR_TOOLKIT.EXE. I installed both.

But what happen when I am going to Start > Program Files > Sql Server 2005 > Sql Server Business Intelligence development studio. For creating Report project. Then a Missing Shortcut message box is showing where the message is "Windows is searching for devenv.exe. To locate the file yourself, click browse". i.e. shortcut has been created at the time of installation but the required files are not being copied.

I again I open visual studio and from there I select report project but an error message is showing.

I tried again and again but the same result I got.

I am very confused and unable to understand what to do and how to fix it.

please help me..........

Thanks in advance
Reyaz

View Replies !
Create Scripts In SQL 2005 Server Management Studi
When creating scripts in SQL 2005 Server Management Studio for stored procecures, views etc, it automatically enters the target database e.g. "USE [databasename]". Does anyone know how to turn it off so it doesnt add this?

View Replies !
How To Backup A Database In Sql Server Management Studi Express Automatically
I come cross some post about how to backup a database in Sql Server Management Studio Express automatically. The scripts look like as below
 
USE [master] 
GO 
SET ANSI_NULLS ON 
GO 
SET QUOTED_IDENTIFIER ON 
GO 
CREATE PROCEDURE [dbo].[sp_BackupDatabase]  
       @databaseName sysname
AS 
BEGIN 
       SET NOCOUNT ON; 
       DECLARE @sqlCommand NVARCHAR(1000) 
       DECLARE @dateTime NVARCHAR(20) 
       SELECT @dateTime = REPLACE(CONVERT(VARCHAR, GETDATE(),111),'/','') + 
       REPLACE(CONVERT(VARCHAR, GETDATE(),108),':','')  
                    SET @sqlCommand = 'BACKUP DATABASE ' + @databaseName + 
               ' TO DISK = ''C:Backup' + @databaseName + '_Full_' + @dateTime + '.BAK'''  
              
       EXECUTE sp_executesql @sqlCommand 
END

 
 
It throws that the DDL statement is not allowed. What's wrong with it?

View Replies !
Visual Studio 2005 The Remote Connection To The Device Has Been Lost. Please Verify The Device Connection And Restart Debugging.
Basically I've been using Visual Studio 2005 for a few weeks now moving a Pocket PC project from 2003 to 2005. When I hit the Start Debugging Button every time until today the project would rebuild and deploy to my pocket PC allowing me to debug etc but now I get

The remote connection to the device has been lost.

Please verify the device conection and restart debugging.

I used to get this problem in VS2003 sometimes and just like the numerous posts on different sites that I've looked at the problem eventually goes away and I'm none the wiser. One guy said that he found that if he went to bed the problem was resolved when he came back!

My PDA running Windows 2003 2nd Edition is directly connected to my PC via a USB port. I've rebooted my PC and done a soft reset on the PDA but it didn't help. I'm using ActiveSync 4.1.

Does anyone know how to resolve this problem?

View Replies !
The Connection Name 'LocalSqlServer' Was Not Found In The Applications Configuration Or The Connection String Is Empty.
Hi,
I'm having a BIG problem, this is my 3rd day looking for answer !I'm trying to create a custom membership provider with MS SQL database 2005 but not the default ASPNETDB. I've changed the web.config to be as following:<connectionStrings><add name="sqlConn" connectionString="Data Source=.;Integrated Security=True;Initial Catalog=ASPNETDB;"providerName="System.Data.SqlClient" /></connectionStrings> <system.web><trace enabled="true" /><roleManager enabled="true" /><authentication mode="Forms" />
<membership defaultProvider="MySqlProvider"><providers><remove name="AspNetSqlProvider"/><add name="MySqlProvider" connectionStringName="SqlConn" type="System.Web.Security.SqlMembershipProvider" applicationName="/" /></providers></membership>
But when I try to login to the site using the login control the following error occurs:
Server Error in '/etest' Application.


Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: The connection name 'LocalSqlServer' was not found in the applications configuration or the connection string is empty.Source Error:



Line 149: <roleManager>
Line 150: <providers>
Line 151: <add name="AspNetSqlRoleProvider" connectionStringName="LocalSqlServer" applicationName="/" type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
Line 152: <add name="AspNetWindowsTokenRoleProvider" applicationName="/" type="System.Web.Security.WindowsTokenRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
Line 153: </providers>Source File: C:WINDOWSMicrosoft.NETFrameworkv2.0.50727Configmachine.config    Line: 151


Version Information: Microsoft .NET Framework Version:2.0.50727.42; ASP.NET Version:2.0.50727.213
 It is clear that this is a prblem with my Machine.Config file - since I've "worked!" on this file for a while. But when I've checked the Machine.config file I've found the LocalSqlServer connection it is talking about! .
I'm lost and I dunno what to do, can anyone help?
Here is the mahine.config in case if you need it:<connectionStrings>
<add name="LocalSqlServer" connectionString="data source=.;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true" providerName="System.Data.SqlClient" /></connectionStrings>
<system.data><DbProviderFactories>
<add name="Odbc Data Provider" invariant="System.Data.Odbc" description=".Net Framework Data Provider for Odbc" type="System.Data.Odbc.OdbcFactory, System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /><add name="OleDb Data Provider" invariant="System.Data.OleDb" description=".Net Framework Data Provider for OleDb" type="System.Data.OleDb.OleDbFactory, System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<add name="OracleClient Data Provider" invariant="System.Data.OracleClient" description=".Net Framework Data Provider for Oracle" type="System.Data.OracleClient.OracleClientFactory, System.Data.OracleClient, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /><add name="SqlClient Data Provider" invariant="System.Data.SqlClient" description=".Net Framework Data Provider for SqlServer" type="System.Data.SqlClient.SqlClientFactory, System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<add name="SQL Server CE Data Provider" invariant="Microsoft.SqlServerCe.Client" description=".NET Framework Data Provider for Microsoft SQL Server 2005 Mobile Edition" type="Microsoft.SqlServerCe.Client.SqlCeClientFactory, Microsoft.SqlServerCe.Client, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" /></DbProviderFactories>
</system.data><system.web>
<processModel autoConfig="true" /><httpHandlers />
<membership><providers>
<add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="LocalSqlServer" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="true" applicationName="/" requiresUniqueEmail="false" passwordFormat="Hashed" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="7" minRequiredNonalphanumericCharacters="1" passwordAttemptWindow="10" passwordStrengthRegularExpression="" /></providers>
</membership><profile>
<providers><add name="AspNetSqlProfileProvider" connectionStringName="LocalSqlServer" applicationName="/" type="System.Web.Profile.SqlProfileProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</providers></profile>
<roleManager><providers>
<add name="AspNetSqlRoleProvider" connectionStringName="LocalSqlServer" applicationName="/" type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /><add name="AspNetWindowsTokenRoleProvider" applicationName="/" type="System.Web.Security.WindowsTokenRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</providers></roleManager>
</system.web>

View Replies !
The Connection Name 'name' Was Not Found In The Applications Configuration Or The Connection String Is Empty
 

I have seen another thread with this same problem, but the problem seemed to be a typo.  I am getting an error when I try to access the web site ..
 

The connection name 'USASH-AS0013' was not found in the applications configuration or the connection string is empty.
 
However, in my web.config file I do have a connection named USASH-AS0013.  Here is my web.config file (with my user/pwd hidden).  Any help would be greatly appreciated.
 


<?xml version="1.0"?>
<!--
    Note: As an alternative to hand editing this file you can use the
    web admin tool to configure settings for your application. Use
    the Website->Asp.Net Configuration option in Visual Studio.
    A full list of settings and comments can be found in
    machine.config.comments usually located in
    WindowsMicrosoft.NetFrameworkv2.xConfig
-->
<configuration>
 <appSettings/>
 <connectionStrings>
  <add name="USASH-AS0013" connectionString="Provider=SQLOLEDB;Data Source=USASH-AS0013;User ID=****;Password=*****;Initial Catalog=&quot;Smart Factory&quot;"
   providerName="System.Data.OleDb" />
 </connectionStrings>
 <system.web>
  <!--
            Set compilation debug="true" to insert debugging
            symbols into the compiled page. Because this
            affects performance, set this value to true only
            during development.

            Visual Basic options:
            Set strict="true" to disallow all data type conversions
            where data loss can occur.
            Set explicit="true" to force declaration of all variables.
        -->
    <compilation debug="true" strict="false" explicit="true"/>
    <pages theme="MySkin" >
   <namespaces>
    <clear/>
    <add namespace="System"/>
    <add namespace="System.Collections"/>
    <add namespace="System.Collections.Specialized"/>
    <add namespace="System.Configuration"/>
    <add namespace="System.Text"/>
    <add namespace="System.Text.RegularExpressions"/>
    <add namespace="System.Web"/>
    <add namespace="System.Web.Caching"/>
    <add namespace="System.Web.SessionState"/>
    <add namespace="System.Web.Security"/>
    <add namespace="System.Web.Profile"/>
    <add namespace="System.Web.UI"/>
    <add namespace="System.Web.UI.WebControls"/>
    <add namespace="System.Web.UI.WebControls.WebParts"/>
    <add namespace="System.Web.UI.HtmlControls"/>
   </namespaces>
  </pages>
  <!--
            The <authentication> section enables configuration
            of the security authentication mode used by
            ASP.NET to identify an incoming user.
        -->
  <authentication mode="Windows"/>
  <!--
            The <customErrors> section enables configuration
            of what to do if/when an unhandled error occurs
            during the execution of a request. Specifically,
            it enables developers to configure html error pages
            to be displayed in place of a error stack trace.

        <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
            <error statusCode="403" redirect="NoAccess.htm" />
            <error statusCode="404" redirect="FileNotFound.htm" />
        </customErrors>
        -->
 </system.web>
</configuration>

View Replies !
The Connection Name 'name' Was Not Found In The Applications Configuration Or The Connection String Is Empty
I have been trying to host my website on Go Daddy for about 3 weeks and I have cleared several problems but this one remains. I can get into the ASPNETDB database for doing logins , etc but I cant access my database called "PINEmgt".
To try to understand where the problem is located,I built a very simple application without login controls and put on  it one Detailform accessing a single line table "Signin". I continually get the error message I got with my real app :"The connection name 'PINEMgtConnectionString2' was not found in the applications configuration or the connection string is empty. " There is only one connection string in my app -'PINEMgtConnectionString2'. When I run the app locally on my machine it works. After I move everything to Go Daddy, I get the error message and the following dump"
 




Line 24: </Fields>
Line 25: </aspetailsView>
Line 26: <aspqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStringsINEMgtConnectionString2 %>"
Line 27: InsertCommand="INSERT INTO Signup(first_name, last_name, email, customer_id) VALUES (,,,)"
Line 28: SelectCommand="SELECT * FROM [Signup]"></aspqlDataSource>

This is indeed the code from my single page app.
 
The dump is:




[InvalidOperationException: The connection name 'PINEMgtConnectionString2' was not found in the applications configuration or the connection string is empty.]
System.Web.Compilation.ConnectionStringsExpressionBuilder.GetConnectionString(String connectionStringName) +3039085
ASP.default_aspx.__BuildControlSqlDataSource1() in d:hostinguck7scoutDefault.aspx:26
ASP.default_aspx.__BuildControlform1() in d:hostinguck7scoutDefault.aspx:10
ASP.default_aspx.__BuildControlTree(default_aspx __ctrl) in d:hostinguck7scoutDefault.aspx:1
ASP.default_aspx.FrameworkInitialize() in d:hostinguck7scoutDefault.aspx.vb:912306
System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +40
System.Web.UI.Page.ProcessRequest() +86
System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context) +18
System.Web.UI.Page.ProcessRequest(HttpContext context) +49
ASP.default_aspx.ProcessRequest(HttpContext context) +29
System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +303
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +64


After Googleing, asking Go Daddy for info (which they dont give) , etc for three weeks, I need serious mental help
in the form of a solution of this problem. Your help with the problem or the name of a good mental health professional in eastern N.C. (maybe both) would be appreciated.

View Replies !
Cannot Set Connection String For Bulk Insert Source Connection
I came across something strange today. I was wondering I was doing something wrong.

View Replies !
Edit Connection Manager Connection String At Runtime With C#
This is the first time I have used SSIS, so please bear with the ignorance.

 

I have a super simple package that inserts x000's of rows into a temporary table. The data source is a file that the user will upload. I need to be able to tell the package what file to upload. I'm thinking the simplest thing would be to edit the connectionString property of the SourceConnectionFlatFile at runtime. Is this possible? What form should the file path be in (UNC, other)? And, are there any other considerations I should be aware of?

 

Thanks!

View Replies !
Failed SQL Connection / Visual Web Developer Vs. Asp.net
  I have an issue connecting to a SQL server, not on localhost.
Writing the code in Dreamweaver I can not seem to get a connections, I get an error:
An error has occurred while establishing a connection to the server.  When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)
However, if I create a basic connection and GridView in Visual Web Developer it works fine. Even tried to copy the web.config and use it in Dreamweaver
I would just use Visual Web Developer, but I need to output this as a pure xml for import into flash.
So need help in one of two places, either
A: How do I easily get Visual Web devleoper to print out xml from a sql database 
B: How do I get it to connect using my Dreamweaver coe 
This is my dreamweaver code:
<%@ Page Language="VB" Debug="true" %><%@ import namespace="System.Data"%><%@ import namespace="System.Data.SqlClient"%><script runat="server">'Dim connectionString as String = "Provider=Microsoft.Jet.OLEDB.4.0; Ole DB Services=-4; Data Source="+Server.MapPath("")+"adp1.adp"    Sub Page_Load(Src As Object, E As EventArgs) getData()        End Sub    Function getData() As System.Data.DataSetDim dbConnection As SqlConnection = New SqlConnection() dbConnection.ConnectionString = _    "Data Source=(severname);" & _     "Initial Catalog=database;" & _    "Integrated Security=true"         Dim queryString As String = "SELECT [inow].* FROM [inow] Order by ID"        Dim dbCommand As System.Data.IDbCommand = New System.Data.SqlClient.SqlCommand        dbCommand.CommandText = queryString        dbCommand.Connection = dbConnection        Dim dataAdapter As System.Data.IDbDataAdapter = New System.Data.SqlClient.SqlDataAdapter        dataAdapter.SelectCommand = dbCommand        Dim dataSet As System.Data.DataSet = New System.Data.DataSet        dataAdapter.Fill(dataSet)       ' Return dataSet   response.Write(dataSet.getXML())    End Function</script><html><head runat="server">    <title>Declarative Output Caching</title></head><body></body></html>

View Replies !
Visual Basic With SQL-database Connection And Windows XP
When you work with Visual Basic 2005 Express Edition on windows XP, and if your application contains references to SQL-databases, I have discovered that it is important that all identities be logged off before you open the particular identity where you want to work on your Visual Basic project. I have earlier assumed that it was only possible to work with Visual Basic on one identity, the one where the version was registered.
 
This assumption was not quite correct. Actually, you may run Visual Basic applications with SQL-references on all identities on XP, provided that no other identities that are using the SQL-server are currently running.
 
For example, suppose you start your computer and log on the identity James. Then you switch identity, but you actually don't log off James. Then you log on the John identity. There you discover that it is impossible to create a new SQL-database in Visual Basic's Data-connections view. An error message appears. Why is that? It is because the SQL-server is busy on the James-identity. To solve this problem you want to log off the John identity, don't just switch. Then log on the James identity again, and log off properly. All identities should now be logged off. Now you may log on the John identity again, and it is now possible to create an SQL database.
 
Concerning deploying applications for XP. This issue is similar to the one I just described. You cannot run the installation-file successfully on one identity if the SQL-sever is busy on another identity. You want to log off all identities before logging on the identity where you want to install the application. Same thing when you want to run the deployed application.
 
Question. Does this limitation exist only in the express-editions of Visual Studio 2005 as a drag on free-ware, or is it prevalent in commercial editions as well?  I would like to know a little more about this before purchasing the standard or professional edition of Visual Studio 2005.
 
Best Regards
Ziper

View Replies !
Adding A Connection In Visual C++ 2005 Express
I am new to SQL Server 2005 and Visual C++ 2005 Express.

When I try and add a connection in Visual C++:

DataSource: SQL Server Database File

File Name: c:.......file.mdf

Windows Authentication

I get the following message:

An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under default settings SQL Server does not allow remote connections. (provider: Share Memeory Provider, error:36 - The Shared Memory dll used to connect to SQL Server 2000 was not found)

Any ideas?

 

 

View Replies !
How Do Add A DB Connection To A Table In SQL Server Express Using Visual Web Developer?
I'm developing using Visual Web Developer and want to have a web page that shows the contents of a table.  I get the error message when testing the connection through database explorer "Login failed for user ''.  The user is not associated with a trusted SQL Server connection". 
The database is located on a server running IIS and has SQL Server Express installed.

View Replies !
How Do Add A DB Connection To A Table In SQL Server Express Using Visual Web Developer?
I'm developing using Visual Web Developer and want to have a web page that shows the contents of a table.  I get the error message when testing the connection through database explorer "Login failed for user ''.  The user is not associated with a trusted SQL Server connection". 
The database is located on a server running IIS and has SQL Server Express installed.
 

View Replies !
SQL Server 2005 And Visual Studio @005 Connection Problem.
I installed the SQL Server 2005 Trial and am now having trouble connecting. When I bring up the ASP.NET Configuration tool and Go to "Provider configuration"  "Select a single provider for all site management data" AspNetSqlProvider  Test I get the following message.

"Could not establish a connection to the database.
If you have not yet created the SQL Server database, exit the Web Site Administration tool, use the aspnet_regsql command-line utility to create and configure the database, and then return to this tool to set the provider. "

I have already run the aspnet_regsql command-line utility.

Can anybody give me some information on how to set this up.

I am currently working with the club web site starter kit.

View Replies !
DB Connection From Visual Studio 2003 To Sql Server 2005
I have one computer running Visual Studio 2003, and another running SQL Server 2005.  I am trying (unsuccessfully) to add a connection to a sqlDataAdapter from an application in the Visual Studio 2003 computer to the db on the SQL 2005 machine.

 If I go to the machine running sql 2005, where I am running visual Studio 2005, I can create this connection with no problems.

 

Is there a way fromvisual Studio 2003 to create a sqlDataAdapter with a connection to SQL 2005?

 

 

View Replies !
Variable Connection String For OLE DB Connection
Good Morning,

 

I hope that I am just missing a step in the process somewhere.  I have established a string variable called DatabaseServer and another called DatabaseName.  In the OLE DB connectionstring expression I have the following:




Code Snippet

"Data Source=" +   @[User::DatabaseServer] + ";Initial Catalog=" +  @[User::DatabaseName] + ";Provider=SQLNCLI.1;Integrated Security=SSPI;Auto Translate=False;"

 

My understanding is that changing the variable from SERVERA to SERVERB should repoint the connection.  (Test to pre-production to production in my current promotion environment.)  This should also take effect in any dataflow task using the database connection above right?  When I try to repoint the server variable (and only the server variable) I am either a.)throwing errors saying the original connection cannot be found in the data flow task, or b.)the job appears to be processing fine, but the repoint did not take place and data is still flowing to the original server.

 

Can anyone offer suggestions as to what I am missing?

 

The properties values in the DB connection:

ConnectionManagerType is OLEDB

DataSourceID is blank

DelayValidation is False (Setting to true changes nothing in my test)

Expression for ConnectionString is (see above)

RetainSameConnection is False

SupportsDTCTTransactions is True (and appears to be unchangeable.)

 

View Replies !
Can't Connect To Sql Server Database With Same Connection Used In Visual Studio .net 2003
I have the following code that works fine in visual studio .net 2003 but not with VWD.  I have sql server 2000 developer edition installed locally and this connection works fine with visual studio.  With VWD it fails with the exception "System.Data.SqlClient.SqlException: Login failed for user 'DARRELLASPNET'".  It fails on the conn.Open line.   any ideas on what the issue is?Dim conn As SqlConnectionDim connstr As Stringconnstr = "Data Source=DARRELL;Initial Catalog=Event;Integrated Security=SSPI;"Dim daEvents As New SqlDataAdapter("select * from events", connstr)Dim ds As New System.Data.DataSet
conn = New SqlConnection(connstr)conn.Open()daEvents.Fill(ds)

conn.Close()conn.Dispose()

View Replies !
Custom Task + Connection Manager With Interaction To Visual Studio
 

Hi
 
I am running into issues with custom objects interaction with visual studio 2005.
 
1. Custom connection manager.
I am setting the name of the connection manager ( to standardize naming convention ) that user created, however when the CM is created, the name displayed in visual studio is still the default name even if the real name is the one i set. I have to do things like, edit it or save package - close - reopen, create another connection, ... etc in order to get it refreshed.
 
2. Custom Task
I am managing some variables in this custom task so that I will be adding and deleting variables in the package.
The challenge i am running into is, when I added 2 variables for example, even though the variables are successfully added to package, the Variable Window in visual studio designer will not reflect the new variables. I have to save package, close, and re-open in order for the variables to show up.
 
So this brings to my question - is there any way to tell Visual Studio programmatically to refresh the contents of these 2 sections, 1 is the Variable Window and the other is the panel containing the list of connection managers.
 
I have been searching around and found some clue about visual studio SDK but I still cannot find an exact way of doing it. Visual Studio SDK example tells you how you can access the Variable window as

framesList = new List<IVsWindowFrame>();

toolWindowNames = new List<string>();

// Get the UI Shell service

IVsUIShell uiShell = (IVsUIShell)Microsoft.VisualStudio.Shell.Package.GetGlobalService(typeof(SVsUIShell));

// Get the tool windows enumerator

IEnumWindowFrames windowEnumerator;

ErrorHandler.ThrowOnFailure(uiShell.GetToolWindowEnum(out windowEnumerator));



IVsWindowFrame[] frame = new IVsWindowFrame[1];

uint fetched = 0;

int hr = VsConstants.S_OK;

// Note that we get S_FALSE when there is no more item, so only loop while we are getting S_OK

while (hr == VsConstants.S_OK)

{

// For each tool window, add it to the list

hr = windowEnumerator.Next(1, frame, out fetched);

ErrorHandler.ThrowOnFailure(hr);

if (fetched == 1)

{

// We successfully retrieved a window frame, update our lists

string caption = (string)GetProperty(frame[0], (int)__VSFPROPID.VSFPROPID_Caption);

toolWindowNames.Add(caption);

framesList.Add(frame[0]);



}

}
 
But i looked up the methods for IVsWindowFrame and it does not have anything to refresh the contents of the frame.
 
I thought about firing events but cannot find which one to fire.
 
Any help on this will be greatly appreciated.
 
Terry

View Replies !
Connection Timeout In Visual Studio 2005(Reporting Services)
Hello.

 

I am having problems with a couple of queries in the Development Studio (Reporting Services 205).  I am working on a report that runs a lot of functions so I expect it to be slow.  But it times out in 30 seconds.

 

Error Message: Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.
 



The report finishes when clicking on the preview tab but not when on the data tab. If finishes fine when deployed as well.  Is there a way to increase the amount of time the query designer in Visual Studio takes to time out on a query?

 

I have tried setting the Connect Timeout=60 on the Data Source but it seems to be overridden by a setting in Visual Studio 2005.

 

Thanks much for any help.

 

Leo
 

View Replies !
SQL Server Connection Issue! Visual Studio 2005 Used To Connect!
Hello,
I'm using Microsoft Visual Studio to remotely connect to my database for the project I am working on.
I always get the same error, when I try to connect:




Code Snippet

An error has occurred while establishing a connection to the server.
When connecting to the SQL Server 2005, this failure may be caused by the
fact that under the default settings SQL Server does not allow remote
connections. (provider: Named Pipes Provider, error: 40 - Could not
open a connection to the SQL Server)
So, I decided to ping the server to see if any packets were being sent back to me, on the command prompt.
4 of my packets were sent to the server.
0 were sent back.




Code Snippet

Pinging sq15.bravehost.com [172.16.0.229] with 32 bytes of data

Request timed out.
Request timed out.
Request timed out.
Request timed out.

Ping statistics for 172.16.0.229:
Packets: Sent = 4, Recieved = 0, Lost = 4 (100% loss),
So, does the database not allow incoming connections, or am I missing something?

Thanks for the help in advance,
Dustin.

View Replies !
Asp.net Visual Web Developer 2005 Connection To Sage Dosen't Work On Server
Hi all
i have a page with this code
 <asp:GridView ID="GridView1" runat="server" AllowPaging="True" AllowSorting="True"
AutoGenerateColumns="False" DataSourceID="SqlDataSource1" PageSize="36">
<PagerSettings Mode="NumericFirstLast" Position="TopAndBottom" />
<Columns>
<asp:BoundField DataField="ACCOUNT_REF" HeaderText="ACCOUNT_REF" SortExpression="ACCOUNT_REF" />
<asp:BoundField DataField="NAME" HeaderText="NAME" SortExpression="NAME" />
<asp:BoundField DataField="ADDRESS_1" HeaderText="ADDRESS_1" SortExpression="ADDRESS_1" />
<asp:BoundField DataField="ADDRESS_2" HeaderText="ADDRESS_2" SortExpression="ADDRESS_2" />
<asp:BoundField DataField="ADDRESS_3" HeaderText="ADDRESS_3" SortExpression="ADDRESS_3" />
<asp:BoundField DataField="ADDRESS_4" HeaderText="ADDRESS_4" SortExpression="ADDRESS_4" />
<asp:BoundField DataField="ADDRESS_5" HeaderText="ADDRESS_5" SortExpression="ADDRESS_5" />
</Columns>
<PagerStyle HorizontalAlign="Center" />
</asp:GridView>

<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:SageConnectionString %>"
ProviderName="<%$ ConnectionStrings:SageConnectionString.ProviderName %>"
SelectCommand="SELECT ACCOUNT_REF, NAME, ADDRESS_1, ADDRESS_2, ADDRESS_3, ADDRESS_4, ADDRESS_5 FROM SALES_LEDGER">
</asp:SqlDataSource>
 On my local machien this works great and I'm very happy with it
I then uploaded the site onto the server
on running the page i get this
 
ERROR [08001] Cannot find all files in data pathERROR [01000] The driver returned invalid (or failed to return) SQL_DRIVER_ODBC_VER: 2.00ERROR [IM006] [Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr failedERROR [01000] [Microsoft][ODBC Driver Manager] The driver doesn't support the version of ODBC behavior that the application requested (see SQLSetEnvAttr).
 
can anyone suggest a eresolution? i'm confused since it works on my local machine fine but not on the server

View Replies !
&"[MS Visual Database Tools] - Invalid Class String.&" Error
We recently upgraded our SQL Server 2000 to SP4 and are now getting the following error whenever we try to open up Site Diagrams.

An unexpected error happened during this operation. [MS Visual Database Tools] - Invalid class string.

This is very frustrating since I can't easily edit my database relationships or see my ER diagram.

Any ideas how to fix this?

Thanks

View Replies !
Connection String
how can I use server.mappath in an aspx page inside a sqldatasource tag
ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("users.mdb")
this works in aspx.vb page but not works in the aspx page
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("users.mdb")   this line causes error
ProviderName="System.Data.OleDb" SelectCommand="SELECT * FROM [track]">
</asp:SqlDataSource>

View Replies !
Connection String Help
  hello all
i use (RDB Relational Data Base)
and i need the correct connection string to use it in my asp project  Page_load
  i dont want to us dsn to connect to my database
 
this is my DSN info

View Replies !
Connection String Help
Hello all,
Please help me as i am not able to connect to my database
i have my databse in datab directory
and this is my connection string
<add name="Connstrmy" connectionString="my server ; AttachDbFilename=&quot;datadirectory est.mdf&quot;;uid=username; pwd=passowrd;"
providerName="System.Data.SqlClient" />
 
hosting people have said that you are using uid and password for databse and not of server
i have to add user id and password for server also
how do i do that?
is user id=uid
pwd=password?
please help me

View Replies !
Connection String In J#?
 hi all...i need the code for providing connection string in visual J#....am declaring the connection string globally in webconfig file using the key 'SqlCon' am integrate the connection in all my pages..in C# am using like this             string Strconnection1 = System.Configuration.ConfigurationSettings.AppSettings["SqlCon"];            SqlConnection Sql_con1 = new SqlConnection(Strconnection1);            Sql_con1.Open();  but in J# i dont know how to implement the connection....if anybody have an idea let me know quickly....thanks in advance.... 

View Replies !
Help With Connection String
Could someone help me with my connection string and how I should create it?
I have a Windows 2003 server running MS Sql 2005.  This is a separate server, meaning I'm developing my ASPX code on my laptop and FTP the code over to the server.   I'm not sure how to write my connection string.   Should My current connection string point to my locally hosted DB.  Now that I have my own server should I replace my current 'localhost' entry with the server's IP address?  Do I need to create a DNS on the server?  Sorry, I'm very new to all this and I'm lost.  Any help would be greatly appricated. 
 

View Replies !
Connection String Help
here is sample conenction string i want o use for my web site 
<add name="myconstr" connectionString="data source=//SQLEXPRESS; AttachDbFilename=&quot;data est.mdf&quot;;Trusted_connection=yes; uid=&quot;username&quot;; pwd=&quot;password&quot;; Integrated security=true;Connect Timeout=30;User Instance=True"
providerName="System.data.sqlclient" />
now i am getting this error
 
(provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)
please tell is my connection string wrong?
i have sahred hosting they say its coding problem.
and i guess
its may be becasue
 datasource as SQLEXPRESS
Please help me where I am wrong?
username and passowrd its the one provided by them
data folder i have created under wwwroot
wwwroot s my websites root folder
please help at your earliest as i am new and have no other source of help.
 
 
 

View Replies !
Connection String??
    Hi ,I m using this Connection string Data Source=Dev30/SQLExpress;Server=Dev30;Initial Catalog=Fran;Integrated Security=sspi; i get an error An error has occurred while establishing a connection to the server.  When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections i set the Surface area connection to TCP/IP browser satred..!! Still get this error !!Regards,Francis P.                

View Replies !
Connection String In VB
I have the following code:
' Dim connStr As String = System.Configuration.ConfigurationManager.AppSettings("AppDoc")
Rather than use the AppSettings within Configuration Manager, I just want to use the connection string.  I've seen examples of this in CS but none in VB.  Can someone point me in the right direction?
I thought it would be something like this but it doesn't work:
Dim connStr As SqlDataSource = New SqlDataSource(ConfigurationManager.ConnectionStrings["AppDoc"].ConnectionStrings)

View Replies !
Connection String
Hi , I've been searching for this answer for a few hours now but unfortunately I still can not sort it.
I'm attempting to make a "Database Driven Hierarchical Menu" from this tutorial http://aspalliance.com/822
It explains in the tutorial that you must change the connection string to point to your database and add user name and password. (i dont have a user name or password for my local server, or atleast I dont think I do!)
Below is my connection string:DataSet ds = new DataSet();
string connStr = "server=localhost;Trusted_Connection=true;database=Product.mdf";using (SqlConnection conn = new SqlConnection(connStr))
{string sql = "Select MenuID, Text, Description, ParentID from Menu";SqlDataAdapter da = new SqlDataAdapter(sql, conn);
da.Fill(ds);
da.Dispose();
 
Every time I try to run the page I get this error.
Cannot open database requested in login 'Product.mdf'. Login fails.Login failed for user '*****'
Can anyone see where I'm going wrong?  I'm quite new to all this so I apologies if this seems a bit stupid.
Many Thanks

View Replies !
Connection String
Can VWD generate it by itself? I have a MDF file and I need to get the connection string.

View Replies !
Connection String Help Please
I am using Dreamweaver 8 on Windows XP. I am trying to connect to SQL Server 2005. My connection string isn't right. I ran the OBDC test and it works so I know its the connection string. My webpages give me the error that the server does not exist or access denied. When I use anything else like SQLNCLI.1 for the provider it gives me the error that the provider is not found. What should the connection string consist of and what should I use for Provider?
MYCONN_Conn ="Provider= SQLOLEDB;Data Source=sql2005.loc.mss.edu;Integrated Security=SSPI;Initial Catalog=OPENAssessment;"
Thanks in advance.

View Replies !
SQL Dev And IIS Connection String
hi,
ok im not sure if this is in the right forum, so sorry if its not.
 basicly,
before i optained a licence for SQL Server 2005 Dev i was using SQL Server 2005 Express.
now in IIS iv found the following entery in Connect Strings
data source=.SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true
basicly, what i want to know is do i need this entery, and if so, do i need to edit it?
 thanks

View Replies !
Connection String
hi, i was just wondering what's wrong with my code. i have class library to handle all the classes of my asp.net project. when im compiling a class, i am getting an error "Error    1    The name 'ConfigurationManager' does not exist in the current context " . i have this code for that error message: string connStr = ConfigurationManager.ConnectionStrings["ConnString"].ConnectionString;  im not sure about this because im new in asp.net. am i missing a reference here?if yes, what namespace should i include? by the way, i tested this directly in my asp.net age and it is working fine. when i use visual c#.net, that's where the error prompts me, and i cant build that class library.

View Replies !
CONNECTION STRING
An error has occurred while establishing a connection to the server.  When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)
ive got this error and i think its about connection string, help please, can somebody show me how to fix this, obviously im a newbie and this my first time to use .net. thanks!
 

View Replies !
Connection String
my web site is in a host. my mssql db is in other host. how I write the connection string. Please help.

View Replies !
Connection String With Dsn
I want's to use following connection string
"dsn=MyDsn;uid=MyUser;pwd=MyPassword"
Can some how I use it with sqlconnection
I want's to get rid of odbconnection e.t.c
What will be the connection string for sql provider for above dsn information.
If anybody can explain the please help me ?

View Replies !
CONNECTION STRING
any1 know how to find/create a connection string to an SQL database ????

View Replies !
Connection String
I have made an app (the first one) and im trying to find the right connection string to the database. Im using sqlexpress on my local computer, and my host uses MSSQL, can anyone tell me what the connection string could

View Replies !
Connection String In ASP.NEt
Hi
 
I'm using  VB.NET in ASP.NET . 
 
Windows 2000
 
Visual Studio 2005
 
and SQLServer 2005.
 
I'm new to VS 2005
I'm using the following code for connection
<add key="dsnstring" value="persist Security info=False; User ID=; password=;Initial Catalog=TransMate1; Data Source=Localhost trusted_connection=yes" />
it is giving the error as 'Cann't do the connection since user id cann't be null
It is not exact words of the error message.
following code is working fine with the SQL Server 2003 but not with SQL Server 2005.
<add key="dsnstring" value="persist Security info=False; User ID=sa; password=dreams;Initial Catalog=TransMate; Data Source=Localhost" />
 
Kindly help me
 
Thanks in advance
 
Regards.
 

View Replies !
Please Help Me With The Connection String In Asp.net
Hi,
I need your help!!!!!!!!!!
Ii'm running the application using the sql SDK version , i'm having trouble openning the connection. my connection string is:
strConnect="data source=DEFAULT_WINXP\VSDOTNET;initial catalog=try1;integrated security=SSPI;persist security info=True;workstation id=DEFAULT_WINXP;packet size=4096";
and i get an exception: Exception Details: System.Data.SqlClient.SqlException: Login failed for user 'DEFAULT_WINXPASPNET'.
this is my code:
 
string strConnect;
SqlConnection objConnect;
SqlCommand objCommand;
SqlDataAdapter objDatatAdapter;
DataSet objDataSet;
strConnect="data source=DEFAULT_WINXP\VSDOTNET;initial catalog=try1;integrated security=SSPI;persist security info=True;workstation id=DEFAULT_WINXP;packet size=4096";
objConnect = new SqlConnection(strConnect);
objCommand=new SqlCommand();
objDatatAdapter = new SqlDataAdapter();
objDataSet=new DataSet();
objConnect.Open();
objCommand.Connection = objConnect;
objCommand.CommandType = CommandType.Text;
objDatatAdapter.SelectCommand = objCommand;
Exception Details: System.Data.SqlClient.SqlException: Login failed for user 'DEFAULT_WINXPASPNET'.Source Error:



Line 166:objDatatAdapter = new SqlDataAdapter();
Line 167:objDataSet=new DataSet();
Line 168:objConnect.Open();
Line 169:objCommand.Connection = objConnect;
Line 170:objCommand

View Replies !
My Connection String
I have a key added in my web.config for my project as the following:
workstation id=DW1DT011;packetsize=4096;user id=performance;data source=DWESR004;persist security info=True;initial catalog=Performance;password=nippert;Max Pool Size= 300;Connection Lifetime = 5"How did I set up the user id and password for the DB? I totally cannot figure it out b/c I thought I drug a connection from server explorere and copied but I guess I didn't.  Below is my string I got now, how can I tell if there is a user id and password for the DB also?The only thing I can find is the users node in the enterprise manager but it has nothing about a password.workstation id=DW1DT011;packet size=4096;integrated security=SSPI;data source=DWESR004;persist security info=False;initial catalog=VacationRequest

View Replies !
Connection String In Vb.net
Hi guys,
I'm a newbie with .net and web development. I'm trying to create a web application using vb.net. I have SQL Server 2000 on my machine. And i connect to it without any username and password. When i tried to insert data into the database using the web application i had to first create a conenction string. So, my connection string is.......
Dim strConnection As String = _
"Data Source=localhost;Initial Catalog=Northwind;" _
& "Integrated Security=true;"
And i get the error.......
Login falied for the user.
Could someone tell me what i did wrong?? I need to get this done by tomorrow and any help would be greatly appreciated.
Thanks,Vasantha.

View Replies !
Connection String
Hi,

I am trying again and again to creat a connection string and can't access the DB.

I get different errors and this is the last one:

System.ArgumentException: Keyword not supported: 'provider'.

Line 9: Dim connString as string ="Provider=SQLOLEDB; Data Source=localhost; Initial Catalog=AdultBiggest; User ID=Erez; Password=erezlevi;"
Line 10: Dim myConnection As New SqlConnection(connString)


The full test code is very simple and as the following:

<%@ Page Language="VB" Debug="true" %>
<%@ import Namespace="system.Data" %>
<%@ import Namespace="system.Data.sqlClient" %>

<Script runat="server">
sub Page_Load(Sender as object, e as eventArgs)


Dim connString as string ="Provider=SQLOLEDB; Data Source=localhost; Initial Catalog=AdultBiggest; User ID=Erez; Password=xxxxxx;"
Dim myConnection As New SqlConnection(connString)
myConnection.Open()
myConnection.close()

end sub
</Script>

<HTML><BODY>

</HTML></BODY>

what do I do wrong???

Thanks for your help!!

View Replies !

Copyright © 2005-08 www.BigResource.com, All rights reserved