Showing posts with label local. Show all posts
Showing posts with label local. Show all posts

Wednesday, March 21, 2012

Error on inserting record on remote server

Hi,
I get this error when i insert a record from my local server to a
remote server.
Server: Msg 7391, Level 16, State 1, Procedure usp_insSO2NavAppV2, Line
14
The operation could not be performed because the OLE DB provider
'SQLOLEDB' was unable to begin a distributed transaction.
[OLE/DB provider returned message: New transaction cannot enlist in the
specified transaction coordinator. ]
OLE DB error trace [OLE/DB Provider 'SQLOLEDB'
ITransactionJoin::JoinTransaction returned 0x8004d00a].
pls help me
from
Doller
MSDTC might not be started on one of the servers
Dandy Weyn
[MCSE-MCSA-MCDBA-MCDST-MCT]
http://www.dandyman.net
Check my SQL Server Resource Pages at http://www.dandyman.net/sql
"doller" <sufianarif@.gmail.com> wrote in message
news:1127785678.067089.75530@.o13g2000cwo.googlegro ups.com...
> Hi,
> I get this error when i insert a record from my local server to a
> remote server.
>
> Server: Msg 7391, Level 16, State 1, Procedure usp_insSO2NavAppV2, Line
> 14
> The operation could not be performed because the OLE DB provider
> 'SQLOLEDB' was unable to begin a distributed transaction.
> [OLE/DB provider returned message: New transaction cannot enlist in the
> specified transaction coordinator. ]
> OLE DB error trace [OLE/DB Provider 'SQLOLEDB'
> ITransactionJoin::JoinTransaction returned 0x8004d00a].
>
> pls help me
> from
> Doller
>

Error on inserting record on remote server

Hi,
I get this error when i insert a record from my local server to a
remote server.
Server: Msg 7391, Level 16, State 1, Procedure usp_insSO2NavAppV2, Line
14
The operation could not be performed because the OLE DB provider
'SQLOLEDB' was unable to begin a distributed transaction.
[OLE/DB provider returned message: New transaction cannot enlist in the
specified transaction coordinator. ]
OLE DB error trace [OLE/DB Provider 'SQLOLEDB'
ITransactionJoin::JoinTransaction returned 0x8004d00a].
pls help me
from
DollerMSDTC might not be started on one of the servers
Dandy Weyn
[MCSE-MCSA-MCDBA-MCDST-MCT]
http://www.dandyman.net
Check my SQL Server Resource Pages at http://www.dandyman.net/sql
"doller" <sufianarif@.gmail.com> wrote in message
news:1127785678.067089.75530@.o13g2000cwo.googlegroups.com...
> Hi,
> I get this error when i insert a record from my local server to a
> remote server.
>
> Server: Msg 7391, Level 16, State 1, Procedure usp_insSO2NavAppV2, Line
> 14
> The operation could not be performed because the OLE DB provider
> 'SQLOLEDB' was unable to begin a distributed transaction.
> [OLE/DB provider returned message: New transaction cannot enlist in th
e
> specified transaction coordinator. ]
> OLE DB error trace [OLE/DB Provider 'SQLOLEDB'
> ITransactionJoin::JoinTransaction returned 0x8004d00a].
>
> pls help me
> from
> Doller
>

Error on Executing SSIS packages on a remote machine using code

Hello all,

I am trying to execute the ssis packages using code.These packages are hosted on remote server under MSDB in local Network.

Below is the code tried to Execute
--

DTSExecResult execRslt = _dtsxPackage.Execute();

foreach (DtsError dtserr in _dtsxPackage.Errors)
{
Console.WriteLine("Source: " + dtserr.Source + ", Description: " + dtserr.Description);
}


I get hte following Error
--

"Dupaco Load MMAs"-"An OLE DB error has occurred. Error code: 0x80004005.\r\nAn OLE DB record is available. Source: \"Microsoft OLE DB Provider for SQL Server\" Hresult: 0x80004005 Description: \"[DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied.\".\r\n"

"Data Flow Task" -"The AcquireConnection method call to the connection manager \"Dupaco\" failed with error code 0xC0202009.\r\n"

"Data Flow Task" -"component \"OLE DB Destination\" (119) failed validation and returned error code 0xC020801C.\r\n"

"One or more component failed validation.\r\n"

"There were errors during task validation.\r\n"

When i try to execute the same code on the server where all the package are hosted. It is working fine.

More Info:

In thepackage we are using one "Source Flat file connection" and one "Oledb Destination connection"

Please help me to solve this problem, as my client needs it very badly


Thanks
Subin

Subin wrote:

"Dupaco Load MMAs"-"An OLE DB error has occurred. Error code: 0x80004005.\r\nAn OLE DB record is available. Source: \"Microsoft OLE DB Provider for SQL Server\" Hresult: 0x80004005 Description: \"[DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied.\".\r\n"

The problem appears to be that whatever address or alias was used to create the OLE DB connection can't be resolved from where the package is executing. Maybe it was set up using (local) or something. Maybe the server doesn't allow TCP/IP connections (the default for SQL Server 2005).
|||

Hi Jay,

Earlier We were using sql server name now we have changes that to IP address,

we have saved the password in the "Oledb Destination connection" by checking in the checkbox to save the password.

now we are getting the following Error

"An OLE DB error has occurred. Error code: 0x80040E4D.\r\nAn OLE DB record is available. Source: \"Microsoft OLE DB Provider for SQL Server\" Hresult: 0x80040E4D Description: \"Login failed for user 'sa'.\".\r\n"

|||

Subin wrote:

"An OLE DB error has occurred. Error code: 0x80040E4D.\r\nAn OLE DB record is available. Source: \"Microsoft OLE DB Provider for SQL Server\" Hresult: 0x80040E4D Description: \"Login failed for user 'sa'.\".\r\n"

I've already answered that one today, so all you get is a link.

See if this helps.

http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1453667&SiteID=1
|||

Subin wrote:

"An OLE DB error has occurred. Error code: 0x80040E4D.\r\nAn OLE DB record is available. Source: \"Microsoft OLE DB Provider for SQL Server\" Hresult: 0x80040E4D Description: \"Login failed for user 'sa'.\".\r\n"

Are you intending to be logging in as the user 'sa'?|||

Subin wrote:

Hello all,

I am trying to execute the ssis packages using code.These packages are hosted on remote server under MSDB in local Network.

...

To clarify possible confusion: you are not executing the package on a remote machine (as the title of your question suggests).

You are loading package from a remote machine and running it locally (where your application runs).

http://blogs.msdn.com/michen/archive/2006/08/11/package-exec-location.aspx

Michael.

|||

Hello Michael,

You are absolutely correct. Sorry for confusion.

I am not executing the package on a remote machine (as the title of question suggests),loading package from a remote machine and running it locally (where my application runs).

Thanks

Subin

|||

Hello All,

Thank you all for help.

I have solved the problem.

The package which i had tried to execute was a password protected package and I was not setting the PackagePassword property of Application class before loading package from remote machine. So that the loaded package does not have sensitive information. That was the problem.

Application app = new Application();

app.PackagePassword = "test";

Package package = app.LoadFromSqlServer(@."PackTest", "Circle-DotNet57", "ssisdeveloper", "circle_123", null);

//package.ProtectionLevel = DTSProtectionLevel.EncryptSensitiveWithPassword;

//package.PackagePassword = "test";

DTSExecResult result = package.Execute();

Thank you

Subin

Error on Executing SSIS packages on a remote machine using code

Hello all,

I am trying to execute the ssis packages using code.These packages are hosted on remote server under MSDB in local Network.

Below is the code tried to Execute
--

DTSExecResult execRslt = _dtsxPackage.Execute();

foreach (DtsError dtserr in _dtsxPackage.Errors)
{
Console.WriteLine("Source: " + dtserr.Source + ", Description: " + dtserr.Description);
}


I get hte following Error
--

"Dupaco Load MMAs"-"An OLE DB error has occurred. Error code: 0x80004005.\r\nAn OLE DB record is available. Source: \"Microsoft OLE DB Provider for SQL Server\" Hresult: 0x80004005 Description: \"[DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied.\".\r\n"

"Data Flow Task" -"The AcquireConnection method call to the connection manager \"Dupaco\" failed with error code 0xC0202009.\r\n"

"Data Flow Task" -"component \"OLE DB Destination\" (119) failed validation and returned error code 0xC020801C.\r\n"

"One or more component failed validation.\r\n"

"There were errors during task validation.\r\n"

When i try to execute the same code on the server where all the package are hosted. It is working fine.

More Info:

In thepackage we are using one "Source Flat file connection" and one "Oledb Destination connection"

Please help me to solve this problem, as my client needs it very badly


Thanks
Subin

Subin wrote:

"Dupaco Load MMAs"-"An OLE DB error has occurred. Error code: 0x80004005.\r\nAn OLE DB record is available. Source: \"Microsoft OLE DB Provider for SQL Server\" Hresult: 0x80004005 Description: \"[DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied.\".\r\n"

The problem appears to be that whatever address or alias was used to create the OLE DB connection can't be resolved from where the package is executing. Maybe it was set up using (local) or something. Maybe the server doesn't allow TCP/IP connections (the default for SQL Server 2005).
|||

Hi Jay,

Earlier We were using sql server name now we have changes that to IP address,

we have saved the password in the "Oledb Destination connection" by checking in the checkbox to save the password.

now we are getting the following Error

"An OLE DB error has occurred. Error code: 0x80040E4D.\r\nAn OLE DB record is available. Source: \"Microsoft OLE DB Provider for SQL Server\" Hresult: 0x80040E4D Description: \"Login failed for user 'sa'.\".\r\n"

|||

Subin wrote:

"An OLE DB error has occurred. Error code: 0x80040E4D.\r\nAn OLE DB record is available. Source: \"Microsoft OLE DB Provider for SQL Server\" Hresult: 0x80040E4D Description: \"Login failed for user 'sa'.\".\r\n"

I've already answered that one today, so all you get is a link.

See if this helps.

http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1453667&SiteID=1
|||

Subin wrote:

"An OLE DB error has occurred. Error code: 0x80040E4D.\r\nAn OLE DB record is available. Source: \"Microsoft OLE DB Provider for SQL Server\" Hresult: 0x80040E4D Description: \"Login failed for user 'sa'.\".\r\n"

Are you intending to be logging in as the user 'sa'?|||

Subin wrote:

Hello all,

I am trying to execute the ssis packages using code.These packages are hosted on remote server under MSDB in local Network.

...

To clarify possible confusion: you are not executing the package on a remote machine (as the title of your question suggests).

You are loading package from a remote machine and running it locally (where your application runs).

http://blogs.msdn.com/michen/archive/2006/08/11/package-exec-location.aspx

Michael.

|||

Hello Michael,

You are absolutely correct. Sorry for confusion.

I am not executing the package on a remote machine (as the title of question suggests),loading package from a remote machine and running it locally (where my application runs).

Thanks

Subin

|||

Hello All,

Thank you all for help.

I have solved the problem.

The package which i had tried to execute was a password protected package and I was not setting the PackagePassword property of Application class before loading package from remote machine. So that the loaded package does not have sensitive information. That was the problem.

Application app = new Application();

app.PackagePassword = "test";

Package package = app.LoadFromSqlServer(@."PackTest", "Circle-DotNet57", "ssisdeveloper", "circle_123", null);

//package.ProtectionLevel = DTSProtectionLevel.EncryptSensitiveWithPassword;

//package.PackagePassword = "test";

DTSExecResult result = package.Execute();

Thank you

Subin

Monday, March 12, 2012

Error on (local)

An error occurred in the system, and last operation may not have completed: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)

The above error I get when I like to connect to a db for a wiki. It's on localhost and everything I found on the internet I tried. Remote connections are not relevant because it's local. Have I something forgotten?? SQL Server 2005, Asp.net 2.0

RoelAlblas:

Remote connections are not relevant because it's local. Have I something forgotten?? SQL Server 2005, Asp.net 2.0

Even on local, sometimes your website will use still use remote connection to connect to local SQL Server (for example websites deployed under IIS), so please do make sure you have enabled remote connection for the SQL instance.

Error occurred during rendering of the report. Stack Empty.

I have developed a report in SSRS 2005. When I try to export the output to Excel, it shows an error saying:

Error occurred during local report processing.

Error occurred during rendering of the report. Stack Empty.

Do anyone have any idea what this means and how to fix it?

I can render the report in other formats (Adobe, csv etc) without any problem. My other reports, under same project and using same dataset, are working fine.

Thanks in Advance.

Have you checked your log files for errors?

C:\Program Files\Microsoft SQL Server\MSSQL.2\Reporting Services\LogFiles

You may need to crank up the level of tracing to get anything interesting:

http://technet.microsoft.com/en-us/library/ms156500.aspx

Does the report render in Excel for a different dataset? Try faking a dataset using something like:

SELECT 1 AS Age, 'M' AS Sex

UNION

SELECT 7 AS Age, 'F' AS Sex

and see if you render correctly. Make sure you have 'alligned your edges' to reduce the complexity of the resulting Excel. If you want to (are willing/able to) send me your RDL, I will take a look and post the results of my analysis back here.

Friday, March 9, 2012

Error Msg 8120

Hello all,

I am using SQL Server 2005 Express on my local machine and am having a hard time figuring out why this problem is occuring. I am creating a stored procedure just fyi. 8120 = Column 's.Spread' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause. And also...Column 's.Pay End Dt' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause.

Both of these fields are being used in an expression not actually pulled into the query. I have bolded the line that the error refers to...Here is the sql:

USE ForecastSQLDBA
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

CREATE PROCEDURE GetHistoricalData
@.AccountName varchar(50),
@.MaxDate smalldatetime
AS
BEGIN

SELECTDivision,
SUM(CASE WHEN [Pay End Dt] BETWEEN '2005-01-01' AND '2005-12-31' THEN Spread ELSE 0 END) AS [05Spread],
SUM(CASE WHEN [Pay End Dt] BETWEEN '2006-01-01' AND '2006-12-31' THEN Spread ELSE 0 END) AS [06Spread],
SUM(CASE WHEN [Pay End Dt] BETWEEN '2005-01-01' AND '2005-12-31' THEN [Bill] ELSE 0 END)/SUM(CASE WHEN [Pay End Dt] BETWEEN '2005-01-01' AND '2005-12-31' THEN [Cost] ELSE 0 END) AS [05MarkUp],
SUM(CASE WHEN [Pay End Dt] BETWEEN '2006-01-01' AND '2006-12-31' THEN [Bill] ELSE 0 END)/SUM(CASE WHEN [Pay End Dt] BETWEEN '2006-01-01' AND '2006-12-31' THEN [Cost] ELSE 0 END) AS [06MarkUp],
SUM(CASE WHEN [Pay End Dt] BETWEEN '2007-01-01' AND @.maxdate THEN [Bill] ELSE 0 END)/SUM(CASE WHEN [Pay End Dt] BETWEEN '2007-01-01' AND @.maxdate THEN [Cost] ELSE 0 END) AS [07MarkUp],
SUM(CASE WHEN [Pay End Dt] BETWEEN '2005-01-01' AND '2005-12-31' THEN Spread ELSE 0 END)/SUM(CASE WHEN [Pay End Dt] BETWEEN '2005-01-01' AND '2005-12-31' THEN [Emp] ELSE 0 END) AS [05SPC],
SUM(CASE WHEN [Pay End Dt] BETWEEN '2006-01-01' AND '2006-12-31' THEN Spread ELSE 0 END)/SUM(CASE WHEN [Pay End Dt] BETWEEN '2006-01-01' AND '2006-12-31' THEN [Emp] ELSE 0 END) AS [06SPC],
SUM(CASE WHEN [Pay End Dt] BETWEEN '2007-01-01' AND @.maxdate THEN Spread ELSE 0 END)/SUM(CASE WHEN [Pay End Dt] BETWEEN '2007-01-01' AND @.maxdate THEN [Emp] ELSE 0 END) AS [07SPC],
SUM(CASE WHEN [Pay End Dt] = @.maxdate THEN [Bill] ELSE 0 END)/SUM(CASE [Pay End Dt] WHEN @.maxdate THEN [Cost] ELSE 0 END) AS [07CurMarkUp],
AVG(CASE WHEN [Pay End Dt] BETWEEN '2005-01-01' AND '2005-12-31' THEN [Emp] ELSE 0 END) AS [05AvgEmp],
AVG(CASE WHEN [Pay End Dt] BETWEEN '2006-01-01' AND '2006-12-31' THEN [Emp] ELSE 0 END) AS [06AvgEmp],
AVG(CASE WHEN [Pay End Dt] BETWEEN '2007-01-01' AND @.maxdate THEN [Emp] ELSE 0 END) AS [07AvgEmp],
MAX(CASE WHEN [Pay End Dt] BETWEEN '2005-01-01' AND '2005-12-31' THEN [Spread] ELSE 0 END) AS [05High],
MAX(CASE WHEN [Pay End Dt] BETWEEN '2006-01-01' AND '2006-12-31' THEN Spread ELSE 0 END) AS [06High],
MAX(CASE WHEN [Pay End Dt] BETWEEN '2007-01-01' AND @.maxdate THEN Spread ELSE 0 END) AS [07High],
CASE Spread WHEN MAX(CASE WHEN [Pay End Dt] BETWEEN '2005-01-01' AND '2005-12-31' THEN Spread ELSE 0 END) THEN [Pay End Dt] ELSE '' END AS [05MaxWeek],
CASE Spread WHEN MAX(CASE WHEN [Pay End Dt] BETWEEN '2006-01-01' AND '2006-12-31' THEN Spread ELSE 0 END) THEN [Pay End Dt] ELSE '' END AS [06MaxWeek],
CASE Spread WHEN MAX(CASE WHEN [Pay End Dt] BETWEEN '2007-01-01' AND @.maxdate THEN Spread ELSE 0 END) THEN [Pay End Dt] ELSE '' END AS [05MaxWeek]

FROM (SELECT Division, [Pay End Dt], Sum(isnull([SumOfNum of Emp],0)) AS Emp, SUM(isnull([SumOfNet Spread],0)) AS Spread, SUM(isnull([SumOfTotal Bill],0)) AS Bill, SUM(isnull([SumOfCost],0)) AS Cost FROM dbo.tbl_NAHistory WHERE [Generic Customer] = @.AccountName GROUP BY Division, [Pay End Dt]) AS s

GROUP BY [Division];
END

Thanks in advance,
-BOK, I was wrong...the last three CASE expressions need to go in the GROUP BY but they can't because they have aggregates. Any ideas?

Friday, February 24, 2012

Error message of #Error

I'm using WinForms ReportViewer in local mode.
Some textboxes in my report display #Error
How to get exact error message for this error or any other information about
error in expression ?
Andrus.On Mar 28, 11:45 am, "Andrus" <kobrule...@.hot.ee> wrote:
> I'm using WinForms ReportViewer in local mode.
> Some textboxes in my report display #Error
> How to get exact error message for this error or any other information about
> error in expression ?
> Andrus.
This error is relatively common, but usually refers to an error in an
expression. If you have the BIDS (Business Intelligence) environment,
I would suggest opening the report up separately there and when you
preview the report, you might get a better description in the Output
window. Hope this helps.
Regards,
Enrique Martinez
Sr. Software Consultant

Sunday, February 19, 2012

Error message about SQL Server is displayed

I have a website that works OK on my local machine when I test it within Microsoft Visual Studio's debugging mode. However now that I have copied it over to a remote server it is failing with an error message of:

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)

As far as I'm aware I have never used SQL Server with my webpage. All connections to databases are to Oracle with connection strings and providers set up in the webconfig file. The website does however use a login control to recognise authorised users. Does this mean I've unknowingly been using SQL Server (to support the login control) and I therefore need to install this on the remote machine? Or is it something simpler? Wondered if anybody had seen this error message before?

Hi,

The website does however use a login control to recognize authorized users.

As you mentioned in your post, you are using login controls to recognize authorized users. In ASP.NET, such controls like logins, createuserwizard and etc are parts of .Net Membership provider mechanism.

In your local side, I think the SQLExpress has been shipped in your Visual Studio, so it can support the membership to work. But after you deployed your application to your server, the membership still tries to find the database to support. Unfortunately, the database does exist on your server, so the error occurs.

Thanks.

|||

Hi Nai-Dong, thanks for replying. I agree with your suggestion that the membership is tying and failing to read the database. The database MDF file is present and in the correct location. The permissions are set on this file as according to other forum posts I've read. I also installed SQLServer Express on the remote machine. I suspect that the membership is not picking up the SQLServerExpress install but I am not sure how to fix this. It's such a shame because the ASP.NET login controls and .Net membership provider are really neat and simple to use. Due to time restraints it's looking like I'm going to have to use my Oracle database to contain the login information and write code myself to enable authentication.

|||

Hi,

Well, i just want to provide you some materials on membership which maybe helpful to you when you are going to use Membership in your next project.

About Membership Providershttp://msdn2.microsoft.com/en-us/library/aa478949.aspx

Membership introductionhttp://msdn2.microsoft.com/en-us/library/yh26yfzy.aspx

Settings on using Membershiphttp://msdn2.microsoft.com/en-us/library/ms731049.aspx

Besides, you can export all the datatables with schemas in ASPNETDB into your Oracle database, and change the membership provider, you also can use membership with a Oracle back-end database.

Hope that helps. Thanks.

|||

Thanks Michael - greatly appreciated. I will certainly read through them. I like the idea of Oracle providing membership since I can connect to me Oracle db without any problems.

Wednesday, February 15, 2012

Error message

I am receiving this error:
SQLServerAgent
Alert Engine 318 N/A
Unable to read local eventlog (reason: The event log file
has changed between reads).
Did anybody see this error before?I believe this happens after Windows has emptied the eventlog. I.e., nothing to worry about.
--
Tibor Karaszi, SQL Server MVP
Archive at: http://groups.google.com/groups?oi=djq&as_ugroup=microsoft.public.sqlserver
"Adnan Ghalayini" <anonymous@.discussions.microsoft.com> wrote in message
news:73ce01c3b423$5639cef0$a601280a@.phx.gbl...
> I am receiving this error:
> SQLServerAgent
> Alert Engine 318 N/A
> Unable to read local eventlog (reason: The event log file
> has changed between reads).
> Did anybody see this error before?

error message

Sometimes when developers try to access to the SQL Server by Enterprise
manager they get an error
"A connection can not be stablished to (local)
Reason: General network error. Check you network documentation.
ConnectionWriter (WrapperWrite ()).
Please verify SQL Server is running and check your SQL Server registration
properties"
I am getting the below error from the event viewer.
I have setup the maximum number of connection to be 3200. But I keep
getting this error continuosly since 8 days ago.
Event Type: Error
Event Source: MSSQLSERVER
Event Category: (2)
Event ID: 17052
Date: 3/21/2006
Time: 1:04:44 PM
User: N/A
Computer: USKFIUSRYESQLD1
Description:
Error: 17809, Severity: 20, State: 1
Could not connect. The maximum number of '30' configured user connections
are already connected. The system administrator can change the maximum to a
higher value using sp_configure.
Data:
0000: 91 45 00 00 14 00 00 00 ?E.....
0008: 10 00 00 00 55 00 53 00 ...U.S.
0010: 4b 00 46 00 49 00 55 00 K.F.I.U.
0018: 53 00 52 00 59 00 45 00 S.R.Y.E.
0020: 53 00 51 00 4c 00 44 00 S.Q.L.D.
0028: 31 00 00 00 00 00 00 00 1......
Please let me know what should I do. I have spoken to the network people to
check the Server itself to see if there is any problem with the network
itself or hardware and they said everything is fine. I keep getting the
Developers to complaint about message above "A Connection can not be stablis
h"
Thanks all for your helpDid you check the run_value using sp_configure? If you
changed the setting, the service requires a restart.
-Sue
On Tue, 21 Mar 2006 10:43:56 -0800, WISTONSQL
<WISTONSQL@.discussions.microsoft.com> wrote:

>Sometimes when developers try to access to the SQL Server by Enterprise
>manager they get an error
>"A connection can not be stablished to (local)
>Reason: General network error. Check you network documentation.
>ConnectionWriter (WrapperWrite ()).
>Please verify SQL Server is running and check your SQL Server registration
>properties"
>I am getting the below error from the event viewer.
>I have setup the maximum number of connection to be 3200. But I keep
>getting this error continuosly since 8 days ago.
>Event Type: Error
>Event Source: MSSQLSERVER
>Event Category: (2)
>Event ID: 17052
>Date: 3/21/2006
>Time: 1:04:44 PM
>User: N/A
>Computer: USKFIUSRYESQLD1
>Description:
>Error: 17809, Severity: 20, State: 1
>Could not connect. The maximum number of '30' configured user connections
>are already connected. The system administrator can change the maximum to a
>higher value using sp_configure.
>Data:
>0000: 91 45 00 00 14 00 00 00 ?E.....
>0008: 10 00 00 00 55 00 53 00 ...U.S.
>0010: 4b 00 46 00 49 00 55 00 K.F.I.U.
>0018: 53 00 52 00 59 00 45 00 S.R.Y.E.
>0020: 53 00 51 00 4c 00 44 00 S.Q.L.D.
>0028: 31 00 00 00 00 00 00 00 1......
>Please let me know what should I do. I have spoken to the network people t
o
>check the Server itself to see if there is any problem with the network
>itself or hardware and they said everything is fine. I keep getting the
>Developers to complaint about message above "A Connection can not be stabli
sh"
>Thanks all for your help|||Hi Sue:
Thanks for your response,
Yes, I reboot the system couple times and still I am having the problem,
today the problem became worst. I am going to deploy SQL Server SP4 - What d
o
you think?
"Sue Hoegemeier" wrote:

> Did you check the run_value using sp_configure? If you
> changed the setting, the service requires a restart.
> -Sue
> On Tue, 21 Mar 2006 10:43:56 -0800, WISTONSQL
> <WISTONSQL@.discussions.microsoft.com> wrote:
>
>|||When you get the error:
Could not connect. The maximum number of '30' configured
user connections are already connected.
you really should run sp_configure to view what you actually
have set for user connections.
If you have been adjusting settings, you may want to make
sure you really have everything set back to the defaults.
The help topic: Setting Configuration Options
lists all the settings and the defaults.
-Sue
On Wed, 22 Mar 2006 16:33:27 -0800, WISTONSQL
<WISTONSQL@.discussions.microsoft.com> wrote:
[vbcol=seagreen]
>Hi Sue:
>Thanks for your response,
>Yes, I reboot the system couple times and still I am having the problem,
>today the problem became worst. I am going to deploy SQL Server SP4 - What
do
>you think?
>"Sue Hoegemeier" wrote:
>

error message

Sometimes when developers try to access to the SQL Server by Enterprise
manager they get an error
"A connection can not be stablished to (local)
Reason: General network error. Check you network documentation.
ConnectionWriter (WrapperWrite ()).
Please verify SQL Server is running and check your SQL Server registration
properties"
I am getting the below error from the event viewer.
I have setup the maximum number of connection to be 3200. But I keep
getting this error continuosly since 8 days ago.
Event Type:Error
Event Source:MSSQLSERVER
Event Category:(2)
Event ID:17052
Date:3/21/2006
Time:1:04:44 PM
User:N/A
Computer:USKFIUSRYESQLD1
Description:
Error: 17809, Severity: 20, State: 1
Could not connect. The maximum number of '30' configured user connections
are already connected. The system administrator can change the maximum to a
higher value using sp_configure.
Data:
0000: 91 45 00 00 14 00 00 00 ?E.....
0008: 10 00 00 00 55 00 53 00 ...U.S.
0010: 4b 00 46 00 49 00 55 00 K.F.I.U.
0018: 53 00 52 00 59 00 45 00 S.R.Y.E.
0020: 53 00 51 00 4c 00 44 00 S.Q.L.D.
0028: 31 00 00 00 00 00 00 00 1......
Please let me know what should I do. I have spoken to the network people to
check the Server itself to see if there is any problem with the network
itself or hardware and they said everything is fine. I keep getting the
Developers to complaint about message above "A Connection can not be stablish"
Thanks all for your help
Did you check the run_value using sp_configure? If you
changed the setting, the service requires a restart.
-Sue
On Tue, 21 Mar 2006 10:43:56 -0800, WISTONSQL
<WISTONSQL@.discussions.microsoft.com> wrote:

>Sometimes when developers try to access to the SQL Server by Enterprise
>manager they get an error
>"A connection can not be stablished to (local)
>Reason: General network error. Check you network documentation.
>ConnectionWriter (WrapperWrite ()).
>Please verify SQL Server is running and check your SQL Server registration
>properties"
>I am getting the below error from the event viewer.
>I have setup the maximum number of connection to be 3200. But I keep
>getting this error continuosly since 8 days ago.
>Event Type:Error
>Event Source:MSSQLSERVER
>Event Category:(2)
>Event ID:17052
>Date:3/21/2006
>Time:1:04:44 PM
>User:N/A
>Computer:USKFIUSRYESQLD1
>Description:
>Error: 17809, Severity: 20, State: 1
>Could not connect. The maximum number of '30' configured user connections
>are already connected. The system administrator can change the maximum to a
>higher value using sp_configure.
>Data:
>0000: 91 45 00 00 14 00 00 00 ?E.....
>0008: 10 00 00 00 55 00 53 00 ...U.S.
>0010: 4b 00 46 00 49 00 55 00 K.F.I.U.
>0018: 53 00 52 00 59 00 45 00 S.R.Y.E.
>0020: 53 00 51 00 4c 00 44 00 S.Q.L.D.
>0028: 31 00 00 00 00 00 00 00 1......
>Please let me know what should I do. I have spoken to the network people to
>check the Server itself to see if there is any problem with the network
>itself or hardware and they said everything is fine. I keep getting the
>Developers to complaint about message above "A Connection can not be stablish"
>Thanks all for your help
|||Hi Sue:
Thanks for your response,
Yes, I reboot the system couple times and still I am having the problem,
today the problem became worst. I am going to deploy SQL Server SP4 - What do
you think?
"Sue Hoegemeier" wrote:

> Did you check the run_value using sp_configure? If you
> changed the setting, the service requires a restart.
> -Sue
> On Tue, 21 Mar 2006 10:43:56 -0800, WISTONSQL
> <WISTONSQL@.discussions.microsoft.com> wrote:
>
>
|||When you get the error:
Could not connect. The maximum number of '30' configured
user connections are already connected.
you really should run sp_configure to view what you actually
have set for user connections.
If you have been adjusting settings, you may want to make
sure you really have everything set back to the defaults.
The help topic: Setting Configuration Options
lists all the settings and the defaults.
-Sue
On Wed, 22 Mar 2006 16:33:27 -0800, WISTONSQL
<WISTONSQL@.discussions.microsoft.com> wrote:
[vbcol=seagreen]
>Hi Sue:
>Thanks for your response,
>Yes, I reboot the system couple times and still I am having the problem,
>today the problem became worst. I am going to deploy SQL Server SP4 - What do
>you think?
>"Sue Hoegemeier" wrote: