Multi-part identifier dtss.DocumentID could not be bound

Below is my query
Getting error
The multi-part identifier "dtss.DocumentID" could not be bound.
SELECT sb.BoxID,sbls.Locationcode,sbl.LocationName,sbls.DateEntered
From data_document.dbo.StorageBox sb
inner join data_document.dbo.StorageBoxLocations sbls
on sb.storageBoxID
= sbls.storageBoxID
inner join data_document.dbo.StorageBoxLocation sbl
ON sbls.LocationCode
= sbl.LocationCode
Inner Join CVDocuments cvds
on dtss.DocumentID
= cvds.DocumentID
INNER JOIN CVFact cvf
ON cvf.CVID
= cvds.CVID
INNER JOIN Employee e
ON e.Employeeid
= cvf.EmployeeID
inner join data_document.dbo.DocumentStorageBox dsb
ON dsb.StorageBoxID
= sb.StorageBoxID
Can anybody help me. 
Mary Sunish

Where is this dtss object defined -> dtss.DocumentID?
Can you check the dtss alias which is not defined on of the objects?
--Prashanth

Similar Messages

  • Error: The multi-part identifier "SourceView.MonitoringClassId" could not be bound

    We have a strange error with multiple views under "Configuration Items". First of all with some users the error happens almost every time and there are a few users where this never happens. If it happens the following errors appear in the SCSM
    console and the server evtentlog after clicking on a view.
    Currently it looks like domain administrators don't face this problem. But SCSM admins and regular SCSM users have the same problem.
    Eventlog:
    Data Access Layer rejected retry on SqlError:
    Request: Composite_Select_Path_00000000-0000-0000-0000-000000000000 -- (ManagedTypeId_SubqueryJoin0_00=880e7a50-afab-74d9-1e74-8a4ca50640b0), (ObjectStatus_4AE3E5FE_BC03_1336_0A45_80BF58DEE57B0=47101e64-237f-12c8-e3f5-ec5a665412fb), (CustomerName_97197BF6_C0B3_78BA_4B4A_A34047F47DCA0=%XName+YName%)
    Class: 16
    Number: 4104
    Message: The multi-part identifier "SourceView.MonitoringClassId" could not be bound.
    SCSM Console Error:
    Date: 01.07.2014 14:58:05
    Application: Service Manager Console
    Application Version: 7.5.3079.0
    Severity: Error
    Message: An error occurred while loading the items.
    Microsoft.EnterpriseManagement.UI.ViewFramework.AdvancedListSupportException: The Full adapter threw an exception. See the FullUpdate property to see the exception.
    at Microsoft.EnterpriseManagement.UI.ViewFramework.AdvancedListSupportAdapter.DoAction(DataQueryBase query, IList`1 dataSources, IDictionary`2 parameters, IList`1 inputs, String outputCollectionName)
    at Microsoft.EnterpriseManagement.UI.DataModel.QueryQueue.StartExecuteQuery(Object sender, ConsoleJobEventArgs e)
    at Microsoft.EnterpriseManagement.ServiceManager.UI.Console.ConsoleJobExceptionHandler.ExecuteJob(IComponent component, EventHandler`1 job, Object sender, ConsoleJobEventArgs args)
    Is there a way to troubleshoot this or can someone point me in the right direction?
    I read that some of those "Full adapter"-errors should be fixed with SCSM R2 UR2. But it didn't help here.

    Hi,
    Did you create any custom views? what is the common views between the end users facing this problem.
    Regards
    Antoine AL Ibry

  • The multi-part identifier "#AIP.agentcode" could not be bound is error coming while executing code

    DECLARE @Groupid varchar(50)
    DECLARE @Agentcode varchar(50)
    Declare @From numeric(20)
    Declare @TO numeric(20)
    DECLARE @date nvarchar(30)
    Declare @tempSelect varchar(max)=''
    Declare @tempQuery varchar(max)
    declare @sqlstr nvarchar(max)
    declare @alias nvarchar(100)
    declare @agent1 varchar(4000)
    declare @agentid varchar(20)
    declare @transvalue varchar(20)
    Set @From= 20140801
    Set @TO= 20140810
    SET @Groupid=2
    SET @Agentcode=121
    --set @ttotal = @TO - @From
    --set @counter = @From
    --set @i = 0
    set @tempQuery=''
    truncate table  jv.dbo.a_tbl_AIP_LOGIN 
    insert into jv.dbo.a_tbl_AIP_LOGIN (agentcode)
    select distinct   AgentCode   from jv.dbo.aGENT WHERE Flagactive='y' and email like '%@%'
    union
    SELECT Distinct 
    jv.dbo.POLICYADMININFO.AGENTID 
    FROM jv.dbo.POLICYADMININFO(NOLOCK)
    WHERE ORDEFFDATE BETWEEN @From AND @TO AND TRANSTYPE = 'NB'  and POLICYADMININFO.AGENTID>0 
    Update T set RM_NAME=RMMASTER.rmname,SM_NAME=SM_MASTER.name,REGION=rmmaster.region,AIP_NAME=agent.FirstName     
     from jv.dbo.a_tbl_AIP_LOGIN T
    left join jv.dbo.AGENT (NOLOCK) on    t.agentcode=agent.AgentCode
    LEFT JOIN jv.dbo.SM_MASTER(NOLOCK) ON AGENT.SMID = SM_MASTER.SMID
    LEFT JOIN jv.dbo.RMMASTER(NOLOCK) ON sm_master.Region =rmmaster.region   
    --------------------------------------FOR AIP Operation----------------------------------------------------------
    if (@groupid=2)
    Begin 
    select agentcode into #AIP from jv.dbo.a_tbl_aip_login where AgentCode=@Agentcode
    SELECT PolicyAdminInfo.AgentID,ORDEFFDATE,isnull(convert(bigint, SUM(cast(TransVal*s1.mf as money))),0) TRANSVAL
    into #aipbusiness FROM   jv.dbo.POLICYADMININFO(NOLOCK) 
    INNER join #AIP on PolicyAdminInfo.AgentID=#AIP.agentcode
    LEFT JOIN jv.dbo.Amwayskuitem_New(NOLOCK) S1 ON S1.SKU_ITEM=POLICYADMININFO.SKUNO  
    LEFT JOIN jv.dbo.POLICYINFO(NOLOCK) I ON I.POLICYNO=POLICYADMININFO.ApplNo and I.PRODUCTTYPE=POLICYADMININFO.ProductType
    LEFT JOIN jv.dbo.PolicyStatus_new S ON I.PolicyStatus=S.PolicyStatus
    WHERE ORDEFFDATE BETWEEN @From AND @TO AND TRANSTYPE = 'NB' 
    AND NOT ISNULL(S.EffStatus,'')='CANCELLED' 
    GROUP BY  PolicyAdminInfo.AGENTid,ORDEFFDATE
    order by agentid
    end
    set @transvalue ='transval';
    while(@From <=@TO )
         Begin
           set @alias=' a'+CONVERT(nvarchar,@From) --as '+@i +' 
    --set @tempSelect=@tempSelect + ',' +@alias+'.'+@agentid +','+@alias+'.'+@transvalue ;
    set @tempSelect=@tempSelect + ','+@alias+'.'+@transvalue +' ['+replace(convert(nvarchar, jv.dbo.convDatetime(@From),103),'/','-')+']';
    --set @tempSelect=@tempSelect + ','+@alias+'.'+@alias 
    --set @tempSelect=@tempSelect + ',' +@alias
       set @tempQuery=@tempQuery+' left outer join (select agentid,transval from #aipbusiness where #aipbusiness.ordeffdate='+CONVERT(nvarchar,@From)+')' +  @alias + '  on #AIP.agentcode='
    +  @alias +'.agentid'        
    set @from =@From +1;
    End 
    SET @sqlStr  = 'select a_tbl_AIP_LOGIN.Region,a_tbl_AIP_LOGIN.RM_NAME RMName,a_tbl_AIP_LOGIN.SM_NAME SMName,a_tbl_AIP_LOGIN.AIP_NAME AIPName' + @tempSelect +  ' from jv.dbo.a_tbl_AIP_LOGIN' +@tempQuery +' Order by Region,RM_NAME ,SM_NAME
    ,AIP_NAME '
    --select @sqlStr as out
    execute sp_Executesql  @sqlStr
    --select @tempSelect as out
    drop table #aip
    drop table #aipbusiness
    malik

    Hello,
    In your dynamic SQL you are trying to access the local temporary table #AIP, which was created in the stored procedure. You run the dynamic SQL with sp_Executesql, which starts as a separate session, where you can't access the local temp table from the other
    session; this don't work.
    Use a global temp table, which will cause other issues, or run everything as one big dynamic SQL statement.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • The multi-part identifier "p.p#" could not be bound.

    Hi,
    When i executed the below query , i have an error :(
    select s# from s where exists (select * from spj where spj.s# = s.s# and spj.p# = p.p#)
    and relation is :
    S(s#,sname,city) s# is primary key
    p(p#,pname,color) p#
    is primary key
    j(j#,jname,city)  j#
    is primary key
    SPJ(S#,p#,j#,qty) s# and p# and j# is foreign key

    I see table "s" and "spj" in your query, but I don't see any table (alias) "p"; where is it?
    Hi,
    I change query with 
    select s# from s
    where exists (select * from p where pname='test' and exists (select * from spj where spj.s#=s.s#
    and spj.p# = p.p#))
    and the problem is solved. But can you explain the query? How it runs?(step by step?) Thank you

  • SQL Server 2005: Multi-part identifier could not be bound

    Hello,
    I use IBM WebSphere Portal and am desperately trying to move data from the default Cloudspace Database to MS SQL Server 2005, of course following the official guidelines.
    What happens is that WebSphere's Configuration Wizard fails because of an error caused by the SQL Script. Trouble is, I can't bring it to work not even in the SQL Server Management Studio.
    What follows is the code generated by the script. The error is caused by the last "check"-constraint (colored in red).
    CREATE TABLE community.APP_DESC (
    OID BINARY(18) NOT NULL,
    TYPE INTEGER NOT NULL,
    APP_NAME NVARCHAR(255) NOT NULL,
    IS_ACTIVE INTEGER NOT NULL,
    JSR_VERSION NVARCHAR(255),
    GUID NVARCHAR(255),
    WEB_MOD_OID BINARY(18),
    WEB_MOD_SL BINARY(18),
    WSRP_PROD_OID BINARY(18),
    WSRP_PROD_SL BINARY(18),
    DEFAULT_LOCALE NVARCHAR(64),
    CREATED BIGINT NOT NULL,
    MODIFIED BIGINT NOT NULL,
    WSC_GROUP_ID NVARCHAR(255),
    CONSTRAINT PK20 PRIMARY KEY NONCLUSTERED (OID),
    CONSTRAINT FK20A FOREIGN KEY (WEB_MOD_OID) REFERENCES community.WEB_MOD (OID) ON DELETE CASCADE,
    constraint FK20B FOREIGN KEY (WSRP_PROD_OID) REFERENCES community.WSRP_PROD (OID) ON DELETE CASCADE,
    CONSTRAINT CC20A CHECK (((community.APP_DESC.WEB_MOD_OID IS NULL) AND (community.APP_DESC.WEB_MOD_SL IS NOT NULL)) OR ((community.APP_DESC.WEB_MOD_OID IS NOT NULL) AND (community.APP_DESC.WEB_MOD_SL IS NULL)))
    And that's what SQL Server 2005 told me:
    Msg 4104, Level 16, State 1, Line 1
    The multi-part identifier "community.APP_DESC.WEB_MOD_OID" could not be bound.
    Msg 4104, Level 16, State 1, Line 1
    The multi-part identifier "community.APP_DESC.WEB_MOD_SL" could not be bound.
    Msg 4104, Level 16, State 1, Line 1
    The multi-part identifier "community.APP_DESC.WEB_MOD_OID" could not be bound.
    Msg 4104, Level 16, State 1, Line 1
    The multi-part identifier "community.APP_DESC.WEB_MOD_SL" could not be bound.
    BTW, as this is a generated script I do not have the possibility to change it. Because it has been released by IBM I am rather convinced that it is correct - therefore I was wondering whether SQL Server 2005 has a known bug that makes it refuse "check"-constraints.
    Any hint is very appreciated.
    Thanks in advance,
    adapter

    THe problem is that is was probably not made for SQL Server 2005. It should read:
    CONSTRAINT PK20 PRIMARY KEY NONCLUSTERED (OID),
    CONSTRAINT FK20A FOREIGN KEY (WEB_MOD_OID) REFERENCES community.WEB_MOD (OID) ON DELETE CASCADE,
    constraint FK20B FOREIGN KEY (WSRP_PROD_OID) REFERENCES community.WSRP_PROD (OID) ON DELETE CASCADE,
    CONSTRAINT CC20A CHECK (((APP_DESC.WEB_MOD_OID IS NULL) AND (APP_DESC.WEB_MOD_SL IS NOT NULL)) OR ((APP_DESC.WEB_MOD_OID IS NOT NULL) AND (APP_DESC.WEB_MOD_SL IS NULL)))
    The meaning of the first identifier changed in SQL Server 2005, as this is now the Schema and not the owner. DO you have a chance of using a SQL Server 2000 computer ? In terms of licences you will have a downgrade licence for the SQL Server, otherwise you should ping the IBM guys to provide a compatible script.
    HTH, Jens K. Suessmeyer.
    http://www.sqlserver2005.de

  • The multi-part identifier could not be bound.

    Hi!
    Somebody can tell me what I'm doing wrong on this code (see below) because I'm getting this message
    (Msg 4104, Level 16, State 1, Line 1. The multi-part identifier "dbo.tdbComments.cmsComments" could not be bound.)
    SELECT [to].odsProduct, tsd.sndInvoice, tsd.sndSerialID, tsd.sndTicketNo, tsd.sndStationID, ps.psName, CONVERT(varchar(8),tsd.sndDate,1) AS [Scanned Date], 
    CONVERT(varchar(8),tsd.sndLaborDay,1) AS [Labor day], tsd.sndEmployeeID, u.EmpName, tc.cmsComments AS [Comentarios]
    FROM dbo.tdbScanDetail tsd
    INNER JOIN dbo.proStation ps ON ps.psID = tsd.sndStationID
    INNER JOIN UserPlenimex.dbo.Users u ON u.EmpID = tsd.sndEmployeeID
    INNER JOIN dbo.tdbOrders [to] ON tsd.sndSerialID = odsSerial
    INNER JOIN dbo.tdbComments tc ON odsInvoice = sndInvoice
    WHERE tsd.sndInvoice = '55370.0870'
    GROUP BY [to].odsProduct, tsd.sndInvoice, tsd.sndTicketNo, tsd.sndSerialID, tsd.sndStationID, ps.psName, tsd.sndDate, tsd.sndLaborDay, tsd.sndEmployeeID, u.EmpName, dbo.tdbComments.cmsComments
    ORDER BY tsd.sndStationID

    try
    SELECT [to].odsProduct
    ,tsd.sndInvoice
    ,tsd.sndSerialID
    ,tsd.sndTicketNo
    ,tsd.sndStationID
    ,ps.psName
    ,CONVERT(VARCHAR(8), tsd.sndDate, 1) AS [Scanned Date]
    ,CONVERT(VARCHAR(8), tsd.sndLaborDay, 1) AS [Labor day]
    ,tsd.sndEmployeeID
    ,u.EmpName
    ,tc.cmsComments AS [Comentarios]
    FROM dbo.tdbScanDetail tsd
    INNER JOIN dbo.proStation ps ON ps.psID = tsd.sndStationID
    INNER JOIN UserPlenimex.dbo.Users u ON u.EmpID = tsd.sndEmployeeID
    INNER JOIN dbo.tdbOrders [to] ON tsd.sndSerialID = odsSerial
    INNER JOIN dbo.tdbComments tc ON odsInvoice = sndInvoice
    WHERE tsd.sndInvoice = '55370.0870'
    GROUP BY [to].odsProduct
    ,tsd.sndInvoice
    ,tsd.sndTicketNo
    ,tsd.sndSerialID
    ,tsd.sndStationID
    ,ps.psName
    ,tsd.sndDate
    ,tsd.sndLaborDay
    ,tsd.sndEmployeeID
    ,u.EmpName
    ,dbo.tdbComments
    ,tc.cmsComments
    ORDER BY tsd.sndStationID
    Thanks
    Manish
    Please click Mark as Answer if my post solved your problem and click
    Vote as Helpful if this post was useful.

  • Multi-part identifier could not be bound

       
    I need to load a specific data into a variable in VisualBasic but im having this probably and getting a bit frustrated with this error. I would really aprecciate any help.
    Dim conn As New SqlConnection("Data Source=LUCIFERI\SQLEXPR2012;Initial Catalog=ProyectoBD;Integrated Security=True; Connection Lifetime=60; Max Pool Size=50; Min Pool Size=3")
                Dim cmd As New SqlCommand
                Dim dr As SqlDataReader
                Dim ds As New DataSet
                cmd.Connection = conn
                cmd.CommandText = "SELECT idPerfil FROM USUARIO WHERE USUARIO.correoElectronico =" & emailtxt.Text
                conn.Open()
                dr = cmd.ExecuteReader()
                ds.EnforceConstraints = False
                dts.gtipo = Convert.ToString(dr.Item("idPerfil"))
                dr.Close()

    Hi,
    You should always try to use parameterized SqlCommand to avoid SQL Injection and other *weird* errors like this.
    I think you are getting this error because emailtxt.Text contains a period (.) in it.
    Use below code snippet instead:
    Dim cmd As New SqlCommand("SELECT idPerfil FROM USUARIO WHERE USUARIO.correoElectronico = @EMailText")
    cmd.Parameters.AddWithValue("@EMailText", emailtxt.Text)
    - Vishal
    SqlAndMe.com

  • MDT 2013 import OS fail. Part of path could not be found

    Hi all
    I have installed MDT 2013 on a Server 2012 R2 machine and I am having trouble importing any OS. I get an error Part of the path could not be found. If I try and create the directory for MDT it complains and will not let me continue. If the directory is not
    there it complains that the directory cannot be found. here is the complete error that is generated.
    Performing the operation "import" on target "Operating system".
    System.Management.Automation.CmdletInvocationException: Could not find a part of the path 'C:\DeploymentShare\Operating Systems\Windows 7 x64'. ---> System.IO.DirectoryNotFoundException: Could not find a part of the path 'C:\DeploymentShare\Operating Systems\Windows
    7 x64'.
       at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.IO.FileSystemEnumerableIterator`1.CommonInit()
       at System.IO.FileSystemEnumerableIterator`1..ctor(String path, String originalUserPath, String searchPattern, SearchOption searchOption, SearchResultHandler`1 resultHandler, Boolean checkHost)
       at System.IO.DirectoryInfo.InternalGetFiles(String searchPattern, SearchOption searchOption)
       at Microsoft.BDD.PSSnapIn.Utility.DeleteDirectory(String theDirectory, Boolean recursive)
       at Microsoft.BDD.PSSnapIn.ImportOperatingSystem.Import(String sourcePath, String directoryName, Boolean moveDirectory)
       at Microsoft.BDD.PSSnapIn.ImportOperatingSystem.ProcessRecord()
       at System.Management.Automation.CommandProcessor.ProcessRecord()
       --- End of inner exception stack trace ---
       at System.Management.Automation.Runspaces.PipelineBase.Invoke(IEnumerable input)
       at Microsoft.BDD.Wizards.OperatingSystemProgress.WizardProcessing()
       at Microsoft.BDD.Wizards.WizardProgress.InitiateWizardProcessing()
    This particular image is Windows 7 custom.
    Any help would be greatly appreciated.
    Thanks
    Tim Jardim
     

    It is possible that you are hitting the 265 char MAX_PATH Limit.
    Ensure that your Deployment share, is not longer than say... 30 chars on your host machine:
    d:\Deployment\MDT\TestPath\Version10  <- MIght be too long
    d:\Deployment.32423  <- Try this instead
    Keith Garner - Principal Consultant [owner] -
    http://DeploymentLive.com

  • Could not lookup message because there is no database connection

    I am getting this error message when I try to run test_fwktutorial.jsp page. This happens for my custom Jdeveloper project also in which I am trying to build a brand new page.
    I did define the Run Time connection properly as following:
    DBC file: D:\oajdev\jdevhome\jdev\dbc_files\secure\sabercat.sr.csg.com_gis05.dbc
    User Name: <User Name>
    Password: <Password>
    Application Short Name: AK
    Responsibility Key: FWK_TBX_TUTORIAL
    I did define the Database connection also and checked Use repository for design time.
    I am getting the following exception when I run the pages.
    ===========================================================
    oracle.apps.fnd.framework.OAException: Application: FND, Message Name: FND_GENERIC_MESSAGE. Tokens: MESSAGE = java.sql.SQLException: ORA-01003: no statement parsed
    ; (Could not lookup message because there is no database connection)
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888)
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:862)
         at oracle.apps.fnd.framework.server.OAExceptionUtils.processAOLJErrorStack(OAExceptionUtils.java:980)
         at oracle.apps.fnd.framework.server.OAUtility.getWebAppsContext(OAUtility.java:352)
         at oracle.apps.fnd.framework.CreateIcxSession.getEncryptedSessId(CreateIcxSession.java:144)
         at oracle.apps.fnd.framework.CreateIcxSession.createSession(CreateIcxSession.java:80)
         at test_fwktutorial._jspService(test_fwktutorial.jsp:46)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:797)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    java.sql.SQLException: ORA-01003: no statement parsed
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
         at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289)
         at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:583)
         at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1983)
         at oracle.jdbc.ttc7.TTC7Protocol.executeFetch(TTC7Protocol.java:1002)
         at oracle.jdbc.dbaccess.DBAccess.executeFetchNeedDefines(DBAccess.java:283)
         at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.java:2604)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2854)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:622)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:550)
         at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1328)
         at oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:384)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:210)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:169)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getProfile(ExtendedProfileStore.java:148)
         at oracle.apps.fnd.common.logging.DebugEventManager.configureUsingDatabaseValues(DebugEventManager.java:1147)
         at oracle.apps.fnd.common.logging.DebugEventManager.configureLogging(DebugEventManager.java:1008)
         at oracle.apps.fnd.common.logging.DebugEventManager.internalReinit(DebugEventManager.java:977)
         at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:944)
         at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:931)
         at oracle.apps.fnd.common.AppsLog.reInitialize(AppsLog.java:570)
         at oracle.apps.fnd.common.AppsContext.initLog(AppsContext.java:873)
         at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:858)
         at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:827)
         at oracle.apps.fnd.common.AppsContext.<init>(AppsContext.java:686)
         at oracle.apps.fnd.common.WebAppsContext.<init>(WebAppsContext.java:846)
         at oracle.apps.fnd.framework.server.OAUtility.getWebAppsContext(OAUtility.java:351)
         at oracle.apps.fnd.framework.CreateIcxSession.getEncryptedSessId(CreateIcxSession.java:144)
         at oracle.apps.fnd.framework.CreateIcxSession.createSession(CreateIcxSession.java:80)
         at test_fwktutorial._jspService(test_fwktutorial.jsp:46)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:797)
         at java.lang.Thread.run(Thread.java:534)
    java.sql.SQLException: ORA-01003: no statement parsed
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
         at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289)
         at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:583)
         at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1983)
         at oracle.jdbc.ttc7.TTC7Protocol.executeFetch(TTC7Protocol.java:1002)
         at oracle.jdbc.dbaccess.DBAccess.executeFetchNeedDefines(DBAccess.java:283)
         at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.java:2604)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2854)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:622)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:550)
         at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1328)
         at oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:384)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:210)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:169)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getProfile(ExtendedProfileStore.java:148)
         at oracle.apps.fnd.common.logging.DebugEventManager.configureUsingDatabaseValues(DebugEventManager.java:1147)
         at oracle.apps.fnd.common.logging.DebugEventManager.configureLogging(DebugEventManager.java:1008)
         at oracle.apps.fnd.common.logging.DebugEventManager.internalReinit(DebugEventManager.java:977)
         at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:944)
         at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:931)
         at oracle.apps.fnd.common.AppsLog.reInitialize(AppsLog.java:570)
         at oracle.apps.fnd.common.AppsContext.initLog(AppsContext.java:873)
         at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:858)
         at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:827)
         at oracle.apps.fnd.common.AppsContext.<init>(AppsContext.java:686)
         at oracle.apps.fnd.common.WebAppsContext.<init>(WebAppsContext.java:846)
         at oracle.apps.fnd.framework.server.OAUtility.getWebAppsContext(OAUtility.java:351)
         at oracle.apps.fnd.framework.CreateIcxSession.getEncryptedSessId(CreateIcxSession.java:144)
         at oracle.apps.fnd.framework.CreateIcxSession.createSession(CreateIcxSession.java:80)
         at test_fwktutorial._jspService(test_fwktutorial.jsp:46)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:797)
         at java.lang.Thread.run(Thread.java:534)
    ===========================================================
    Please help resolving the issue.
    Thanks.

    Hi
    I am also getting the same error can some one help me out
    One more thing when i am giving a user name and password which is not
    existing i got this error when i gave the correct one i got an error like this
    Error Page
    Exception Details.
    oracle.apps.fnd.framework.OAException: Application: FND, Message Name: SQL_PLSQL_ERROR. Tokens: ROUTINE = Profiles.getProfileOption; REASON = java.sql.SQLException: ORA-00904: "SERVERRESP_ENABLED_FLAG": invalid identifier
    ; ERRNO = 904; (Could not lookup message because there is no database connection)
         at oracle.apps.fnd.framework.server.OAExceptionUtils.processAOLJErrorStack(OAExceptionUtils.java:988)
         at oracle.apps.fnd.framework.server.OAUtility.getWebAppsContext(OAUtility.java:352)
         at oracle.apps.fnd.framework.CreateIcxSession.getEncryptedSessId(CreateIcxSession.java:144)
         at oracle.apps.fnd.framework.CreateIcxSession.createSession(CreateIcxSession.java:80)
         at test_fwktutorial._jspService(test_fwktutorial.jsp:45)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:139)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:797)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    oracle.apps.fnd.framework.OAException: Application: FND, Message Name: FND_GENERIC_MESSAGE. Tokens: MESSAGE = java.sql.SQLException: ORA-00904: "SERVERRESP_ENABLED_FLAG": invalid identifier
    ; (Could not lookup message because there is no database connection)
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888)
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:862)
         at oracle.apps.fnd.framework.server.OAExceptionUtils.processAOLJErrorStack(OAExceptionUtils.java:980)
         at oracle.apps.fnd.framework.server.OAUtility.getWebAppsContext(OAUtility.java:352)
         at oracle.apps.fnd.framework.CreateIcxSession.getEncryptedSessId(CreateIcxSession.java:144)
         at oracle.apps.fnd.framework.CreateIcxSession.createSession(CreateIcxSession.java:80)
         at test_fwktutorial._jspService(test_fwktutorial.jsp:45)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:139)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:797)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    java.sql.SQLException: ORA-00904: "SERVERRESP_ENABLED_FLAG": invalid identifier
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
         at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289)
         at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:583)
         at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1983)
         at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:1141)
         at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.java:2487)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2854)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:622)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:550)
         at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1328)
         at oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:384)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:210)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:169)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getMultiSpecificProfileFromDB(ExtendedProfileStore.java:368)
         at oracle.apps.fnd.common.WebAppsContext.setProfileValues(WebAppsContext.java:4177)
         at oracle.apps.fnd.common.AppsContext.setDBEnv(AppsContext.java:3407)
         at oracle.apps.fnd.common.AppsContext.getPrivateConnectionFinal(AppsContext.java:2508)
         at oracle.apps.fnd.common.AppsContext.getPrivateConnection(AppsContext.java:2398)
         at oracle.apps.fnd.common.AppsContext.getJDBCConnection(AppsContext.java:2257)
         at oracle.apps.fnd.common.AppsContext.getJDBCConnection(AppsContext.java:2072)
         at oracle.apps.fnd.common.AppsContext.getJDBCConnection(AppsContext.java:1976)
         at oracle.apps.fnd.profiles.Profiles.getConnection(Profiles.java:2494)
         at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1304)
         at oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:384)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:210)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:169)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getProfile(ExtendedProfileStore.java:148)
         at oracle.apps.fnd.common.logging.DebugEventManager.configureUsingDatabaseValues(DebugEventManager.java:1147)
         at oracle.apps.fnd.common.logging.DebugEventManager.configureLogging(DebugEventManager.java:1008)
         at oracle.apps.fnd.common.logging.DebugEventManager.internalReinit(DebugEventManager.java:977)
         at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:944)
         at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:931)
         at oracle.apps.fnd.common.AppsLog.reInitialize(AppsLog.java:570)
         at oracle.apps.fnd.common.AppsContext.initLog(AppsContext.java:873)
         at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:858)
         at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:827)
         at oracle.apps.fnd.common.AppsContext.<init>(AppsContext.java:686)
         at oracle.apps.fnd.common.WebAppsContext.<init>(WebAppsContext.java:846)
         at oracle.apps.fnd.framework.server.OAUtility.getWebAppsContext(OAUtility.java:351)
         at oracle.apps.fnd.framework.CreateIcxSession.getEncryptedSessId(CreateIcxSession.java:144)
         at oracle.apps.fnd.framework.CreateIcxSession.createSession(CreateIcxSession.java:80)
         at test_fwktutorial._jspService(test_fwktutorial.jsp:45)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:139)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:797)
         at java.lang.Thread.run(Thread.java:534)
    oracle.apps.fnd.framework.OAException: Application: FND, Message Name: FND_GENERIC_MESSAGE. Tokens: MESSAGE = java.sql.SQLException: ORA-00904: "SERVERRESP_ENABLED_FLAG": invalid identifier
    ; (Could not lookup message because there is no database connection)
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888)
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:862)
         at oracle.apps.fnd.framework.server.OAExceptionUtils.processAOLJErrorStack(OAExceptionUtils.java:980)
         at oracle.apps.fnd.framework.server.OAUtility.getWebAppsContext(OAUtility.java:352)
         at oracle.apps.fnd.framework.CreateIcxSession.getEncryptedSessId(CreateIcxSession.java:144)
         at oracle.apps.fnd.framework.CreateIcxSession.createSession(CreateIcxSession.java:80)
         at test_fwktutorial._jspService(test_fwktutorial.jsp:45)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:139)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:797)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    java.sql.SQLException: ORA-00904: "SERVERRESP_ENABLED_FLAG": invalid identifier
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
         at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289)
         at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:583)
         at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1983)
         at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:1141)
         at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.java:2487)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2854)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:622)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:550)
         at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1328)
         at oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:384)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:210)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:169)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getMultiSpecificProfileFromDB(ExtendedProfileStore.java:368)
         at oracle.apps.fnd.common.WebAppsContext.setProfileValues(WebAppsContext.java:4177)
         at oracle.apps.fnd.common.AppsContext.setDBEnv(AppsContext.java:3407)
         at oracle.apps.fnd.common.AppsContext.getPrivateConnectionFinal(AppsContext.java:2508)
         at oracle.apps.fnd.common.AppsContext.getPrivateConnection(AppsContext.java:2398)
         at oracle.apps.fnd.common.AppsContext.getJDBCConnection(AppsContext.java:2257)
         at oracle.apps.fnd.common.AppsContext.getJDBCConnection(AppsContext.java:2072)
         at oracle.apps.fnd.common.AppsContext.getJDBCConnection(AppsContext.java:1976)
         at oracle.apps.fnd.profiles.Profiles.getConnection(Profiles.java:2494)
         at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1304)
         at oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:384)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:210)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:169)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getProfile(ExtendedProfileStore.java:148)
         at oracle.apps.fnd.common.logging.DebugEventManager.configureUsingDatabaseValues(DebugEventManager.java:1147)
         at oracle.apps.fnd.common.logging.DebugEventManager.configureLogging(DebugEventManager.java:1008)
         at oracle.apps.fnd.common.logging.DebugEventManager.internalReinit(DebugEventManager.java:977)
         at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:944)
         at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:931)
         at oracle.apps.fnd.common.AppsLog.reInitialize(AppsLog.java:570)
         at oracle.apps.fnd.common.AppsContext.initLog(AppsContext.java:873)
         at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:858)
         at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:827)
         at oracle.apps.fnd.common.AppsContext.<init>(AppsContext.java:686)
         at oracle.apps.fnd.common.WebAppsContext.<init>(WebAppsContext.java:846)
         at oracle.apps.fnd.framework.server.OAUtility.getWebAppsContext(OAUtility.java:351)
         at oracle.apps.fnd.framework.CreateIcxSession.getEncryptedSessId(CreateIcxSession.java:144)
         at oracle.apps.fnd.framework.CreateIcxSession.createSession(CreateIcxSession.java:80)
         at test_fwktutorial._jspService(test_fwktutorial.jsp:45)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:139)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:797)
         at java.lang.Thread.run(Thread.java:534)
    Do we need to apply any patch or something by the way i am working with
    11.5.10 release 1
    Thanks in advance

  • WebLogic 10.3.2  managed server startup failed : ''31' could not be found'

    Dears: I ran my managed server using script but failed , the weblogic version is 10.3.2 (11g R1) , on Solaris 10 sparc 64bit.:
    ports=( 7001 7003 7005 7007 )
    instances=( instance1 instance2 instance3 )
    adminip=192.168.11.174
    "startManagedWebLogic.sh ${instances[1]} http://$adminip:${ports[0]}"&
    Does anyone get jammed into this situation?
    The Managed Server instance2 is going to running
    JAVA Memory arguments: -Xms768m -Xmx2048m -XX:NewSize=512m -XX:MaxNewSize=512m -XX:SurvivorRatio=6 -XX:+DisableExplicitGC -XX:MaxPermSize=2048m
    WLS Start Mode=Production
    CLASSPATH=/wls11g/patch_wls1032/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/wls11g/jdk1.6.0_18/lib/tools.jar:/wls11g/utils/config/10.3/config-launch.jar:/wls11g/wlserver_10.3/server/lib/weblogic_sp.jar:/wls11g/wlserver_10.3/server/lib/weblogic.jar:/wls11g/modules/features/weblogic.server.modules_10.3.2.0.jar:/wls11g/wlserver_10.3/server/lib/webservices.jar:/wls11g/modules/org.apache.ant_1.7.0/lib/ant-all.jar:/wls11g/modules/net.sf.antcontrib_1.0.0.0_1-0b2/lib/ant-contrib.jar:/wls11g/wlserver_10.3/common/eval/pointbase/lib/pbclient57.jar:/wls11g/wlserver_10.3/server/lib/xqrl.jar
    PATH=/wls11g/wlserver_10.3/server/bin:/wls11g/modules/org.apache.ant_1.7.0/bin:/wls11g/jdk1.6.0_18/jre/bin:/wls11g/jdk1.6.0_18/bin:/wls11g/user_projects/domains/base_domain:/wls11g/user_projects/domains/base_domain/bin:/wls11g/wlserver_10.3/server/bin:/wls11g/user_projects/domains/base_domain:/wls11g/user_projects/domains/base_domain/bin:/wls11g/wlserver_10.3/server/bin:/usr/bin
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http://hostname:port/console *
    starting weblogic with Java version:
    -bash-3.00$ java version "1.6.0_18-ea"
    Java(TM) SE Runtime Environment (build 1.6.0_18-ea-b05)
    Java HotSpot(TM) 64-Bit Server VM (build 16.0-b12, mixed mode)
    Starting WLS with line:
    /wls11g/jdk1.6.0_18/bin/java -server -d64 -Xms768m -Xmx2048m -XX:NewSize=512m -XX:MaxNewSize=512m -XX:SurvivorRatio=6 -XX:+DisableExplicitGC -XX:MaxPermSize=2048m -Dweblogic.Name=instance2 -Djava.security.policy=/wls11g/wlserver_10.3/server/lib/weblogic.policy -da -Dplatform.home=/wls11g/wlserver_10.3 -Dwls.home=/wls11g/wlserver_10.3/server -Dweblogic.home=/wls11g/wlserver_10.3/server -Dweblogic.management.discover=false -Dweblogic.management.server=http://140.126.24.25:6001 -Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.logErrorsToConsole=false -Dweblogic.ext.dirs=/wls11g/patch_wls1032/profiles/default/sysext_manifest_classpath weblogic.Server
    <Jan 20, 2010 6:02:46 PM CST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) 64-Bit Server VM Version 16.0-b12 from Sun Microsystems Inc.>
    <Jan 20, 2010 6:02:49 PM CST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.2.0 Tue Oct 20 12:16:15 PDT 2009 1267925 >
    <Jan 20, 2010 6:03:00 PM CST> <Emergency> <Management> <BEA-141151> <The admin server could not be reached at http://140.126.24.25:6001.>
    <Jan 20, 2010 6:03:00 PM CST> <Info> <Configuration Management> <BEA-150018> <This server is being started in managed server independence mode in the absence of the admin server.>
    <Jan 20, 2010 6:03:00 PM CST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Jan 20, 2010 6:03:00 PM CST> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Jan 20, 2010 6:03:01 PM CST> <Notice> <LoggingService> <BEA-320400> <The log file /wls11g/user_projects/domains/base_domain/servers/instance2/logs/instance2.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Jan 20, 2010 6:03:01 PM CST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to /wls11g/user_projects/domains/base_domain/servers/instance2/logs/instance2.log00026. Log messages will continue to be logged in /wls11g/user_projects/domains/base_domain/servers/instance2/logs/instance2.log.>
    <Jan 20, 2010 6:03:01 PM CST> <Notice> <Log Management> <BEA-170019> <The server log file /wls11g/user_projects/domains/base_domain/servers/instance2/logs/instance2.log is opened. All server side log events will be written to this file.>
    <Jan 20, 2010 6:03:16 PM CST> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Jan 20, 2010 6:03:19 PM CST> <Error> <Configuration Management> <BEA-150000> <An error occurred while establishing a connection back to the adminstration server t3://140.126.24.25:6001 during startup. Since bootstrap succeeded check that t3://140.126.24.25:6001 uniquely identifies the administration server.
    javax.naming.ServiceUnavailableException [Root exception is java.rmi.NoSuchObjectException: The object identified by: '31' could not be found.  Either it was has not been exported or it has been collected by the distributed garbage collector.]
    at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:70)
    at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:32)
    at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLInitialContextFactoryDelegate.java:783)
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialReference(WLInitialContextFactoryDelegate.java:430)
    at weblogic.jndi.Environment.getInitialReference(Environment.java:245)
    Truncated. see log file for complete stacktrace
    Caused By: java.rmi.NoSuchObjectException: The object identified by: '31' could not be found. Either it was has not been exported or it has been collected by the distributed garbage collector.
    at weblogic.rmi.internal.OIDManager.getServerReference(OIDManager.java:251)
    at weblogic.rmi.extensions.server.ServerHelper.getLocalInitialReference(ServerHelper.java:429)
    at weblogic.rmi.extensions.StubFactory.getStub(StubFactory.java:131)
    at weblogic.rmi.extensions.StubFactory.getStub(StubFactory.java:124)
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialReference(WLInitialContextFactoryDelegate.java:426)
    Truncated. see log file for complete stacktrace
    >
    <Jan 20, 2010 6:03:19 PM CST> <Critical> <WebLogicServer> <BEA-000362> <Server failed. Reason:
    There are 1 nested errors:
    javax.naming.ServiceUnavailableException [Root exception is java.rmi.NoSuchObjectException: The object identified by: '31' could not be found.  Either it was has not been exported or it has been collected by the distributed garbage collector.]
    at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:70)
    at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:32)
    at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLInitialContextFactoryDelegate.java:783)
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialReference(WLInitialContextFactoryDelegate.java:430)
    at weblogic.jndi.Environment.getInitialReference(Environment.java:245)
    at weblogic.server.channels.RemoteChannelServiceImpl.registerInternal(RemoteChannelServiceImpl.java:173)
    at weblogic.server.channels.RemoteChannelServiceImpl.registerForever(RemoteChannelServiceImpl.java:146)
    at weblogic.protocol.ConnectMonitorFactory.registerForever(ConnectMonitorFactory.java:88)
    at weblogic.management.provider.MSIService.registerForReconnectToAdminServer(MSIService.java:174)
    at weblogic.management.mbeanservers.compatibility.internal.CompatibilityMBeanServerService.start(CompatibilityMBeanServerService.java:154)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.rmi.NoSuchObjectException: The object identified by: '31' could not be found. Either it was has not been exported or it has been collected by the distributed garbage collector.
    at weblogic.rmi.internal.OIDManager.getServerReference(OIDManager.java:251)
    at weblogic.rmi.extensions.server.ServerHelper.getLocalInitialReference(ServerHelper.java:429)
    at weblogic.rmi.extensions.StubFactory.getStub(StubFactory.java:131)
    at weblogic.rmi.extensions.StubFactory.getStub(StubFactory.java:124)
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialReference(WLInitialContextFactoryDelegate.java:426)
    ... 9 more
    >
    <Jan 20, 2010 6:03:19 PM CST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FAILED>
    <Jan 20, 2010 6:03:19 PM CST> <Error> <WebLogicServer> <BEA-000383> <A critical service failed. The server will shut itself down>
    <Jan 20, 2010 6:03:19 PM CST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    -bash-3.00$
    Edited by: user7322888 on 2010/2/4 下午 11:41

    Hi,
    Reproducing this issue is very easy.....
    1). Just Create a Admin and Managed Server
    2). Start AdminServer then from Admin Console Disable the normal listen-port for admin Server (suppose it was 7001 disable it)....AND enable only the SSL port for Admin Server (example 7002).
    Managed Server (Listen Port=7003 and SSL ListenPort=7004)
    3). Now Try Start Managed Server.
    you wil get the Exact same exception
    <Jan 20, 2010 6:03:19 PM CST> <Error> <Configuration Management> <BEA-150000> <An error occurred while establishing a connection back to the adminstration server t3://140.126.24.25:6001 during startup. Since bootstrap succeeded check that t3://140.126.24.25:6001 uniquely identifies the administration server.
    javax.naming.ServiceUnavailableException [Root exception is java.rmi.NoSuchObjectException: The object identified by: '31' could not be found. Either it was has not been exported or it has been collected by the distributed garbage collector.]
    And
    <Emergency> <Management> <BEA-141151> <The admin server could not be reached at http://140.126.24.25:6001.>
    Now it will be easy for us to find out where is the issue actually.
    Thanks
    Jay SenSharma
    http://jaysensharma.wordpress.com (WebLogic Wonders Are Here)
    Edited by: Jay SenSharma on Feb 24, 2010 4:15 PM

  • Managed Server Error when starting via startManagedWebLogic  '31' could not

    Hi
    in my Managed Server, in my AppDomain
    i just set some Java_Option variable
    bit when itry to run my server using the script,
    after asking User name and Password, Server Log get open
    but utimately its giving me this error, and Server is not geting started,
    ####<Mar 26, 2009 4:29:02 PM GMT+05:30> <Error> <Configuration Management> <HDCHARTOMR1875> <DEPEJBSERVER> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1238065142217> <BEA-150000> <An error occurred while establishing a connection back to the adminstration server http://10.108.66.34:7099 during startup. Since bootstrap succeeded check that http://10.108.66.34:7099 uniquely identifies the administration server.
    javax.naming.ServiceUnavailableException Root exception is java.rmi.NoSuchObjectException: The object identified by: '31' could not be found.  Either it was has not been exported or it has been collected by the distributed garbage collector.
         at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:70)
         at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:32)
         at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLInitialContextFactoryDelegate.java:773)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialReference(WLInitialContextFactoryDelegate.java:428)
         at weblogic.jndi.Environment.getInitialReference(Environment.java:237)
         at weblogic.server.channels.RemoteChannelServiceImpl.registerInternal(RemoteChannelServiceImpl.java:153)
         at weblogic.server.channels.RemoteChannelServiceImpl.registerForever(RemoteChannelServiceImpl.java:127)
         at weblogic.protocol.ConnectMonitorFactory.registerForever(ConnectMonitorFactory.java:69)
         at weblogic.management.provider.MSIService.registerForReconnectToAdminServer(MSIService.java:174)
         at weblogic.management.mbeanservers.compatibility.internal.CompatibilityMBeanServerService.start(CompatibilityMBeanServerService.java:150)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
    But the same server is getting started when m starting it from console???
    Any Help??
    Thanks in Advance
    -Kumar Varun

    Check the CommonEnv and setDomain script for any mis-references. then run those scripts. check the start-up also.
    Is the system having an old jdk version on it? if so remove the references from environment variables and then start the server.

  • RMI server stub could not find in remote machine

    i have a code set
    http://www.devpub.net/java.rar
    when i run it in local machine it works fine.
    but i run the client part, it return
    ClassNotFoundException : Could not find Class (server stub) at codebase

    The client part needs to include the stub, the remote interface itself, and any of your classes named in the remote interface, and so on to closure.

  • "An iPod has been detected, but it could not be identified properly" error

    We have had five iPod Nano's installed via our home computer (Dell PC - Windows Vista):
    one 2nd generation (currently being used)
    one 3rd generation (not in use - was lost)
    one 4th generation (not in use - was stolen)
    two 5th generations (currently being used)
    The iTunes 10.0.1 Update was installed during the first of the two 5th geneartions installation process.
    We recently bought another 5th generation. When we went to install it, we received the error message "An iPod has been detected, but it could not be identified properly". The 2nd generation can access the entire library and download music but the two 5th generations are no longer able to access the library and download music. Basically, they can only be used to listen to the current music within does 5th generation iPod Nano's.
    We tried everything that's been recommended in the Support section but nothing has worked in order to restore the capability of accessing the library and downloading music for the 2 generations....This is where we need HELP!!!
    As for the new 5th generation, we have installed it into our laptop instead with no problems (so far). We've read that there is a way to move the iTunes Library from one computer to another which we hope this will be an option once we fix the issue of the two 5th generations.
    If anyone can provide any recommendations please post. We have spent the better part of our weekend trying to fix this problem with alot of frustration along the way.
    Thank you

    Uninstall everything from your pc that is published by Apple. This includes; iTunes, Quicktime, and Bonjour. I also had this problem and it is VERY frustrating. Then re-install iTunes of course.

  • ORA-12154: TNS:could not resolve the connect identifier specified using TOAD client

    I try to using connect with remote database using TOAD client. My oracle version is 10.2g. I follow these instructions that specified on this link, instead of step 13, because i cant understand what they explain http://http://avangari.wordpress.com/remote-oracle-database-access-using-instant-client-and-toad/ . My Oracle TNS_ADMIN path is C:\oracle\product\10.2.0\db_1\network\ADMIN and ORACLE_HOME is C:\oracle\product\10.2.0\db_1. I found many question regarding this query, but i am not found my answer.

    948021 wrote:
    I try to using connect with remote database using TOAD client. My oracle version is 10.2g. I follow these instructions that specified on this link, instead of step 13, because i cant understand what they explain http://http://avangari.wordpress.com/remote-oracle-database-access-using-instant-client-and-toad/ . My Oracle TNS_ADMIN path is C:\oracle\product\10.2.0\db_1\network\ADMIN and ORACLE_HOME is C:\oracle\product\10.2.0\db_1. I found many question regarding this query, but i am not found my answer.
    see: http://edstevensdba.wordpress.com/2011/02/26/ora-12154tns-03505/ (ora-12154 TNS:could not resolve the connect identifier specified)
    And for background info
    see: http://edstevensdba.wordpress.com/2011/02/09/sqlnet_overview/  (Help! I can’t connect to my database  )
    see: http://edstevensdba.wordpress.com/2011/02/16/sqlnet_client_cfg/  ( Help! I can’t connect to my database (part duex) )

  • In trying to update I received this message: Firefox 3.6.3(2).dmg.part could not be saved, because the source file could not be read.

    In trying to download an update I first received: "There were problems checking for, downloading, or installing this update. Firefox could not be updated because: No data was received (please try again)" It also gave a link to download manually. When I tried from the Firefox website I got: /Users/(deleted for privacy)/Desktop/Firefox 3.6.3(2).dmg.part could not be saved, because the source file could not be read.
    Try again later, or contact the server administrator. I tried this 3 times.
    == This happened ==
    Not sure how often
    == Mon around 11 am, central time, May 17, 2010

    I have tried downloading the file several times and get the same message: "No data received." I have no other system problems, I navigate well to other sites, but I'm unable to download this upgrade. Any suggestions?

Maybe you are looking for