Showing posts with label receive. Show all posts
Showing posts with label receive. Show all posts

Monday, March 26, 2012

Invalid object name 'tsvw_

Hi Everyone!

Is someone here can help me on this?

I receive a error when inserting or Updating row in a replicated table

the error is Invalid object name 'tsvw_*****

What to do with this

More detail please... What version of SQL server are you using? What type of replication are you using? and etc...|||

Sorry, here some more

I'm using MSDE version of SQL 2000, and 3 layer merge replication, on a WAN

|||when you say three layers, do you mean you have a republishing scenario? "tsvw_*" is a view used by merge replication, my guess is that it may have been dropped somewhere during your setup. If you're doing a republishing scenario, make sure you set up A to B first, then republish B to C.

Wednesday, March 21, 2012

Invalid Instance Invalid Connection NT 4.0

When connecting to SQL Server using a Win NT 4.0 client I receive the messag
e:
[DBNETLIB] ConnectionOpen [Invalid Instance ()]Invalid Connection
Another Win NT 4.0 client works fine.
SQL MSDE 2000 release A installed on the server. Another SQL 2000 instance
is running (from another vendor) on the same machine. MDAC 2.7 sp1 refresh
checks out fine in component checker.
Any idea?By default MSDE 2000 SP3 only allows local connections, you have to go in
and enable MSDE to listen on TCP or Named Pipes if you wnat to allow remote
connectivity.
Cindy Gross, MCDBA, MCSE
http://cindygross.tripod.com
This posting is provided "AS IS" with no warranties, and confers no rights.

Monday, March 12, 2012

Invalid column name Ploeg.

When i try to execute i receive following error:

Msg 207, Level 16, State 1, Procedure WedstrijdDeelnemersSelectAllMPNietGoedgekeurd, Line 85

Invalid column name 'Ploeg'.

I dont really see whats wrong with the select... it works fine in the 2 first parts of the querry

ALTER PROCEDURE [dbo].[WedstrijdDeelnemersSelectAllMPNietGoedgekeurd]-- Add the parameters for the stored procedure here@.WedstrijdIDintASBEGIN-- SET NOCOUNT ON added to prevent extra result sets from-- interfering with SELECT statements.SET NOCOUNT ON;...UNIONSELECTdbo.fncGetPersoonNaam(L.PersoonID,0)as Persoon,'Ploeg: ' + WDPI.Ploegas TypeInschrijving,WDPIL.LidClubID,WT.Omschrijvingas WedstrijdType,C.Omschrijvingas Categorie,WDC.WedstrijdDetailID,WDC.IDas WedstrijdDetailCategorieID,WDPI.IDas TypeInschrijvingIDFROMWedstrijd WINNERJOIN WedstrijdDetail WDON W.ID = WD.WedstrijdIDINNERJOIN WedstrijdType WTON WD.WedstrijdTypeID = WT.IDINNERJOIN WedstrijdDetailCategorie WDCON WD.ID = WDC.WedstrijdDetailIDINNERJOIN Categorie CON WDC.CategorieID = C.IDINNERJOIN WedstrijdDetailPloegInschrijving WDPION WDC.ID = WDPI.WedstrijdDetailCategorieIDINNERJOIN WedstrijdDetailPloegInschrijvingLid WDPILON WDPIL.WedstrijdDetailPloegInschrijvingID = WDPI.ID...
END

forget it, someone updated the database and removed the column...Big Smile

Friday, March 9, 2012

Invalid Buffer 17805

Hello
I am running SQL Server 2000 with SP 4 on Windows Server 2003
Enterprice Edisction.
I receive several notifications with the following:
Error: Message not found. Insertion strings:Error: 17805, Severity: 20,
3 Invalid buffer received from client.
I want to create a SQL Profiler trace that will help me to identify
which
sql statements \ stored procedures are causing this error. What will i
need
to specify in the trace to identify the transaction that is causing
this
error and what kind of filter if any do i need to apply?
I catch the error with SQLagent Alerts, but I want to known what
statement or SP lanch the error.
Help me please
Salvo
Try using something like:
Exceptions from the Errors and Warnings event class.
SQL:StmtStarting from the T-SQL event classes
SP:Starting and SP:StmtStarting from the Stored Procedures
event classes.
Filters depend on your system. Leave the application not
like SQL Profiler filter in there and additionally add at
least SQLAgent% in the same not like application filter.
-Sue
On 8 Nov 2005 06:28:15 -0800, "salvoWJ"
<salvatore.toro@.volawindjet.it> wrote:

>Hello
>I am running SQL Server 2000 with SP 4 on Windows Server 2003
>Enterprice Edisction.
>I receive several notifications with the following:
>Error: Message not found. Insertion strings:Error: 17805, Severity: 20,
> 3 Invalid buffer received from client.
>I want to create a SQL Profiler trace that will help me to identify
>which
>sql statements \ stored procedures are causing this error. What will i
>need
>to specify in the trace to identify the transaction that is causing
>this
>error and what kind of filter if any do i need to apply?
>I catch the error with SQLagent Alerts, but I want to known what
>statement or SP lanch the error.
>
>Help me please
>Salvo