Do i need to bounce database or application after change database

cache size? i suppose not, but want to confirm.

Yes, you do need to stop the db (I just stop apps but you could just do the database) to get the settings to take. Check in Task Manager or whatever evil *nix utility (I have no idea and no it's not really evil) is used to check process memory footprint.
Regards,
Cameron Lackpour

Similar Messages

  • Apache Bounce Must for Application Message Changes???

    Hi Friends,
    Is it necessary to bounce apache and oc4j whenever we need to change the text of an application message that is being used on an OAF page?
    Thanks,
    Amit

    Thanks Ashish.
    What I got from that post is that it is mandatory to bounce apache for application message changes to get reflected.
    What we are doing is -> String strObligStmt = pageContext.getMessage("APPL_SHORT_NAME", "XX_XX_NAME_OF_MSG", msgToken);
    OAFormattedTextBean obligStmtBS = (OAFormattedTextBean)webBean.findIndexedChildRecursive("ObligMsg");
    obligStmtBS.setText(strObligStmt);
    Another thing I got from that post is that we can read the message text directly from FND_MESSAGES and hence get the latest text at all times. But in that case, we will have to substitute the message tokens manually right?
    Actually the whole purpose of application messages is getting defeated here. If we have to bounce apache, it is as tedious as sending a code deployment and the flexibility of having application messages is being compromised.
    THIS QUESTION IS STILL OPEN.
    Thanks,
    Amit

  • Do we need to bounce Oacore jvms / OPMN after Db bounce ?

    Hi,
    If we bounce Db do we need to bounce oacore services opmn services on middle tier also ?
    As far i know only CM bounce is sufficient.
    -Thanks

    Thanks Hussein,
    Yesterday I have bounced Database and restarted ICM,
    Client also confirmed they can access Application. BUt after almost 15 hours they got Internal server errors.
    If the Db goes down all JVMs lost connection to db , after db comes up does all oacore/ JVMs gets db connection automatically ?
    --thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to configuare database in oem after upgrading database.

    Hi,
    I upgraded database from 9i 10g. after upgrading database i removed database configuaration from oem. how to reconfiguarse database

    Hi,
    I am getting following error when configuare
    oracle.sysman.emSDK.emd.comm.CommException: Received unexpected response text : <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD><TITLE>Error Message</TITLE> <META http-equiv=Content-Type content="text/html; charset=UTF-8"> <STYLE id=L_default_1>A { FONT-WEIGHT: bold; FONT-SIZE: 10pt; COLOR: #005a80; FONT-FAMILY: tahoma } A:hover { FONT-WEIGHT: bold; FONT-SIZE: 10pt; COLOR: #0d3372; FONT-FAMILY: tahoma } TD { FONT-SIZE: 8pt; FONT-FAMILY: tahoma } TD.titleBorder { BORDER-RIGHT: #955319 1px solid; BORDER-TOP: #955319 1px solid; PADDING-LEFT: 8px; FONT-WEIGHT: bold; FONT-SIZE: 12pt; VERTICAL-ALIGN: middle; BORDER-LEFT: #955319 0px solid; COLOR: #955319; BORDER-BOTTOM: #955319 1px solid; FONT-FAMILY: tahoma; HEIGHT: 35px; BACKGROUND-COLOR: #d2b87a; TEXT-ALIGN: left } TD.titleBorder_x { BORDER-RIGHT: #955319 0px solid; BORDER-TOP: #955319 1px solid; PADDING-LEFT: 8px; FONT-WEIGHT: bold; FONT-SIZE: 12pt; VERTICAL-ALIGN: middle; BORDER-LEFT: #955319 1px solid; COLOR: #978c79; BORDER-BOTTOM: #955319 1px solid; FONT-FAMILY: tahoma; HEIGHT: 35px; BACK
    Thanks,

  • Report load is slow after changing database servers

    Here is the problem:
    Crystal Reports saves the design time database connection info in the rpt.  When our application tries to run a report against a production database, the rpt takes a long time (60 sec.) to load.  After it has loaded we can change the database logon (in our code) and the report runs successfully.
    It seems like Crystal is trying to connect to the development DB server (but it cannot see it from the production environment).  If we edit the rpt and save the production database connection info in it, the report loads in less than a second. 
    We are an ISV and our application is used at over 2000 sights so it is not practical to edit each rpt at each location.  We have 737 reports and 908 subreports in our application!
    We are currently using the Visual Studio 2008 version of Crystal Reports.  This did not seem to be a problem with VB6/CR8.5.
    Is there some way to tell Crystal not to try connecting to the DB during the report.load?

    I had the same issue with Crystal Report XI R2. The issue seems to be when loading the *.rpt file. The Crystal Report API reads the *.rpt file and read all the relevant info from the report file and store it in the ReportDocument object and generates the object tree. It seem to do a database lookup for every database or table it finds in the main report and all the sub-reports and also for every SQL Expression you have in each report. Since the development database is different to the runtime database I think it waits until it times out. So more sub-reports you have the longer time it takes to load.
    You can resolve this issue by adding the design-time database name mapped to a runtime database ip. For this you need to update the host file in C:\Windows\System32\drivers\etc folder with the relevant info. By adding this there will be no name lookup.
    For example, if the report have the service ID as RACE, add the name RACE and the runtime database ip address in to the host file. Then there will be no lookup. Earlier it took 2 minutes to load the report but then the entry it took only 1 second.
    e.g.
    10.0.0.1     RACE
    Also have a look at http://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/cb6d6fc9-9d57-486c-972e-33b03d4a5759
    Hope this helps.

  • Azure Website doesn't recognize my Database's Table after changing the Schema

    I have a Microsoft Azure Website running and working with an Azure SQL Database for the sole purpose of storing and retrieving user accounts. However I needed a mobile client as well there fore according to numerous tutorials online such as [THIS][1],
    I had to change the 'schema' of the database from 'dbo' to my mobile service's name which is 'usermobileservice'. 
    This was done using the SQL query:
    CREATE SCHEMA usermobileservice;    ALTER SCHEMA usermobileserviceTRANSFER dbo.usertable;
    This did the trick and I was able to connect to the Database using my mobile applications BUT now I can't access the database using my Azure Website! Gives me this error:
    Server Error in '/' Application.
    Invalid object name 'UserTable'.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 
    Exception Details: System.Data.SqlClient.SqlException: Invalid object name 'UserTable'.
    I believe the ASP.NET Web Application cannot find the Database Table anymore since I changed the schema? What is the right way of sharing the data between a Website and a Mobile Service?

    Hi,
    Thank you for your post.
    I am trying to involve someone familiar with this topic to further look at this issue.
    In the meantime, please have a check on the below link and check if it helps.
    https://social.msdn.microsoft.com/Forums/azure/en-US/60764eb6-17d0-4395-a887-2a793b44ce88/connect-mobile-service-to-an-existing-database?forum=azuremobile
    Regards,
    Mekh.

  • Endpoint Protection on System Center 2012 Configuration Manager Unhandled exception occurred in your application after changing the excluded files and locations

    I added a number of folders and files in the excluded files and locations and after that I am unable to access the Antimalware Policies it gives the following error( I am new at sccm):
    Unhandled exception occurred in your application. If you click continue the application will ignore this error and attempt to continue. I you click quit the application will close immediately
    Object reference not set to an instance of an oblect
    With the following details:
    See the end of this message for details on invoking
    just-in-time (JIT) debugging instead of this dialog box.
    ************** Exception Text **************
    System.NullReferenceException: Object reference not set to an instance of an object.
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlQueryPropertySingleItem.get_BooleanValue()
       at Microsoft.ConfigurationManagement.AdminConsole.ClientAgentSettings.Utilities.CreateSCIResultObject(IResultObject antimalwareResultObject)
       at Microsoft.ConfigurationManagement.AdminConsole.ClientAgentSettings.Utilities.LoadDefaultSettingObjects(ConnectionManagerBase connectionManager, Dictionary`2& defaultSettingObjects, DialogType dialogType)
       at Microsoft.ConfigurationManagement.AdminConsole.ClientAgentSettings.HomePageControl.InitializePageControl()
       at Microsoft.ConfigurationManagement.AdminConsole.SccmPageControlDialog.OnLoad(EventArgs e)
       at System.Windows.Forms.Form.OnCreateControl()
       at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
       at System.Windows.Forms.Control.CreateControl()
       at System.Windows.Forms.Control.WmShowWindow(Message& m)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
       at System.Windows.Forms.ContainerControl.WndProc(Message& m)
       at System.Windows.Forms.Form.WmShowWindow(Message& m)
       at System.Windows.Forms.Form.WndProc(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
    ************** Loaded Assemblies **************
    mscorlib
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.18051 built by: FX45RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll
    Microsoft.ConfigurationManagement
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/Microsoft.ConfigurationManagement.exe
    System.Drawing
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.18022 built by: FX45RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
    System
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.18045 built by: FX45RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
    System.Windows.Forms
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.18046 built by: FX45RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
    Microsoft.EnterpriseManagement.UI.ConsoleFramework
        Assembly Version: 7.1.1000.0
        Win32 Version: 7.1.3825.0
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/Microsoft.EnterpriseManagement.UI.ConsoleFramework.DLL
    Microsoft.ConfigurationManagement.ManagementProvider
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/Microsoft.ConfigurationManagement.ManagementProvider.DLL
    System.Xml
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.18058 built by: FX45RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
    Microsoft.EnterpriseManagement.UI.Foundation
        Assembly Version: 7.1.1000.0
        Win32 Version: 7.1.3825.0
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/Microsoft.EnterpriseManagement.UI.Foundation.DLL
    System.Core
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
    System.ServiceModel.Web
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.18045 built by: FX45RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.ServiceModel.Web/v4.0_4.0.0.0__31bf3856ad364e35/System.ServiceModel.Web.dll
    System.ServiceModel
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.18056 built by: FX45RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.ServiceModel/v4.0_4.0.0.0__b77a5c561934e089/System.ServiceModel.dll
    SMDiagnostics
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/SMDiagnostics/v4.0_4.0.0.0__b77a5c561934e089/SMDiagnostics.dll
    System.ServiceModel.Internals
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.ServiceModel.Internals/v4.0_4.0.0.0__31bf3856ad364e35/System.ServiceModel.Internals.dll
    PresentationFramework
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.18058
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework/v4.0_4.0.0.0__31bf3856ad364e35/PresentationFramework.dll
    WindowsBase
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.18058 built by: FX45RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/WindowsBase/v4.0_4.0.0.0__31bf3856ad364e35/WindowsBase.dll
    PresentationCore
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.18058 built by: FX45RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/PresentationCore/v4.0_4.0.0.0__31bf3856ad364e35/PresentationCore.dll
    System.Xaml
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.18016 built by: FX45RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xaml/v4.0_4.0.0.0__b77a5c561934e089/System.Xaml.dll
    System.Configuration
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.18058 built by: FX45RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
    AdminUI.SmsTraceListener
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.SmsTraceListener.DLL
    Microsoft.GeneratedCode
        Assembly Version: 1.0.0.0
        Win32 Version: 4.0.30319.18058 built by: FX45RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
    Microsoft.EnterpriseManagement.UI.ConsoleFramework.resources
        Assembly Version: 7.1.1000.0
        Win32 Version: 7.1.3825.0
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/en/Microsoft.EnterpriseManagement.UI.ConsoleFramework.resources.DLL
    Microsoft.EnterpriseManagement.UI.RibbonConsole
        Assembly Version: 1.0.523.0
        Win32 Version: 3.0.2085.0
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/Microsoft.EnterpriseManagement.UI.RibbonConsole.DLL
    RibbonControlsLibrary
        Assembly Version: 3.5.41019.1
        Win32 Version: 3.5.41019.1
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/RibbonControlsLibrary.DLL
    PresentationFramework.AeroLite
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.18046 built by: FX45RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework.AeroLite/v4.0_4.0.0.0__31bf3856ad364e35/PresentationFramework.AeroLite.dll
    Microsoft.EnterpriseManagement.UI.RibbonLayout
        Assembly Version: 1.0.523.0
        Win32 Version: 3.0.2085.0
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/Microsoft.EnterpriseManagement.UI.RibbonLayout.DLL
    Microsoft.Windows.Shell
        Assembly Version: 3.5.41019.1
        Win32 Version: 3.5.41019.1
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/Microsoft.Windows.Shell.DLL
    Microsoft.VirtualManager.UI.ViewModel.Core
        Assembly Version: 1.0.523.0
        Win32 Version: 3.0.2085.0
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/Microsoft.VirtualManager.UI.ViewModel.Core.DLL
    Microsoft.EnterpriseManagement.UI.Controls
        Assembly Version: 7.1.1000.0
        Win32 Version: 7.1.3825.0
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/Microsoft.EnterpriseManagement.UI.Controls.DLL
    Microsoft.EnterpriseManagement.UI.RibbonData
        Assembly Version: 1.0.523.0
        Win32 Version: 3.0.2085.0
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/Microsoft.EnterpriseManagement.UI.RibbonData.DLL
    AdminUI.HelpSystem
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.HelpSystem.DLL
    AdminUI.UIResources
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.UIResources.DLL
    AdminUI.PersonalFolders
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.PersonalFolders.DLL
    AdminUI.ConsoleGlobalSearchView
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.ConsoleGlobalSearchView.DLL
    PresentationFramework.Classic
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework.Classic/v4.0_4.0.0.0__31bf3856ad364e35/PresentationFramework.Classic.dll
    Microsoft.EnterpriseManagement.UI.Controls.resources
        Assembly Version: 7.1.1000.0
        Win32 Version: 7.1.3825.0
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/en/Microsoft.EnterpriseManagement.UI.Controls.resources.DLL
    WindowsFormsIntegration
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.18058 built by: FX45RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/WindowsFormsIntegration/v4.0_4.0.0.0__31bf3856ad364e35/WindowsFormsIntegration.dll
    PresentationFramework-SystemXml
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework-SystemXml/v4.0_4.0.0.0__b77a5c561934e089/PresentationFramework-SystemXml.dll
    PresentationFramework.Aero
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework.Aero/v4.0_4.0.0.0__31bf3856ad364e35/PresentationFramework.Aero.dll
    PresentationFramework-SystemCore
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework-SystemCore/v4.0_4.0.0.0__b77a5c561934e089/PresentationFramework-SystemCore.dll
    UIAutomationProvider
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/UIAutomationProvider/v4.0_4.0.0.0__31bf3856ad364e35/UIAutomationProvider.dll
    UIAutomationTypes
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/UIAutomationTypes/v4.0_4.0.0.0__31bf3856ad364e35/UIAutomationTypes.dll
    AdminUI.Controls
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.Controls.DLL
    AdminUI.Common
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.Common.DLL
    Microsoft.EnterpriseManagement.UI.WpfViews
        Assembly Version: 7.1.1000.0
        Win32 Version: 7.1.3825.0
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/Microsoft.EnterpriseManagement.UI.WpfViews.DLL
    Microsoft.EnterpriseManagement.UI.ViewFramework
        Assembly Version: 7.1.1000.0
        Win32 Version: 7.1.3825.0
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/Microsoft.EnterpriseManagement.UI.ViewFramework.DLL
    Microsoft.GeneratedCode
        Assembly Version: 1.0.0.0
        Win32 Version: 4.0.30319.18058 built by: FX45RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
    System.Management
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Management/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Management.dll
    AdminUI.WqlQueryEngine
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.WqlQueryEngine.DLL
    AdminUI.WqlInitializer
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.WqlInitializer.DLL
    Microsoft.GeneratedCode
        Assembly Version: 1.0.0.0
        Win32 Version: 4.0.30319.18058 built by: FX45RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
    Microsoft.GeneratedCode
        Assembly Version: 1.0.0.0
        Win32 Version: 4.0.30319.18058 built by: FX45RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
    AdminUI.CollectionMenuActions
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.CollectionMenuActions.DLL
    Microsoft.GeneratedCode
        Assembly Version: 1.0.0.0
        Win32 Version: 4.0.30319.18058 built by: FX45RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
    AdminUI.OSImage
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.OSImage.DLL
    AdminUI.AssetIntelligence
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.AssetIntelligence.DLL
    AdminUI.SoftwareMeteringRule
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.SoftwareMeteringRule.DLL
    AdminUI.DcmProperties
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.DcmProperties.DLL
    AdminUI.UsmPolicy
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.UsmPolicy.DLL
    AdminUI.ClientAgentSettings
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.ClientAgentSettings.DLL
    AdminUI.FirewallPolicy
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.FirewallPolicy.DLL
    AdminUI.LegacySWD
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.LegacySWD.DLL
    AdminUI.ConditionalDeliveryRule
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.ConditionalDeliveryRule.DLL
    AdminUI.VirtualEnvironment
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.VirtualEnvironment.DLL
    AdminUI.SideloadKeys
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.SideloadKeys.DLL
    AdminUI.SoftwareUpdateProperties
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.SoftwareUpdateProperties.DLL
    AdminUI.Driver
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.Driver.DLL
    AdminUI.DriverPackage
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.DriverPackage.DLL
    AdminUI.Subscriptions
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.Subscriptions.DLL
    AdminUI.Queries
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.Queries.DLL
    AdminUI.SrsReporting
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.SrsReporting.DLL
    AdminUI.SiteHierarchyVisualization
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.SiteHierarchyVisualization.DLL
    AdminUI.SystemStatus
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.SystemStatus.DLL
    AdminUI.ClientOperation
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.ClientOperation.DLL
    AdminUI.ClientHealth
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.ClientHealth.DLL
    AdminUI.ContentMonitoring
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.ContentMonitoring.DLL
    AdminUI.AntiMalware
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.AntiMalware.DLL
    AdminUI.CloudServiceRoles
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.CloudServiceRoles.DLL
    AdminUI.SiteHierarchy
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.SiteHierarchy.DLL
    AdminUI.SiteBoundaries
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.SiteBoundaries.DLL
    AdminUI.ExchangeConnector
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.ExchangeConnector.DLL
    AdminUI.Addresses
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.Addresses.DLL
    AdminUI.ActiveDirectory
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.ActiveDirectory.DLL
    AdminUI.AzureServices
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.AzureServices.DLL
    AdminUI.RbacUser
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.RbacUser.DLL
    AdminUI.RbacRole
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.RbacRole.DLL
    AdminUI.RbacCategory
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.RbacCategory.DLL
    AdminUI.Package
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.Package.DLL
    AdminUI.Certificate
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.Certificate.DLL
    AdminUI.SiteSystems
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.SiteSystems.DLL
    AdminUI.HomePageView
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.HomePageView.DLL
    Microsoft.EnterpriseManagement.UI.WpfViews.resources
        Assembly Version: 7.1.1000.0
        Win32 Version: 7.1.3825.0
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/en/Microsoft.EnterpriseManagement.UI.WpfViews.resources.DLL
    Microsoft.GeneratedCode
        Assembly Version: 1.0.0.0
        Win32 Version: 4.0.30319.18058 built by: FX45RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
    AdminUI.ViewCommon
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.ViewCommon.DLL
    Microsoft.GeneratedCode
        Assembly Version: 1.0.0.0
        Win32 Version: 4.0.30319.18058 built by: FX45RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
    Microsoft.GeneratedCode
        Assembly Version: 1.0.0.0
        Win32 Version: 4.0.30319.18058 built by: FX45RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
    AdminUI.AICustomizeCatalog
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.AICustomizeCatalog.DLL
    AdminUI.AISoftwareProducts
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.AISoftwareProducts.DLL
    AdminUI.ConsoleView
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.ConsoleView.DLL
    AdminUI.External.Controls
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.External.Controls.DLL
    Microsoft.GeneratedCode
        Assembly Version: 1.0.0.0
        Win32 Version: 4.0.30319.18058 built by: FX45RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
    System.Data
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.18046 built by: FX45RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.Data/v4.0_4.0.0.0__b77a5c561934e089/System.Data.dll
    System.Numerics
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Numerics/v4.0_4.0.0.0__b77a5c561934e089/System.Numerics.dll
    PresentationFramework-SystemData
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework-SystemData/v4.0_4.0.0.0__b77a5c561934e089/PresentationFramework-SystemData.dll
    Microsoft.ConfigurationManagement.DialogFramework
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/Microsoft.ConfigurationManagement.DialogFramework.DLL
    Microsoft.GeneratedCode
        Assembly Version: 1.0.0.0
        Win32 Version: 4.0.30319.18058 built by: FX45RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
    AdminUI.DialogFoundation
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.DialogFoundation.DLL
    Accessibility
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Accessibility/v4.0_4.0.0.0__b03f5f7f11d50a3a/Accessibility.dll
    AdminUI.DetailPanel
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.DetailPanel.DLL
    AdminUI.FeaturesUtilities
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.FeaturesUtilities.DLL
    Microsoft.GeneratedCode
        Assembly Version: 1.0.0.0
        Win32 Version: 4.0.30319.18058 built by: FX45RTMGDR
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
    AdminUI.ConnectionAccount
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.ConnectionAccount.DLL
    System.Runtime.Caching
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Caching/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Runtime.Caching.dll
    AdminUI.ConsoleRootActions
        Assembly Version: 5.0.0.0
        Win32 Version: 5.0.7804.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Configuration%20Manager/AdminConsole/bin/AdminUI.ConsoleRootActions.DLL
    ************** JIT Debugging **************
    To enable just-in-time (JIT) debugging, the .config file for this
    application or computer (machine.config) must have the
    jitDebugging value set in the system.windows.forms section.
    The application must also be compiled with debugging
    enabled.
    For example:
    <configuration>
        <system.windows.forms jitDebugging="true" />
    </configuration>
    When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the computer
    rather than be handled by this dialog box.
    When I go and check the Endpoint Protection properties it gives me the following Error:
    The SMS Provider reported and error
    With the following Details:
    ConfigMgr Error Object:
    instance of SMS_ExtendedStatus
     Description = "ERROR ON Property Convert";
     ErrorCode = 0;
     File = "e:\\nts_sccm_release\\sms\\siteserver\\sdk_provider\\smsprov\\sspsitesettingitem.h";
     Line = 377;
     Operation = "ExecQuery";
     ParameterInfo = "SELECT * FROM SMS_SCI_ClientComp WHERE FileType=2 AND SiteCode='CCM' AND ItemName='Antimalware Agent' AND ItemType='Client Component'";
     ProviderName = "WinMgmt";
     StatusCode = 2147749917;
    Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlQueryException
    The SMS Provider reported an error.
    Stack Trace:
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlQueryResultsObject.<GetEnumerator>d__0.MoveNext()
       at Microsoft.ConfigurationManagement.AdminConsole.SiteSystems.EndpointProtectionSpynetControl.InitializePageControl()
       at Microsoft.ConfigurationManagement.AdminConsole.SmsPropertyPage.OnInitialize()
    System.Management.ManagementException
    Unexpected error
    Stack Trace:
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlQueryResultsObject.<GetEnumerator>d__0.MoveNext()
       at Microsoft.ConfigurationManagement.AdminConsole.SiteSystems.EndpointProtectionSpynetControl.InitializePageControl()
       at Microsoft.ConfigurationManagement.AdminConsole.SmsPropertyPage.OnInitialize()

    Hi,
    If you only add one file into the excluded files and locations, does this error still appear?
    Could you reproduce this error on another system?
    Best Regards,
    Joyce Li
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Update directory in Java application after change.

    I'm making an application that creates a file in a directory and then takes that file and converts it to a ISO. The problem I have is when I run this command
                try {
                    String command = "mysqldump -u root " + db10 + " -r/data/backups/dbbackup/" + db10 + ".sql";
                    Process process = Runtime.getRuntime().exec(command);
                    FlushStream error = new FlushStream(process.getErrorStream());
                    FlushStream output = new FlushStream(process.getInputStream());
                    error.start();
                    output.start();
                    process.waitFor();
                    process.destroy();
                } catch (InterruptedException ex) {
                    Logger.getLogger(MainFrame.class.getName()).log(Level.SEVERE, null, ex);
                } catch (IOException ex) {
            }It creates the file but, when I run this command:
            try {
                String command = "mkisofs -r -o /data/backups/images/" + backu1 + ".iso /data/backups/dbbackup/*";
                System.out.println(command);
                Process process1 = Runtime.getRuntime().exec(command);
                FlushStream error = new FlushStream(process1.getErrorStream());
                FlushStream output = new FlushStream(process1.getInputStream());
                error.start();
                output.start();
                process1.waitFor();
                process1.destroy();
            } catch (InterruptedException ex) {
                Logger.getLogger(MainFrame.class.getName()).log(Level.SEVERE, null, ex);
            } catch (IOException ex) {
            }It comes back with an error saying that there are no files in that directory but, there is. How do I get java to "refresh" the directory so that it sees the file.

    I don't see any Java code that you've posted that looks in a directory.
    My guess is that the programs you're exec'ing have a different working directory than you think they do, or they're writing files to different directory that the other one is reading from.

  • Error in compiling Flex application  - After changing my query in BW

    Hi All!!
    I'm facing the following problem:
    I have created a VC model based on a BW Query View... I have changed the query in BW (added a new key figure) and then I've refreshed the Query View in my VC model...
    After the refresh, I get the error "Error in compiling Flex application (1). Consult log file for details" everytime I try to deploy...
    Have you faced a similar problem? Does this mean that I can no longer change any query or view used in VC models???
    Thanks in Advance!
    Cris

    Hi Prachi,
    I've tried all the options you listed and it still doesn't work... I even tried to create a new query as a copy of the first one... and the error persists...
    Any other good idea (the model I´m talking about is really huge.. creating it again from zero would be a nightmare!!!)?
    Thanks in advance,
    Cris

  • Problematic SQL after changing database version

    Hi,
    We have the problem with the one SQL statement, after migration from 9.2.0.7 to 11.2.0.1 Oracle database.
    I also must to say that value of the parameter: optimizer_features_enable is 9.2.0
    We have one problematic SQL statement.
    What is happening?
    Sometimes, this SQL statement takes a big stress to the CPU to execute (we see it from ADDM report and other monitoring tools).
    In this situation we react with exec sys.DBMS_SHARED_POOL.PURGE(('******************', 'C'); command.
    I don't have to much tunning experience, but it's look like the execution plan become different which reacts negatively to the CPU.
    After purging from shared pool everything going fine, CPU is normally stressed.
    Please, can anybody give me some advice.
    How I can fix the good execution plan for this problematic SQL (created after purging), so optimizer will always use this good execution plan.
    Is it possible to use SQL Plan Baselines in this situation (any problem here)?
    Please sorry because, I am new in this area.
    Best regards,
    D.R

    Thanks William,
    The following SQL statement has been identified to perform poorly.
    This is the statement:
    SELECT POSAO_POSAO_ID,BROJ_PROTOKOLA,NAZIV,IME,ULICA_OPSTINA_ID,ULICA_ID
    ,BROJ_ZGRADE,DATUM_DAJE,VRSTA_ZAHTEVA_ID,STA_ZADATK_STATUS_ZADATKA_ID
    FROM FTPRO.RADNA_LISTA_ZADATAKA WHERE sta_zadatk_status_zadatka_id ='1'
    and vr_zadatka_vrsta_zadatka_id='0321' and oj_ftpro_oj_ftpro_id_zadatak='7822'
    and (datum_daje between to_date('01.10.2010','dd.mm.yyyy') and
    to_date('18.10.2010','dd.mm.yyyy')+1) and (ulica_opstina_id like '%' or
    ulica_opstina_id is null) and (ulica_id like '%' or ulica_id is null)
    and (broj_zgrade like '%'||'%' or broj_zgrade is null) and
    broj_protokola like '%' and posao_posao_id like '%' and (('%'='%' and
    naziv like '%') or ('%'!='%' and ime like '%' and naziv like '%'))
    order by DATUM_DAJE DESC;The version of the database is 11.2.0.1.0
    These are the parameters relevant to the optimizer:
    system> show parameter optimizer
    NAME                                 TYPE        VALUE
    optimizer_capture_sql_plan_baselines boolean     FALSE
    optimizer_dynamic_sampling           integer     1
    optimizer_features_enable            string      9.2.0
    optimizer_index_caching              integer     0
    optimizer_index_cost_adj             integer     100
    optimizer_mode                       string      CHOOSE
    optimizer_secure_view_merging        boolean     TRUE
    optimizer_use_invisible_indexes      boolean     FALSE
    optimizer_use_pending_statistics     boolean     FALSE
    optimizer_use_sql_plan_baselines     boolean     TRUE
    system>Here is the output of EXPLAIN PLAN:
    system> explain plan for
      2  SELECT POSAO_POSAO_ID,BROJ_PROTOKOLA,NAZIV,IME,ULICA_OPSTINA_ID,ULICA_ID
      3  ,BROJ_ZGRADE,DATUM_DAJE,VRSTA_ZAHTEVA_ID,STA_ZADATK_STATUS_ZADATKA_ID
      4  FROM FTPRO.RADNA_LISTA_ZADATAKA WHERE sta_zadatk_status_zadatka_id ='1'
      5  and vr_zadatka_vrsta_zadatka_id='0321' and oj_ftpro_oj_ftpro_id_zadatak='7822'
      6  and (datum_daje between to_date('01.10.2010','dd.mm.yyyy') and
      7  to_date('18.10.2010','dd.mm.yyyy')+1) and (ulica_opstina_id like '%' or
      8  ulica_opstina_id is null) and (ulica_id like '%' or ulica_id is null)
      9  and (broj_zgrade like '%'||'%' or broj_zgrade is null) and
    10  broj_protokola like '%' and posao_posao_id like '%' and (('%'='%' and
    11  naziv like '%') or ('%'!='%' and ime like '%' and naziv like '%'))
    12  order by DATUM_DAJE DESC;
    Explained.
    Elapsed: 00:00:00.01
    system> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 3274296436
    | Id  | Operation                          | Name                         | Rows  | Bytes | Cost  |
    |   0 | SELECT STATEMENT                   |                              |    15 |  2895 |   208 |
    |   1 |  SORT ORDER BY                     |                              |    15 |  2895 |   208 |
    |   2 |   VIEW                             | RADNA_LISTA_ZADATAKA         |    15 |  2895 |   162 |
    |   3 |    SORT UNIQUE                     |                              |    15 |  1875 |   162 |
    |*  4 |     FILTER                         |                              |       |       |       |
    |   5 |      NESTED LOOPS OUTER            |                              |    15 |  1875 |   115 |
    |   6 |       NESTED LOOPS                 |                              |    15 |  1470 |    70 |
    |   7 |        NESTED LOOPS                |                              |    15 |  1050 |    40 |
    |*  8 |         TABLE ACCESS BY INDEX ROWID| ZADATAK                      |    15 |   450 |    10 |
    |*  9 |          INDEX RANGE SCAN          | ZADATAK_OJ_DATUM_DAJE_STATUS |    15 |       |     4 |
    |* 10 |         TABLE ACCESS BY INDEX ROWID| ZAHTEV                       |     1 |    40 |     2 |
    |* 11 |          INDEX UNIQUE SCAN         | ZAHTEV_POSAO_ID_UNIQUE       |     1 |       |     1 |
    |* 12 |        TABLE ACCESS BY INDEX ROWID | KORISNIK_USLUGA              |     1 |    28 |     2 |
    |* 13 |         INDEX UNIQUE SCAN          | KORISNIK_PK                  |     1 |       |     1 |
    |  14 |       TABLE ACCESS BY INDEX ROWID  | ADRESA_INSTALACIJE           |     1 |    27 |     3 |
    |* 15 |        INDEX RANGE SCAN            | ADR_INSTAL_PK                |     1 |       |     2 |
    Predicate Information (identified by operation id):
       4 - filter((("ADRESA_INSTALACIJE"."TIP_ADRESE_TIP_ADRESE_ID"='1' OR
                  "ADRESA_INSTALACIJE"."TIP_ADRESE_TIP_ADRESE_ID"='7' OR
                  "ADRESA_INSTALACIJE"."TIP_ADRESE_TIP_ADRESE_ID"='8' OR
                  "ADRESA_INSTALACIJE"."TIP_ADRESE_TIP_ADRESE_ID"='9') OR
                  "ADRESA_INSTALACIJE"."TIP_ADRESE_TIP_ADRESE_ID" IS NULL) AND (CASE  WHEN
                  ("ADRESA_INSTALACIJE"."TIP_ADRESE_TIP_ADRESE_ID"='8' AND
                  "ZAHTEV"."VRSTA_ZAHTEVA_ID"<>'136') THEN '' ELSE "ADRESA_INSTALACIJE"."ULICA_OPSTINA_ID"
                  END  LIKE '%' OR CASE  WHEN ("ADRESA_INSTALACIJE"."TIP_ADRESE_TIP_ADRESE_ID"='8' AND
                  "ZAHTEV"."VRSTA_ZAHTEVA_ID"<>'136') THEN '' ELSE "ADRESA_INSTALACIJE"."ULICA_OPSTINA_ID"
                  END  IS NULL) AND (CASE  WHEN ("ADRESA_INSTALACIJE"."TIP_ADRESE_TIP_ADRESE_ID"='8' AND
                  "ZAHTEV"."VRSTA_ZAHTEVA_ID"<>'136') THEN '' ELSE "ADRESA_INSTALACIJE"."ULICA_ID" END  LIKE
                  '%' OR CASE  WHEN ("ADRESA_INSTALACIJE"."TIP_ADRESE_TIP_ADRESE_ID"='8' AND
                  "ZAHTEV"."VRSTA_ZAHTEVA_ID"<>'136') THEN '' ELSE "ADRESA_INSTALACIJE"."ULICA_ID" END  IS
                  NULL) AND (CASE  WHEN ("ADRESA_INSTALACIJE"."TIP_ADRESE_TIP_ADRESE_ID"='8' AND
                  "ZAHTEV"."VRSTA_ZAHTEVA_ID"<>'136') THEN '' ELSE "ADRESA_INSTALACIJE"."BROJ_ZGRADE" END
                  LIKE '%%' OR CASE  WHEN ("ADRESA_INSTALACIJE"."TIP_ADRESE_TIP_ADRESE_ID"='8' AND
                  "ZAHTEV"."VRSTA_ZAHTEVA_ID"<>'136') THEN '' ELSE "ADRESA_INSTALACIJE"."BROJ_ZGRADE" END
                  IS NULL))
       8 - filter("ZADATAK"."POSAO_POSAO_ID" LIKE '%')
       9 - access("ZADATAK"."OJ_FTPRO_OJ_FTPRO_ID_ZADATAK"='7822' AND
                  "ZADATAK"."VR_ZADATKA_VRSTA_ZADATKA_ID"='0321' AND
                  "ZADATAK"."STA_ZADATK_STATUS_ZADATKA_ID"='1' AND "ZADATAK"."DATUM_DAJE">=TO_DATE('
                  2010-10-01 00:00:00', 'syyyy-mm-dd hh24:mi:ss') AND "ZADATAK"."DATUM_DAJE"<=TO_DATE('
                  2010-10-19 00:00:00', 'syyyy-mm-dd hh24:mi:ss'))
      10 - filter("ZAHTEV"."BROJ_PROTOKOLA" LIKE '%')
      11 - access("ZADATAK"."POSAO_POSAO_ID"="ZAHTEV"."ZAHTEV_POSAO_ID")
           filter("ZAHTEV"."ZAHTEV_POSAO_ID" LIKE '%')
      12 - filter("KORISNIK_USLUGA"."NAZIV" LIKE '%')
      13 - access("KORISNIK_USLUGA"."KORISNIK_ID"="ZAHTEV"."KORISNIK_KORISNIK_ID")
      15 - access("ADRESA_INSTALACIJE"."ZAHTEV_ZAHTEV_ID"(+)="ZAHTEV"."ZAHTEV_ID")
    Note
       - cpu costing is off (consider enabling it)
    60 rows selected.
    Elapsed: 00:00:00.14
    Execution Plan
    Plan hash value: 3013799171
    | Id  | Operation                         | Name    |
    |   0 | SELECT STATEMENT                  |         |
    |   1 |  COLLECTION ITERATOR PICKLER FETCH| DISPLAY |
    Note
       - rule based optimizer used (consider using cbo)
    Statistics
             27  recursive calls
             12  db block gets
             54  consistent gets
              0  physical reads
              0  redo size
           5112  bytes sent via SQL*Net to client
            264  bytes received via SQL*Net from client
              5  SQL*Net roundtrips to/from client
              1  sorts (memory)
              0  sorts (disk)
             60  rows processed
    system>Here is the output of SQL*Plus AUTOTRACE including the TIMING information:
    system> set autotrace on
    system> SELECT POSAO_POSAO_ID,BROJ_PROTOKOLA,NAZIV,IME,ULICA_OPSTINA_ID,ULICA_ID
      2  ,BROJ_ZGRADE,DATUM_DAJE,VRSTA_ZAHTEVA_ID,STA_ZADATK_STATUS_ZADATKA_ID
      3  FROM FTPRO.RADNA_LISTA_ZADATAKA WHERE sta_zadatk_status_zadatka_id ='1'
      4  and vr_zadatka_vrsta_zadatka_id='0321' and oj_ftpro_oj_ftpro_id_zadatak='7822'
      5  and (datum_daje between to_date('01.10.2010','dd.mm.yyyy') and
      6  to_date('18.10.2010','dd.mm.yyyy')+1) and (ulica_opstina_id like '%' or
      7  ulica_opstina_id is null) and (ulica_id like '%' or ulica_id is null)
      8  and (broj_zgrade like '%'||'%' or broj_zgrade is null) and
      9  broj_protokola like '%' and posao_posao_id like '%' and (('%'='%' and
    10  naziv like '%') or ('%'!='%' and ime like '%' and naziv like '%'))
    11  order by DATUM_DAJE DESC;
    POSAO_POSA BROJ_PROTO NAZIV
                                                                                                             IME                                      ULI
    A ULICA BROJ DATUM_DA VRS S
    158183910  158183910  SJAJ SZR BESLAĂ BOSILJKA
                                                                                                                                                      709
    4 01465  BB  15.10.10 94        1
    158171213  158171213  BEZAREVIĂ
                                                                                                             JANKO                                    000
    0 14597  72  15.10.10 94        1
    157029103  280083-35  NAFTNA INDUSTRIJA SRBIJE AD NOVI SAD
                                                                                                                                                      802
    9 02358  27  05.10.10 103 1
    Elapsed: 00:00:00.01
    Execution Plan
    Plan hash value: 3274296436
    | Id  | Operation                          | Name                         | Rows  | Bytes | Cost  |
    |   0 | SELECT STATEMENT                   |                              |    15 |  2895 |   208 |
    |   1 |  SORT ORDER BY                     |                              |    15 |  2895 |   208 |
    |   2 |   VIEW                             | RADNA_LISTA_ZADATAKA         |    15 |  2895 |   162 |
    |   3 |    SORT UNIQUE                     |                              |    15 |  1875 |   162 |
    |*  4 |     FILTER                         |                              |       |       |       |
    |   5 |      NESTED LOOPS OUTER            |                              |    15 |  1875 |   115 |
    |   6 |       NESTED LOOPS                 |                              |    15 |  1470 |    70 |
    |   7 |        NESTED LOOPS                |                              |    15 |  1050 |    40 |
    |*  8 |         TABLE ACCESS BY INDEX ROWID| ZADATAK                      |    15 |   450 |    10 |
    |*  9 |          INDEX RANGE SCAN          | ZADATAK_OJ_DATUM_DAJE_STATUS |    15 |       |     4 |
    |* 10 |         TABLE ACCESS BY INDEX ROWID| ZAHTEV                       |     1 |    40 |     2 |
    |* 11 |          INDEX UNIQUE SCAN         | ZAHTEV_POSAO_ID_UNIQUE       |     1 |       |     1 |
    |* 12 |        TABLE ACCESS BY INDEX ROWID | KORISNIK_USLUGA              |     1 |    28 |     2 |
    |* 13 |         INDEX UNIQUE SCAN          | KORISNIK_PK                  |     1 |       |     1 |
    |  14 |       TABLE ACCESS BY INDEX ROWID  | ADRESA_INSTALACIJE           |     1 |    27 |     3 |
    |* 15 |        INDEX RANGE SCAN            | ADR_INSTAL_PK                |     1 |       |     2 |
    Predicate Information (identified by operation id):
       4 - filter((("ADRESA_INSTALACIJE"."TIP_ADRESE_TIP_ADRESE_ID"='1' OR
                  "ADRESA_INSTALACIJE"."TIP_ADRESE_TIP_ADRESE_ID"='7' OR
                  "ADRESA_INSTALACIJE"."TIP_ADRESE_TIP_ADRESE_ID"='8' OR
                  "ADRESA_INSTALACIJE"."TIP_ADRESE_TIP_ADRESE_ID"='9') OR
                  "ADRESA_INSTALACIJE"."TIP_ADRESE_TIP_ADRESE_ID" IS NULL) AND (CASE  WHEN
                  ("ADRESA_INSTALACIJE"."TIP_ADRESE_TIP_ADRESE_ID"='8' AND
                  "ZAHTEV"."VRSTA_ZAHTEVA_ID"<>'136') THEN '' ELSE "ADRESA_INSTALACIJE"."ULICA_OPSTINA_ID"
                  END  LIKE '%' OR CASE  WHEN ("ADRESA_INSTALACIJE"."TIP_ADRESE_TIP_ADRESE_ID"='8' AND
                  "ZAHTEV"."VRSTA_ZAHTEVA_ID"<>'136') THEN '' ELSE "ADRESA_INSTALACIJE"."ULICA_OPSTINA_ID"
                  END  IS NULL) AND (CASE  WHEN ("ADRESA_INSTALACIJE"."TIP_ADRESE_TIP_ADRESE_ID"='8' AND
                  "ZAHTEV"."VRSTA_ZAHTEVA_ID"<>'136') THEN '' ELSE "ADRESA_INSTALACIJE"."ULICA_ID" END  LIKE
                  '%' OR CASE  WHEN ("ADRESA_INSTALACIJE"."TIP_ADRESE_TIP_ADRESE_ID"='8' AND
                  "ZAHTEV"."VRSTA_ZAHTEVA_ID"<>'136') THEN '' ELSE "ADRESA_INSTALACIJE"."ULICA_ID" END  IS
                  NULL) AND (CASE  WHEN ("ADRESA_INSTALACIJE"."TIP_ADRESE_TIP_ADRESE_ID"='8' AND
                  "ZAHTEV"."VRSTA_ZAHTEVA_ID"<>'136') THEN '' ELSE "ADRESA_INSTALACIJE"."BROJ_ZGRADE" END
                  LIKE '%%' OR CASE  WHEN ("ADRESA_INSTALACIJE"."TIP_ADRESE_TIP_ADRESE_ID"='8' AND
                  "ZAHTEV"."VRSTA_ZAHTEVA_ID"<>'136') THEN '' ELSE "ADRESA_INSTALACIJE"."BROJ_ZGRADE" END
                  IS NULL))
       8 - filter("ZADATAK"."POSAO_POSAO_ID" LIKE '%')
       9 - access("ZADATAK"."OJ_FTPRO_OJ_FTPRO_ID_ZADATAK"='7822' AND
                  "ZADATAK"."VR_ZADATKA_VRSTA_ZADATKA_ID"='0321' AND
                  "ZADATAK"."STA_ZADATK_STATUS_ZADATKA_ID"='1' AND "ZADATAK"."DATUM_DAJE">=TO_DATE('
                  2010-10-01 00:00:00', 'syyyy-mm-dd hh24:mi:ss') AND "ZADATAK"."DATUM_DAJE"<=TO_DATE('
                  2010-10-19 00:00:00', 'syyyy-mm-dd hh24:mi:ss'))
      10 - filter("ZAHTEV"."BROJ_PROTOKOLA" LIKE '%')
      11 - access("ZADATAK"."POSAO_POSAO_ID"="ZAHTEV"."ZAHTEV_POSAO_ID")
           filter("ZAHTEV"."ZAHTEV_POSAO_ID" LIKE '%')
      12 - filter("KORISNIK_USLUGA"."NAZIV" LIKE '%')
      13 - access("KORISNIK_USLUGA"."KORISNIK_ID"="ZAHTEV"."KORISNIK_KORISNIK_ID")
      15 - access("ADRESA_INSTALACIJE"."ZAHTEV_ZAHTEV_ID"(+)="ZAHTEV"."ZAHTEV_ID")
    Note
       - cpu costing is off (consider enabling it)
    Statistics
              0  recursive calls
              0  db block gets
             44  consistent gets
              0  physical reads
              0  redo size
            799  bytes sent via SQL*Net to client
            243  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              2  sorts (memory)
              0  sorts (disk)
              3  rows processed
    system>The TKPROF output for this statement looks like the following:
    TKPROF: Release 11.2.0.1.0 - Development on Mon Oct 25 09:49:35 2010
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    Trace file: tis1_ora_21826_Look_For_Me.trc
    Sort options: prsela  exeela  fchela
    count    = number of times OCI procedure was executed
    cpu      = cpu time in seconds executing
    elapsed  = elapsed time in seconds executing
    disk     = number of physical reads of buffers from disk
    query    = number of buffers gotten for consistent read
    current  = number of buffers gotten in current mode (usually for update)
    rows     = number of rows processed by the fetch or execute call
    SELECT POSAO_POSAO_ID,BROJ_PROTOKOLA,NAZIV,IME,ULICA_OPSTINA_ID,ULICA_ID
    ,BROJ_ZGRADE,DATUM_DAJE,VRSTA_ZAHTEVA_ID,STA_ZADATK_STATUS_ZADATKA_ID
    FROM FTPRO.RADNA_LISTA_ZADATAKA WHERE sta_zadatk_status_zadatka_id ='1'
    and vr_zadatka_vrsta_zadatka_id='0321' and oj_ftpro_oj_ftpro_id_zadatak='7822'
    and (datum_daje between to_date('01.10.2010','dd.mm.yyyy') and
    to_date('18.10.2010','dd.mm.yyyy')+1) and (ulica_opstina_id like '%' or
    "a.txt" 144 lines, 7472 characters
    TKPROF: Release 11.2.0.1.0 - Development on Mon Oct 25 09:49:35 2010
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    Trace file: tis1_ora_21826_Look_For_Me.trc
    Sort options: prsela  exeela  fchela
    count    = number of times OCI procedure was executed
    cpu      = cpu time in seconds executing
    elapsed  = elapsed time in seconds executing
    disk     = number of physical reads of buffers from disk
    query    = number of buffers gotten for consistent read
    current  = number of buffers gotten in current mode (usually for update)
    rows     = number of rows processed by the fetch or execute call
    SELECT POSAO_POSAO_ID,BROJ_PROTOKOLA,NAZIV,IME,ULICA_OPSTINA_ID,ULICA_ID
    ,BROJ_ZGRADE,DATUM_DAJE,VRSTA_ZAHTEVA_ID,STA_ZADATK_STATUS_ZADATKA_ID
    FROM FTPRO.RADNA_LISTA_ZADATAKA WHERE sta_zadatk_status_zadatka_id ='1'
    and vr_zadatka_vrsta_zadatka_id='0321' and oj_ftpro_oj_ftpro_id_zadatak='7822'
    and (datum_daje between to_date('01.10.2010','dd.mm.yyyy') and
    to_date('18.10.2010','dd.mm.yyyy')+1) and (ulica_opstina_id like '%' or
    ulica_opstina_id is null) and (ulica_id like '%' or ulica_id is null)
    and (broj_zgrade like '%'||'%' or broj_zgrade is null) and
    broj_protokola like '%' and posao_posao_id like '%' and (('%'='%' and
    naziv like '%') or ('%'!='%' and ime like '%' and naziv like '%'))
    order by DATUM_DAJE DESC
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.02       0.01          0          0          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch        2      0.00       0.00          2         44          0           3
    total        4      0.02       0.02          2         44          0           3
    Misses in library cache during parse: 1
    Optimizer mode: CHOOSE
    Parsing user id: 5
    Rows     Row Source Operation
          3  SORT ORDER BY (cr=44 pr=2 pw=0 time=0 us cost=208 size=2895 card=15)
          3   VIEW  RADNA_LISTA_ZADATAKA (cr=44 pr=2 pw=0 time=6 us cost=162 size=2895 card=15)
          3    SORT UNIQUE (cr=44 pr=2 pw=0 time=2 us cost=162 size=1875 card=15)
          3     FILTER  (cr=44 pr=2 pw=0 time=10406 us)
          3      NESTED LOOPS OUTER (cr=44 pr=2 pw=0 time=10402 us cost=115 size=1875 card=15)
          3       NESTED LOOPS  (cr=33 pr=2 pw=0 time=10310 us cost=70 size=1470 card=15)
          3        NESTED LOOPS  (cr=22 pr=0 pw=0 time=120 us cost=40 size=1050 card=15)
          3         TABLE ACCESS BY INDEX ROWID ZADATAK (cr=11 pr=0 pw=0 time=58 us cost=10 size=450 card=15)
          3          INDEX RANGE SCAN ZADATAK_OJ_DATUM_DAJE_STATUS (cr=8 pr=0 pw=0 time=46 us cost=4 size=0 card=15)(object id 74612)
          3         TABLE ACCESS BY INDEX ROWID ZAHTEV (cr=11 pr=0 pw=0 time=0 us cost=2 size=40 card=1)
          3          INDEX UNIQUE SCAN ZAHTEV_POSAO_ID_UNIQUE (cr=8 pr=0 pw=0 time=0 us cost=1 size=0 card=1)(object id 74674)
          3        TABLE ACCESS BY INDEX ROWID KORISNIK_USLUGA (cr=11 pr=2 pw=0 time=0 us cost=2 size=28 card=1)
          3         INDEX UNIQUE SCAN KORISNIK_PK (cr=8 pr=0 pw=0 time=0 us cost=1 size=0 card=1)(object id 70404)
          3       TABLE ACCESS BY INDEX ROWID ADRESA_INSTALACIJE (cr=11 pr=0 pw=0 time=0 us cost=3 size=27 card=1)
          3        INDEX RANGE SCAN ADR_INSTAL_PK (cr=8 pr=0 pw=0 time=0 us cost=2 size=0 card=1)(object id 74677)
    SQL ID: 9babjv8yq8ru3
    Plan Hash: 0
    BEGIN DBMS_OUTPUT.GET_LINES(:LINES, :NUMLINES); END;
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        2      0.00       0.00          0          0          0           0
    Execute      2      0.00       0.00          0          0          0           2
    Fetch        0      0.00       0.00          0          0          0           0
    total        4      0.00       0.00          0          0          0           2
    Misses in library cache during parse: 0
    Optimizer mode: CHOOSE
    Parsing user id: 5
    SQL ID: 1a2g3z4rj1uq2
    Plan Hash: 0
    alter session set sql_trace true
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        0      0.00       0.00          0          0          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch        0      0.00       0.00          0          0          0           0
    total        1      0.00       0.00          0          0          0           0
    Misses in library cache during parse: 0
    Misses in library cache during execute: 1
    Optimizer mode: CHOOSE
    Parsing user id: 5
    OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        3      0.02       0.01          0          0          0           0
    Execute      4      0.00       0.00          0          0          0           2
    Fetch        2      0.00       0.00          2         44          0           3
    total        9      0.02       0.02          2         44          0           5
    Misses in library cache during parse: 1
    Misses in library cache during execute: 1
    OVERALL TOTALS FOR ALL RECURSIVE STATEMENTS
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        6      0.01       0.00          0          0          0           0
    Execute      6      0.00       0.01          0          1          4           1
    Fetch        5      0.00       0.00          0         11          0           4
    total       17      0.01       0.01          0         12          4           5
    Misses in library cache during parse: 3
    Misses in library cache during execute: 3
        4  user  SQL statements in session.
        6  internal SQL statements in session.
       10  SQL statements in session.
    Trace file: tis1_ora_21826_Look_For_Me.trc
    Trace file compatibility: 11.1.0.7
    Sort options: prsela  exeela  fchela
           1  session in tracefile.
           4  user  SQL statements in trace file.
           6  internal SQL statements in trace file.
          10  SQL statements in trace file.
           8  unique SQL statements in trace file.
         140  lines in trace file.
          43  elapsed seconds in trace file.
    Fetch        5      0.00       0.00          0         11          0           4
    total       17      0.01       0.01          0         12          4           5
    Misses in library cache during parse: 3
    Misses in library cache during execute: 3
        4  user  SQL statements in session.
        6  internal SQL statements in session.
       10  SQL statements in session.
    Trace file: tis1_ora_21826_Look_For_Me.trc
    Trace file compatibility: 11.1.0.7
    Sort options: prsela  exeela  fchela
           1  session in tracefile.
           4  user  SQL statements in trace file.
           6  internal SQL statements in trace file.
          10  SQL statements in trace file.
           8  unique SQL statements in trace file.
         140  lines in trace file.
          43  elapsed seconds in trace file.I am not sure now about the chenging execution plan when the problem exists.
    I am sure that ADDM shows that this is problematic sql, and after purging this
    SQL CPU burden is goring from 95% to 40%.
    It's practicaly impossible to simulate this problem, because it's appear sometimes, after we take purging.
    I have image from EM which show the CPU burden, but I don't know is it possible to insert image here.
    Best regards,
    D.R

  • ACS database not functioning after changing secondary acs ip.

    Hi.. im having 2 ACS 3.1 server. ACS01 (Primary) & ACS02 (Secondary). Recently we have moved ACS02 to another site and changed its ip address.
    When we do database replication from ACS01, we received error message saying that ACS02 has denied replication request.
    Any idea whats may be the problem ?

    Consider these points when you implement the Cisco Secure database replication feature:
    1) ACS only supports database replication to other ACS servers. All ACS servers that participate in Cisco Secure database replication must run the same version and patch level of ACS.
    2)The primary server transmits the compressed, encrypted copy of its database components to the secondary server. This transmission occurs over a TCP connection, with port 2000. The TCP session is authenticated and uses an encrypted, Cisco-proprietary protocol.
    3)Only suitably configured, valid ACS hosts can be secondary servers. To add a secondary server, configure it in the AAA Servers table in the Network Configuration section of this document. When a server is added to the AAA Servers table, the server appears for selection as a secondary server in the AAA Servers list under Replication Partners, on the Cisco Secure database replication page.
    4)The primary server must be configured as an AAA server and must have a key. The secondary server must have the primary server configured as an AAA server and its key for the primary server must match the primary servers own key.
    5)Replication to secondary servers takes place sequentially in the order listed in the Replication list under Replication Partners, on the Cisco Secure database replication page. 6)The secondary server, which receives the replicated components, must be configured to accept database replication from the primary server. To configure a secondary server for database replication, refer to the Configuring a Secondary Cisco Secure ACS Server section of this document.
    7)ACS does not support bi-directional database replication. The secondary server, which receives the replicated components, verifies that the primary server is not on its Replication list. If not, the secondary server accepts the replicated components. If so, it rejects the components.
    8)To replicate user-defined RADIUS vendor and vendor-specific attribute (VSA) configurations successfully, the definitions to be replicated must be identical on the primary and secondary servers. This includes the RADIUS vendor slots the user-defined RADIUS vendors occupy. For more information about user-defined RADIUS vendors and VSAs, refer to the User-Defined RADIUS Vendors and VSA Sets section of the document Cisco Secure ACS Command-Line Database Utility.

  • Cannot restart core application after change for writeback

    Hi,
    I added the entry to enable writeback in the instanceconfig.xml for presentation services - coreapplication_obips1 but now find that coreapplication will not restart, ceteris parabus.
    The initial error seems to be 'Mbean operation failed' with later detail of 'The DocumentChange is not configured to be allow for this component: RichTable[org.apache.myfaces.trinidad.component.UIXTable$[email protected]=messagesResult]
    My syntax is just adding <LightWriteback>true</LightWriteback> immediately after the ServerInstance tag.
    Anyone advise please?
    thanks,
    Robert.
    Edited by: Robert Angel on Dec 4, 2012 6:01 AM

    Robert Angel wrote:
    Hi,
    I added the entry to enable writeback in the instanceconfig.xml for presentation services - coreapplication_obips1 but now find that coreapplication will not restart, ceteris parabus.
    The initial error seems to be 'Mbean operation failed' with later detail of 'The DocumentChange is not configured to be allow for this component: RichTable[org.apache.myfaces.trinidad.component.UIXTable$[email protected]=messagesResult]
    My syntax is just adding <LightWriteback>true</LightWriteback> immediately after the ServerInstance tag.
    Anyone advise please?
    thanks,
    Robert.
    Edited by: Robert Angel on Dec 4, 2012 6:01 AMWhat version of OBIEE are you using?

  • Error when trying to Build ESS application after changes

    Hi Guys,
    I am trying to build DC after changes to the Applciaiton. But the build is failing with the following error. I will able to build and check-in yesterday. Today i am facing this typical issue. Any suggestions please.
    Jan 30, 2007 11:48:05 AM /userOut/Development Component (com.sap.ide.eclipse.component.provider.listener.DevConfListener) [Thread[ModalContext,5,main]] ERROR: ess/us/pdata: Build failed for sap.com/ess/us/pdata(sap.com_SAP_ESS_1) in variant "default": The Build terminated with errors
    com.sap.tc.buildtool.PluginInstantiateException: Failed to create plugin instance for class com.sap.tc.buildplugin.DefaultPlugin due to a ClassNotFoundException
         at com.sap.tc.buildtool.PluginHandlerImpl.getBuildPluginInstance(PluginHandlerImpl.java:314)
         at com.sap.tc.buildtool.PluginHandlerImpl.handlePluginCommunication(PluginHandlerImpl.java:339)
         at com.sap.tc.buildtool.PluginHandlerImpl.execute(PluginHandlerImpl.java:176)
         at com.sap.tc.devconf.impl.DCProxy.make(DCProxy.java:1726)
         at com.sap.tc.devconf.impl.DCProxy.make(DCProxy.java:5559)
         at com.sap.ide.eclipse.component.provider.actions.dcproject.BuildAction.buildDCsForDevConfig(BuildAction.java:307)
         at com.sap.ide.eclipse.component.provider.actions.dcproject.BuildAction.access$200(BuildAction.java:58)
         at com.sap.ide.eclipse.component.provider.actions.dcproject.BuildAction$1.run(BuildAction.java:212)
         at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:101)
    Caused by: java.lang.ClassNotFoundException: com.sap.tc.buildplugin.DefaultPlugin
         at org.eclipse.core.internal.boot.DelegatingURLClassLoader.loadClass(DelegatingURLClassLoader.java:866)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
         at com.sap.tc.buildtool.PluginClassLoader.loadClass(PluginClassLoader.java:241)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
         at com.sap.tc.buildtool.JarHandler.loadClass(JarHandler.java:143)
         at com.sap.tc.buildtool.PluginHandlerImpl.getBuildPluginInstance(PluginHandlerImpl.java:294)
         ... 8 more
    Build log -
    Development Component Build (2007-01-30 11:48:05)
      Component name: ess/us/pdata
      Component vendor: sap.com
      SC compartment: sap.com_SAP_ESS_1
      Configuration: DJI_EMXSSTR_D
      Location: DJI_EMXSSTR_D
      Source code location: http://nwd2sm1.corp.analog.com:50300/dtr/ws/EMXSSTR/sap.com_SAP_ESS/dev/inactive/DCs/sap.com/ess/us/pdata/_comp/
      DC root folder: C:\Documents and Settings\rjogam\.dtc\4\DCs\sap.com\ess\us\pdata\_comp\
      DC type: Web Dynpro
      Host: RJOGAM-L01
    DC Model check:
              [dcmake] All used DCs are available locally
              [dcmake] validating dependency to build plugin "sap.com/tc/bi/bp/webDynpro"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/tc/col/api"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/tc/cmi"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/tc/ddic/ddicruntime"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/tc/ddic/metamodel/content"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/tc/wd/webdynpro"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/tc/logging"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/tc/wdp/metamodel/content"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/com.sap.aii.proxy.framework"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/com.sap.aii.util.misc"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/com.sap.exception"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/com.sap.mw.jco"
              [dcmake] validating dependency to used DC "sap.com/pcui_gp/xssfpm"
              [dcmake] validating dependency to used DC "sap.com/pcui_gp/xssutils"
              [dcmake] validating dependency to used DC "sap.com/ess/per"
              [dcmake] DC model check OK
    Start build plugin:
              [dcmake] using build plugin: sap.com/tc/bi/bp/webDynpro
              [dcmake] starting build plugin from : C:\Documents and Settings\rjogam\.dtc\4\DCs\sap.com\tc\bi\bp\webDynpro\_comp\gen\default\public\webDynpro\
    Build started 2007-01-30 11:48:05 EST
    Failed to create plugin instance for class com.sap.tc.buildplugin.DefaultPlugin due to a ClassNotFoundException
    Build Stopped
    regards
    Sam

    I forgot how I got this issue resolved. Probably we re-started the portal and the NWDI J2EE Engine. But I am sure that we did not do much in fixing this.

  • Process dimensions and Applications after Restore

    We are using BPC 7.0MS.  We need to process dimensions and Applications after the database restore in case of any Optimization failures. It takes around 3 hours for us to do this process. Can we skip the BPC process by taking backup of Database and SSAS and restoring them in case of any failures?
    Thanks
    Raj

    Hi Raj,
    you can try but remeber that after the restore you must execute a "modifiy application" for all your applications so maybe you'll not gain time.
    Kind regards
    Roberto
    Edited by: Roberto Vidotti on Dec 12, 2011 3:33 PM

  • Database vs application users

    Hi.
    Please give some opinion on this:
    Wich is the best approach for managing users in a typical three-tier web application, using jdbc:
    A) The database has one or two users with the proper grants and privileges to manage data(eg. read_user for selects and admin_user for inserts deletes and updates) In addition, there is a table with all valid application users. The third tier will connect to the database as one of the users, depending on the system login user, via jdbc. When someone new registers on the site, a new row is added to the users table.
    B) Database users are also application users. So, when someone new registers on the site, a new database user is created with the proper privileges. No need for users table because application user equals database user.
    I know A and B have different security approaches, but appart from that, what are the benefits/drawbacks of each implementation ?
    When is one better than the other ?
    Thanks a lot.

    If you see any Major/big application , username , password maintian on application level (not on database level). use DBMS_OBFUSCATION_TOOLKIT to store encrypt passwd in table.
    Check following link for, How to store a password
    http://asktom.oracle.com/tkyte/Misc/Passwords.html
    http://www.dbazine.com/oracle/or-articles/hordila10
    Cheer,
    Virag Sharma
    Message was edited by:
    virag_sh

Maybe you are looking for

  • How to include a variable in a formula calc

    Hi, I need to do some calc formula to help my report but I encounter a problem. I use this formula to erase some data from my channel but the formula don't reconize my variables. R4 = CMax(Ch("[1]/TRAVEL_DISTANCE")) Call DataBlDel("[1]/TRAVEL_DISTANC

  • Bizarre Magic Mouse behavior in Lion

    This is a bit hard to explain, but it's driving me batty, so let's see if I can. I have a 27" iMac from the previous generation, and the Magic Mouse it came with. Sometimes when I'm scrolling through a web page in Safari, or about to select something

  • Regarding SGA

    hi all, I m new in oracle 10g RAC. I installed a two node cluser and database. I have one doubt about the fail over. Reading the documents i come to know that if one node crashes the "in flight" sessions will fail over to the available other node, an

  • Site multilingue with resources files in sandbox mode

    Hello, I have developed a sandbox sharepoint application, and i need to set my site in multilingue option with the resources files but i dont have the solution. I need to get the name and fields of sharepoint lists from the resources files. Thx

  • How can i change my Apple ID credit card number?

    Here's what happened, yesterday i created a Apple ID account and for it i used a virtual credit card number, that's is useful a day after. Now i wanted to buy an app from the mac store and i don't know how to change the credit card number for a new o