Connect Exchange 2000 Server To SQL 2000

Feb 25, 2004

I need to populate a Public Contacts Folder on an Exchange Server with data in a SQL 2000 Table. What would be the best way to do this?

Thanks

View 1 Replies


ADVERTISEMENT

Getting An Email (Exchange 2000) Message Into SQL Server 2000

May 9, 2002

I have a public mailbox that gets information mailed to it (in a pre-determined format).

Is there a way for that info to be put into a table in SQL Server without any user interaction (something running on the exchange server)?

I hope I've given enough info.

Thanks for any and all help!

Ron

View 1 Replies View Related

Problem With SQL2000 And Exchange 2000

Nov 4, 2002

We have a SQL 2000 server that resides at a client. THey recently upgraded their exchange 5.5 server to 2000. I do not believe they are using Active Directory. However, our SQL Server can no longer send email. If we test it we get the error message "Error 22022 : SQL Agent error, you do not have permissions to perform this operation on this object" I found the below url to a MS error
http://support.microsoft.com/default.aspx?scid=KB;EN-US;q293422&
but ut seems to relate to someone using Active Directory. However this problem did start as soon as they upgraded to Exchange 2000. Has anyone else encountered this?

View 1 Replies View Related

Problems With SQL 2000 And 2005 On Same Machine - Can't Connect On 2000

Mar 13, 2006

Hi,i have SQL 2000 and 2005 on same machine(with different intance names,of course), my laptop - XP with SP2. The 2005 works fine but i can'tconnect on SQL 2000. All the the SQL services are started.Any idea? Have i to reinstall 2000?Tks,Lourival

View 1 Replies View Related

How To Connect To Sql Server 2000 (asp.net)

Aug 17, 2006

hi everybody, i got this error in my code.

Server Error in '/' Application.







SQL Server does not exist or access denied.

Source Error:



 Line 12:         Dim SQLConn As SqlConnection = New SqlConnection()Line 13:                  SQLConn.ConnectionString = ConfigurationSettings.AppSettings("ConnectionString")Line 14:                  SQLConn.Open()Line 15:         Line 16:         cmdLath = New SqlCommand ( _



my web.config

<configuration>

 <appSettings>

  <add
key="ConnectionString" value="Data
Source=xxx;UID=xxx;pwd=xxx" />

  <add
key="ConnectionString" value="Server=xxx.xxx.x.x;database=xxx;UID=xxx;pwd=xxx;Trusted_Connection=True"
/>

 </appSettings>

  <system.web>

        
<sessionState cookieless="false" timeout="20"
/>

  <customErrors
mode="Off"/>

 </system.web>

</configuration>



what seems to be a problem, please help me??????

View 6 Replies View Related

How To Connect To Sql Server 2000???????

Feb 25, 2008

hi            i have sql server 2000 installed on my domain server machine.  Now i want to connect to that instance from another client machine.thanx in advance 

View 3 Replies View Related

Can't Connect To Sql Server 2000 From Asp.net

May 12, 2006

I installed sql server 2000 on a remote server.  I can connect to
it from the client with query analyzer, but I cannot connect to it from
ASP.NET.  I'm using Sql authentication, and the account has every
permission under the sun.  I can also connect to it from the
server explorer in visual studio.net.  I turned off the
firewall.  I tried connecting with the same asp.net code from a
different computer and still no luck.  I've triple-double-checked
the connectionstring.  It's the same credentials I'm using for
query analyzer and server explorer, which both work fine.  Any
troubleshooting tips would be GREATLY appreciated. 

Thank you.

View 2 Replies View Related

Can't Connect To SQL Server 2000

Aug 13, 2004

I can't connect my jsp file to SQL Server 2000. Below is my code and the error result that i got.. Please help me to solve it..I have installed the driver and write them in the classpath..

<%@page import="java.sql.*"%>
<%
Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
try {
// Open Database connection
Connection con = DriverManager.getConnection("jdbc:microsoft:sqlserver://sansan:1433;databasename= coffeepassion","sa","sa");

// Query Database (all queries use the same connection)
String sql = "SELECT EmpID, EmpPassword FROM EmpLogin";
Statement stmt = con.createStatement();
ResultSet rs = stmt.executeQuery("sql");

// Print header and each record returned
out.println("List of items in the database:");
while(rs.next())
out.println(rs.getString("EmpID") + " " +rs.getString("EmpPassword"));
// Finished using the database instances
rs.close();
stmt.close();
con.close();
}

catch (Exception e) {
out.println(e.toString()); // Error message to display
}
%>


Error Result:

java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Cannot open database requested in login ' coffeepassion'. Login fails.

View 2 Replies View Related

Can't Connect To SQL Server 2000.....

Jan 26, 2006

I have SQL server 2000 installed on machine A and when I try to connect using machine B, I get the error message:

A connection could not be established to "servername"

Reson: Timeout expired.

I have been able to connect to the machine in the past and this morning, the server was rebooted and now I can't connect. I can see the server using enterprise manager and I can start and stop machine A from B, but I just can't connect. Any ideas?

Thanks

View 1 Replies View Related

How Connect SQL Server 2000 With C#.net .....?

Jan 26, 2006

Hello masters,

help me yaar

i am using dotnet 2003 and SqL SERVER 2000. BUT UNABLE TO CONNECT DATABASE using dataAdaptor(design time ) or sqlconnection any can help me

gs

View 31 Replies View Related

How To Connect SQL Server 2000?

Dec 8, 2006

i want to connect SQL Server 2000 with remotely how it will work?



i have a sql server data base on server(domain) in xyz company, they give me following information:

database name
server IP address
database user name
database password

i can connect the same database using networking internet (proxy)

connect internet connection
start proxy connection
i am using a pc from network which is useing proxy for internet.
i open query analyzer
enter IP address, user name and password (which is currect)
though i can't connect sql server
else i can connect the same server which PC is using own internet connection not form network

i want to know that

how can we connect SQL Server using internet connection form network (proxy server)?
where is to enter networ pc IP address?
where is to enter port number?

View 3 Replies View Related

ASP.NET 2.0 Can't Connect To Aspnetdb On SQL Server 2000

Apr 28, 2007

Running ASP.NET 2.0 on a Windows SBS2000 with IIS5 and SQLServer 2000 on the same box.
Trying to use membership controls to authenticate.
Installed aspnetdb on the server using aspnet_regsql.exe
Ran an ASPX page with the asp:CreateUserWizard control.
The "create user" button returns the following error:
     A user instance was requested in the connection string but the server specified does not support this option
I appears that the connection string I am using is wrong.(See below for web.config entries)
I have tried:
"data source=RGMILLSITES;Integrated Security=True;database=aspnetdb;User Instance=True""data source=RGMILLSITES;Integrated Security=True;database=aspnetdb;User Instance=False""data source=RGMILLSITES;Integrated Security=True;database=aspnetdb""data source=RGMILLSITES;Integrated Security=True;Initial Catalog=aspnetdb;User Instance=False""data source=RGMILLSITES;Integrated Security=True;Initial Catalog=aspnetdb"
I have renamed LocalSqlServer to LocalSqlServerASPNETDB to ensure that a global configuration is not used.
I tried to rename the server in the connection string and got the same error"data source=RGMILLSITES00;Integrated Security=True;Initial Catalog=aspnetdb"
I've checked the Machine.config and web.config in the C:WINNTMicrosoft.NETFrameworkv2.0.50727CONFIG folderNeither have the LocalSqlServerASPNETDB configuration listed. 
So now I'm thinking there is a cashing isssue. I've tried to restart the site and got the same result.
Any thoughts would be appreciated.
RobGMiller
 
The web.config file contains the following related skeema.
<connectionStrings>  <add name="LocalSqlServerASPNETDB"        connectionString="data source=RGMILLSITES;Integrated Security=True;Initial Catalog=aspnetdb;User Instance=False"       ProviderName="System.Data.SqlClient" /></connectionStrings>
<roleManager enabled="true" defaultProvider="CustomizedRoleProvider">   <providers>      <add name="CustomizedRoleProvider"   type="System.Web.Security.SqlRoleProvider"   connectionStringName="LocalSqlServerASPNETDB" />   </providers></roleManager>
<membership defaultProvider="CustomizedProvider">   <providers>      <add name="CustomizedProvider"    type="System.Web.Security.SqlMembershipProvider"   connectionStringName="LocalSqlServerASPNETDB"   applicationName="/"          minRequiredPasswordLength="5"   minRequiredNonalphanumericCharacters="0"/>   </providers></membership>
 
 

View 2 Replies View Related

Connect To ASP.NETWebAdminFiles On A Sql Server 2000

Mar 5, 2008

Hi,I want to install an asp.net app on a sql server 2000.I've created a virtual Directory which points to the folder C:WINDOWSMicrosoft.NETFrameworkv2.0.50727ASP.NETWebAdminFiles.I've installed my website under InetpubwwwrootIn Web.config I changed the Connection String to point to my local server  <connectionStrings>    <remove name="LocalSqlServer" />    <add name="LocalSqlServer" connectionString="Data Source=localhost;Initial Catalog=MY_DB;Integrated Security=True;User ID=sa;Password=sa"      providerName="System.Data.SqlClient" />  </connectionStrings> I'm connecting to: http://localhost/ASP.NETWebAdminFiles/default.aspx?applicationPhysicalPath=XXX&applicationUrl=/YYY and I seeWelcome to the Web Site Administration Tool Application:/MyAppCurrent User Name:ComputerNameLoggedUserIf I click the Security Link, I get the following error:The following message may help in diagnosing the problem: Cannot open database requested in login 'MY_DB'. Login fails. Login failed for user 'MACHINE_NAMEASPNET'.  What I missed to configure  in order to be able to create Users and Roles in the security app? Thanks  

View 1 Replies View Related

Connect To SQL Server 2000 Through An ASP.NET Web Application

Apr 30, 2005

Hi!I am going to connect to "SQL Server 2000" through an "ASP.NET Web Application". My development environment is "Visual Studio .NET 2003". In my "Toolbox" -> "Data", I drag a "SqlConnection" and drop on the page. It would automatically be named "SqlConnection1". In its "Properties" -> "ConnectionString" -> "<New Connection...>", I would enter my Server Name (SAMIEI), select "Use Windows NT Integrated Security" and Select the Database on the Server (Northwind). Then such Connection String would automatically be generated:
"workstation id=SAMIEI;packet size=4096;integrated security=SSPI;data source=SAMIEI;persist security info=False;initial catalog=Northwind"
Now, I may see "SAMIEI.Northwind.dbo" in the "Data Connections" row of "Server Explorer" with its all "Database Diagrams", "Tables", "Views", "Stored Procedures" and "Functions".Please take a look at the following code:
    Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Try            SqlConnection1.Open()        Catch ex As SqlException            Response.Write(ex.Message)        End Try
    End Sub
It would unexceptedly encounter such error:
"Login failed for user 'NT AUTHORITYNETWORK SERVICE'"
Please tell me the reason. I am much obliged to you for your attention.
Regards!M.Sadegh Samiei

View 2 Replies View Related

Connect To Sql Server 2000 Via Internet

Jul 25, 2005

I'm Building a windows application which updates an internet site's database.Is it possible to connect directly to the sql server through the internet?If so is it the most efficient way ? perhaps a web service or streaming is a better solution?Thanks.

View 1 Replies View Related

Linking SQL Server 2000 To DB2 Connect 8.x

Jul 23, 2005

I need to connect SQL Server 2000 to DB2 on z/OS through DB2 Connect 8.I can successfully connect and query data through a System DSN, buttrying to link the server using this DSN and MSDASQL fails (can't seemto find the DB2 Connect server). I've also tried IBM's OLE/DB driver(IBMDADB2).Has anyone successfully linked to DB2 on a mainframe through DB2Connect 8.x via either ODBC or OLE/DB drivers?

View 3 Replies View Related

Cannot Connect To A New Installed SQL Server 2000

Mar 1, 2006

I have installed an SQL Server 2000 Developer Edition (SP4) on acomputer that has Windows Server 2003 on it.The server is connected tothe workgroup "WORK" and has no Active Directory. Now I cannot connectto that database server from other computers in the network. On theserver itself, I can registrate the instance from the own SQL Server2000 and also an instance from an other SQL Server 2000 installation ona Windows 2000 Server in the network.The network consists of a Windows 2000 Server (with a SQL Server 2000installation), some workstations (W2000 Pro, Win XP Pro) and the newinstalled Windows Server 2003.When I try to connect to that new database Server with Query Analyzerfrom an other computer I get allways the message box with the text like"...SQL Server doesnt exist or access denied. ConnectionOpen(Connect())..."Many thanks for help.bitchanger

View 1 Replies View Related

Connect To SQL Server 2000 With VB.NET For Beginners

Sep 4, 2006

I just started to learn Visual Basic 2005.NET. I have experience with VBA in Access and SQL Server.
I
now want to build applications (client/server) with VB & SQL
Server. Does anyone have a simple example with which I can start
learning?

Thank you in advance!

View 4 Replies View Related

Stopped Sql Server 2000 Cannot Connect

Feb 7, 2008



I just stopped sql server 2000.
Right click server->stop

and closed...when i am trying to connect the server i have a message saying cannot connect.

How to get that back running

thanks

View 7 Replies View Related

Why I Can't Connect Sql Server 2000 With Wm5 Or Emulator ?

Feb 26, 2006



Why I can't connect sql server 2000 with wm5 or emulator ?

I used windows server 2003, sql server 2000 Enterprie SP4, visual studio 2005.

My this code can connect to sql server with win application (.net framework 2.0) but can't connect to sql server with device application (.net compact framework).

Dim strcon As New SqlConnection("Data Source=192.168.0.3;Initial Catalog=nortwind;User ID=sa")

Try

strcon.Open()

Dim sqlcom As New SqlCommand("select * from products", strcon)

Dim s As String = sqlcom.ExecuteScalar.ToString

Catch ex As Exception

MessageBox.Show(ex.Message.ToString, "")

Finally

strcon.Close()

End Try

Question

1. How to tip for setup and config windows server 2003 and sql server 2000 can connect with device?

2. What's IP of device in running ?

View 23 Replies View Related

How To Set Client Machine Name When Using ADO To Connect To SQL Server 2000?

May 15, 2007

When you connect to SQL Server using SQLConnection, how to set client machine name(or IP address) so that you can monitor the process on Server side using Enterprise Manager?

View 2 Replies View Related

Urgent, Dot Net 2005 Cannot Connect To SQL Server 2000

Oct 19, 2007

I am using VS .net 2005 to  develop a web application with sql server 2000, but the SQL servrer 2000 is setup on other computer,so, my web server is setup on A machine and SQL servr is setup on B machine.I got a problem when i try to connect to SQL server through the Web form as following 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: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)"
I had try to  setup the MDAC 2.8 on my Web Server, but i got a setup error sth like "MDAC 2.8 cannot install on your machine because it is not support your windows version.........."
Why i can't connect to SQL 2000 through the Web server??? 
It is a urgent case, Please help thx a lot.

View 3 Replies View Related

Visual Basic 6.0 Connect To SQL Server 2000

Jul 20, 2005

We have forms written in Visual Basic 6.0. They were previouslywritten for an Access database which was moved to SQL Server 2000.Here's the connect string I used:ODBC;UID=visualbasic;PWD=password;SERVER=MPSQL;DRI VER={SQLSERVER};DATABASE=MPPhotoThe user visualbasic and the user logged in to the computer have fullrights to the database.When they open the form which is based on a view it is opened as readonly with an error 3027. The data control is not set to read only.The database file is not read only. All of the permissions are set toallow this user read, write and modify.Can anyone hep me?

View 3 Replies View Related

Can Not Remotely Connect To Instance Of Sql Server 2000

Aug 10, 2006

I had a big problem on connecting sqlserver remotely from other machines on the network .....

From any computer in the network i wanna to register the instance of the sqlserver from the enterprise manager ..... the server instance doesn't appear within the available sqlserver list (the servername which equal to my machine is the only one that appear) ..... when i manualy write the servernamealias manually and i choose the connection type and then i write sqlserver username and password and then finish he give a message to me that access denied or sql server doesn't exist ... !!

by the way from the local machine i registered the local instance of sqlserver successfully and successfully i access the Databases .....

To be noted:

I previously uninstalled this alias and i then i reinstalled it again with the same name and i attached the previously exists Databes.

in the same time i installed on the same machine sqlserver 2005 connectivity clients not the server itself.

View 5 Replies View Related

Cannot Connect To 2000 From 2005 Via Linked Server

Dec 29, 2006

Interesting issue.. I think

I have 2 linked servers on my dev 2005 instance (sp1-win 2003). My 2005 instance shares the physical server with a 2000 instance. This linked server works fine. The second linked server is on a separate server running sql 2000 sp3. I cannot connect to this server at all. I can connect the other way -- from the 2000 to the 2005. I have tried all kinds of combinations of security and options but nothing works. The only resolutions I have found referenced installing Management Studio on the 2000 server or creating an ODBC connection from the 2005 instance. Any ideas???

Here is the error I get:

OLE DB provider "SQLNCLI" for linked server "ALLFLDB6" returned message "Login timeout expired".

OLE DB provider "SQLNCLI" for linked server "ALLFLDB6" returned 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 the default settings SQL Server does not allow remote connections.".

Msg 10061, Level 16, State 1, Line 0

TCP Provider: No connection could be made because the target machine actively refused it.

View 4 Replies View Related

Unable To Connect Sql Server 2000 With SqlClient Provider

Jan 19, 2007

Hi,
I am using VS2005 and Sql Server 2000 (personal edition). I am able to connect with SqlClient Provider on Local Machine (when db server and VS2005 on same machine). But I try to connect SqlServer on different machine it is not allowing me to connect. If I use SqlOledb Provider it got connected. 
Please tell me how could I connect with DB server (Sql Server 2000) from remote machine.
 
 

View 4 Replies View Related

Can I Use SQL 2005 Management Studio To Connect To SQL 2000 Server?

Oct 12, 2007

Hi,Can I use SQL 2005 Management studio to connect to SQL 2000 server? 

View 1 Replies View Related

Connect To SQL Server 2000 From Command Line Interface

Jan 29, 2004

Hi,
I need to implement command line interface to SQL Server 2000 ...
I have no idea from where to begin... What programming environment? What language? From where and how to connect to db? I'll be glad to accept any ideas.
Thank you

View 4 Replies View Related

ODBC Connect From MS Access To SQL Server 2000-Viable?

Jul 20, 2005

How viable is it to use MS Access as a front end (via ODBC) to a SQL Server2000 database?The users would access via the internet using a netgear vpn setup.Thanks,Paul S

View 1 Replies View Related

Can't Connect To SQL Sever 2005 After Upgrading From SQL Server 2000

Sep 6, 2006

I recently upgraded from SQL Server 2000 to SQL Server 2005. I have Oracle databases I need to share data with. I was using the Heterogeneous Services (hsodbc) from Oracle and connected to SS 2000 fine. Since I've upgraded, I can't use hsodbc to connect to my SS 2005 database. I get the following error:

ORACLE GENERIC GATEWAY Log File Started at 2006-09-06T09:40:07

hoainit (3): ; hoainit Exited with retcode = 0.

hoalgon (7): ; hoalgon Entered. name = edw.

DB_ODBC_INTERFACE (2085): ; [Microsoft][SQL Native Client][SQL Server]Login

failed for user 'edw'. (SQL State: 28000; SQL Code: 18456)

DRV_InitTdp: DB_ODBC_INTERFACE (2085): ; [Microsoft][SQL Native Client][SQL

Server]Login failed for user 'edw'. (SQL State: 28000; SQL Code: 18456)

nvRETURN (F:WorkConnect_4_6_3srcdrvDRV_BIND.C 356): -2220

nvRETURN (F:WorkConnect_4_6_3srcavNAV_BIND.C 293): -2220

hoalgon (7): ; hoalgon Exited with retcode = 28500.

View 6 Replies View Related

Cant Connect To Sql 2000 From Client With All Field Available I.e Server Ip And Port

Apr 25, 2007

cant connect to sql server 2000 from c# 2003

View 1 Replies View Related

It I Spossible To Connect To SQL Server 2005 Using SQL 2000 Client?

Jan 1, 2008



dear all,
in order to install a program i need to connect through SQL 2000 client to SQLserver2005.
it is possible?

View 8 Replies View Related

Question About Connect To The Sql Server 2000 Installed On Windows Xp Sp2

Aug 31, 2006

Hi

I have another question now.

As the topic said, my sql server 2000 installed on windows xp sp2, the computer's name is "ADMIN" and the server 2000's name is "ADMIN".

When i startup the sql server 2000, it just listening on shared memory and name pipes, not including the "TCP/IP" . So i can not connect to the sql server using the port 1433.

Some people said that the reason was the system's firewall. I also found some supports on the websites 'www.support.microsoft.com'. It said that you can set the port 1433 or the sqlservr.exe to the execption. I also do that, but still not works.

Is there any things i forget and how can i solve the problems! Thanks for advances.

View 11 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved