Siebel and parameters and statistics

Hi,
I work on SIEBEL 8 with 10gr2 database on i want to know the preconisations SIEBEL about specific parameter and statistics.
Thanks for your help

Read Technical Note 582 for general information.
Additionally, this technical note also summarizes/compares 9i and 10g server initialization parameters. Be aware that some of the settings for 9i and 10g are completely different.
Install/Upgrade/Manage
http://download.oracle.com/docs/cd/B40099_02/books/UPG/UPG_Prep_Oracle3.html
HTH
-Anantha

Similar Messages

  • Performance Problems - Index and Statistics

    Dear Gurus,
    I am having problems lossing indexes and statistics on cubes ,it seems my indexes are too old which in fact are not too old just created a month back and we check indexes daily and it returns us RED on the manage TAB.
    please help

    Dear Mr Syed ,
    Solution steps I mentioned in my previous reply itself explains so called RE-ORG of tables;however to clarify more on that issue.
    Occasionally,ORACLE <b>Cost-Based Optimizer</b> may calculate the estimated costs for a Full Table Scan lower than those for an Index Scan, although the actual runtime of an access via an index would be considerably lower than the runtime of the Full Table Scan,Some Imperative points to be considered in order to perk up the performance and improve on quandary areas such as extensive running times for Change runs & Aggregate activate & fill ups.
    Performance problems based on a wrong optimizer decision would show that there is something serious missing at Database level and we need to RE_ORG  the degenerated indexes in order to perk up the overall performance and avoid daily manual (RSRV+RSNAORA)activities on almost similar indexes.
    For <b>Re-organizing</b> degenerated indexes 3 options are available-
    <b>1) DROP INDEX ..., and CREATE INDEX …</b>
    <b>2)ALTER INDEX <index name> REBUILD (ONLINE PARALLEL x NOLOGGING)</b>
    <b>3) ALTER INDEX <index name> COALESCE [as of Oracle 8i (8.1) only]</b>
    Each option has its Pros & Cons ,option <b>2</b> seems to be having lot of advantages to
    <b>Advantages- option 2</b>
    1)Fast storage in a different table space possible
    2)Creates a new index tree
    3)Gives the option to change storage parameters without deleting the index
    4)As of Oracle 8i (8.1), you can avoid a lock on the table by specifying the ONLINE option. In this case, Oracle waits until the resource has been released, and then starts the rebuild. The "resource busy" error no longer occurs.
    I would still leave the Database tech team be the best to judge and take a call on these.
    These modus operandi could be institutionalized  for all fretful cubes & its indexes as well.
    However,I leave the thoughts with you.
    Hope it Helps
    Chetan
    @CP..

  • Siebel and Oracle Ebiz sharing the same DB

    Can Siebel and Oracle Ebusiness suite link up with the same database?
    Any pointers to this, i would someone would have tried this out with consolidating multiple Oracle applications.
    Any documentation available on this should be of great help.
    Thanks in Advance.

    Ebusiness suite has very specific requirements for parameters, database versions, tablespace naming, patch level, and cloning. I have not installed Siebel, but I suspect it would have it's own requirements which will be different from Ebus.
    I think it is very likely you will run into conflicts between the requirements of the two applications. Maybe not today, but definitely during the next patch or upgrade.
    For vendor applications it is better to keep them in their own databases to avoid requirements conflicts.
    You could open an SR with Oracle Support to ask if they will support a database with both applications installed.

  • CRM workload and statistics tables (ST03N)

    Hi All,
          can anyone please give the name of the table used for storing the CRM workload and statistics data (Tx: ST03N).
    Thanks in advance

    here you go...
    SAPBWPRFLS                     BW Workload: Relation of Workload Profile and
                                                Class Names
    SAPWLDMTHD                     SAP Workload: Dynamically-Called Method for
                                                Events
    SAPWLROLED                     SAP Workload: Storage of User-Specific ST03N
                                                Role
    SAPWLROLES                     SAP Workload: Table for User-Specific Parameters
    SAPWLTREEG                     SAP Workload: Nodes for ST03G Tree Controls
    SAPWLTREET                     SAP Workload: Text Field for ST03G Trees
    SGLWLCUST1                     User Parameters for Workload Transactions
    SGLWLPRFLS                     SAP Workload: Profile Codes and Class Names
    SGLWLSLIST                      SAP Workload: User-Specific System List for Global
                                              Analysis
    Julius

  • How to write Join View Adaptor which will pull data from Siebel and OID ?

    Hi Experts,
    I wanted to write web service call where OIF will talk to OVD than OVD will have join adaptor which will pull few data like msisdn from Siebel and view data from oid like given name and generate SAML assertion.
    I wanted to know how to write join adaptor for the same
    Help Appreciated.

    Hi Experts,
    Is anyone has any idea on webservice call to OIF which will call OVD that will have join adaptor connecting siebel and oid ?
    any help is appreciated

  • Which Event Classes i should use for finding good indexs and statistics for queries in SP.

    Dear all,
    I am trying to use pro filer to create a trace,so that it can be used as workload in
    "Database Engine Tuning Advisor" for optimization of one stored procedure.
    Please tel me about the Event classes which i  should use in trace.
    The stored proc contains three insert queries which insert data into a table variable,
    Finally a select query is used on same table variable with one union of the same table variable, to generate a sequence for records based on certain condition of few columns.
    There are three cases where i am using the above structure of the SP, so there are three SPS out of three , i will chose one based on their performance.
    1) There is only one table with three inserts which gets  into a table variable with a final sequence creation block.
    2) There are 15 tables with 45 inserts , which gets into a tabel variable with a final
    sequence creation block.
    3)
    There are 3 tables with 9 inserts , which gets into a table variable with a final
    sequence creation block.
    In all the above case number of record will be around 5 lacks.
    Purpose is optimization of queries in SP
    like which Event Classes i should use for finding good indexs and statistics for queries in SP.
    yours sincerely

    "Database Engine Tuning Advisor" for optimization of one stored procedure.
    Please tel me about the Event classes which i  should use in trace.
    You can use the "Tuning" template to capture the workload to a trace file that can be used by the DETA.  See
    http://technet.microsoft.com/en-us/library/ms190957(v=sql.105).aspx
    If you are capturing the workload of a production server, I suggest you not do that directly from Profiler as that can impact server performance.  Instead, start/stop the Profiler Tuning template against a test server and then script the trace
    definition (File-->Export-->Script Trace Definition).  You can then customize the script (e.g. file name) and run the script against the prod server to capture the workload to the specified file.  Stop and remove the trace after the workload
    is captured with sp_trace_setstatus:
    DECLARE @TraceID int = <trace id returned by the trace create script>
    EXEC sp_trace_setstatus @TraceID, 0; --stop trace
    EXEC sp_trace_setstatus @TraceID, 2; --remove trace definition
    Dan Guzman, SQL Server MVP, http://www.dbdelta.com

  • How does Index fragmentation and statistics affect the sql query performance

    Hi,
    How does Index fragmentation and statistics affect the sql query performance
    Thanks
    Shashikala
    Shashikala

    How does Index fragmentation and statistics affect the sql query performance
    Very simple answer, outdated statistics will lead optimizer to create bad plans which in turn will require more resources and this will impact performance. If index is fragmented ( mainly clustered index,holds true for Non clustred as well) time spent in finding
    the value will be more as query would have to search fragmented index to look for data, additional spaces will increase search time.
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers
    My TechNet Wiki Articles

  • Intergration between Siebel and AIA in Comm PIP

    I need your help in understanding “how interfacing is happening between Siebel and AIA in Comm Pack” for an outbound flow from Siebel. I will take an example of Order Synchronization flow between Siebel and BRM through AIA.
    Step 1: When the order is confirmed / approved in Siebel, an event is captured and Sales Order ABM XML message is generated and put it into a JMS queue.
    I have few doubts in Step 1 only where I need your help :
    - What is the type of JMS Queue ? Is it OJMS (JMS Interface to Oracle Database Streams Advanced Queueing (AQ)) or OracleAS JMS (native Java implementation that provides file-based persistence).
    - How the data is put into the JMS Queue? Is it through the “ProcessSalesOrderSiebelJMSConsumer” BPEL Service or through some other mechanism.
    - If it is through “ProcessSalesOrderSiebelJMSConsumer” BPEL Service, does the Siebel call “ProcessSalesOrderSiebelJMSConsumer” as a Web Service or is it through JCA Resource Adapter.
    - Other thing is if it is through WebService Call (Invoking “ProcessSalesOrderSiebelJMSConsumer” BPEL Service), then what if the SOA Server is down during the call ? This will mean that we have lost the data as we haven’t put in the queue yet. And I don’t think Order will be created / confirmed / approved in Siebel again. Also Siebel can directly invoke the “ProcessSalesOrderSiebelReqABCSImpl” BPEL Service directly rather the invoking JMS Producer if data has to be passed through webservice call.
    Thanks.

    - What is the type of JMS Queue ? Is it OJMS (JMS Interface to Oracle Database Streams Advanced Queueing (AQ)) or OracleAS JMS (native Java implementation that provides file-based persistence).
    Siebel will call a WebService of AIA. AIA will store this into his JMS queue.- How the data is put into the JMS Queue? Is it through the “ProcessSalesOrderSiebelJMSConsumer” BPEL Service or through some other mechanism.
    AIA Will handle this, out of the box functionality.- If it is through “ProcessSalesOrderSiebelJMSConsumer” BPEL Service, does the Siebel call “ProcessSalesOrderSiebelJMSConsumer” as a Web Service or is it through JCA Resource Adapter.
    It will call the producer webservice.- Other thing is if it is through WebService Call (Invoking “ProcessSalesOrderSiebelJMSConsumer” BPEL Service), then what if the SOA Server is down during the call ?
    Siebel gets an error back; server not reachable.Regards,
    Marc
    http://orasoa.blogspot.com

  • Why Siebel and not any other CRM

    What all members have to say: Why Siebel and not any other CRM?
    Message was edited by:
    War

    What are you looking for?
    I hope it's not related to your nick. ;-)
    Seriously, there is no set of rules that makes you decide for or against Siebel.
    If Siebel is a good solution for one company, doesn't mean it's a good solution for all companies.
    It all depends...

  • How to monitory Siebel and E-business with Oracle Grid Control 12c

    Hi All,
    Please i need any documents for Monitoring Siebel and E-business with Oracle Grid Control 12c.
    Thanks in advance,
    Mostafa

    I would think this is indeed the only way to monitor the URL.
    Perhaps you could try a solution in creating your own plug-in.
    Check http://www.oracle.com/technetwork/oem/extensions/index.html for this.
    Regards
    Rob
    http://oemgc.wordpress.com

  • Logs and Statistics Page in Airport

    What does "rotated ccmp group key" mean on Airport routers? What do other saying mean on the logs and statistics page? Thanks helps alot

    Your signal and noise readings are excellent; these are numbers in decibel (logarithmic) scale, with 0 (zero) being the maximum; the signal levels reported indicate how much below the theoretical maximum signal strength you are receiving. As a point of comparison, as I type this right now I'm getting a signal of -45 db and a noise of -9 db. Rate, I believe, is in megabits per second (I'm showing 117 at the moment, though it often goes up to 130 or so).

  • Using OBA for 2 sources (Siebel and EBS)

    Hi,
    We have OBIA for EBS - Supply chain implemented (with some custom) and it's already on Production. Now we are implementing OBIA for Siebel.
    So, for the first time, we are planning run a FULL extract from Siebel. Then we noticed that both system uses some commom table (like W_PRODUCT_D). Unfortunally, we have on EBS all price list and products. On Siebel we have same information, replicated.
    If we run a FULL extract, we'll lose the data from EBS products, I guess. But if we run a Incremental extract, I think we will have duplicate products on W_PRODUCT_D. Is it correct?
    How is the best way to work it?
    Any help will be great!
    Regards,

    Hi Ohara,
    Regarding the RPD:
    I am not completely sure if you need to change the RPD..
    If you can guarantee that users will always report on a combination of dimensions with facts, there is no need to filter on datasource_num. This is because all facts loaded from Siebel will be related to dimension values loaded from Siebel and all facts loaded from eBS will be related to dimension values loaded from eBS. At least, this is how it is supposed to work, please allocate enough time to test this really good.
    However, 'just to be sure' you can create business model filters in the security groups in such a way that all 'Siebel-users' will only see the Siebel data and vice versa.
    Regarding the DAC:
    I think the most ideal way would be to combine all the to-be-loaded Subject Areas in one Execution Plan. This can be done if extraction from both eBS and Siebel can be performed in the same timeslot. This way, the staging tables will be populated from 1 or 2 sources, but the SILOS mappings will only have to be run once.
    Regarding the most interesting stuff (scenario 1 ;) ):
    You will require an unique identifier of a Product/other that is present in both source systems to be able to match them in the BAW. Please do not resort to literal comparissons on names etc. Once you have this identifier, you can modify the LKP operators in the fact mapplets and/or reusable LKP operators to use this identifier to retrieve the wid from the dimension, instead of the integration_id and datasource_num.
    Good luck!
    Regards,
    Marco
    Edited by: m.siliakus on Feb 22, 2011 8:58 AM

  • Custom Build AIA PIP between Siebel and eBS

    Hi,
    I have a project where in I am integrating Siebel and eBS systems.There are different process flow integrations that I need to integrate between these 2 systems.I know there is O2C PIP for integrating between these systems.But due to some reasons my company doesnt want to pursue using O2C PIP for integrations.So I would like to know
    -> if there is any other PIP for this purpose OR
    ->If we can build a custom AIA PIP for this and what are the pros and cons of it and tasks we would need to do for successful integrations of different process flows? OR
    ->if there is any way in SOA suite that we can use to integrate between these systems for different process flows?I wanted to know how OracleASadapters (packaged based adapters) for Siebel can work in this case and pros and cons for using this adapters?
    ->if there is any other way,please let me know!
    Thanks,
    S

    Hi,
    I don't think we have any PIP other than O2C to integrate Siebel with Ebiz.
    It is the matter of evaluating to what extent the out of the box PIP answers the integration requirement. As per my understanding no PIP suits 100% for any given business integration, it has to be tweaked for sure. It should be the architect decision comparing the effort of scratch development vs using PIP.
    One has to understand the best practices for building AIA integration otherwise we end up making tightly coupled integration which make no sense of using AIA foundation pack. Read best practices of AIA development.
    The core advantage of using AIA foundation pack is that enables the central hub of integration between any systems leaving a room for integration of other business applications. You can also build simple composites to integrate without following AIA principles but it is as simple as making P2P integration.
    Thanks
    Saikrishna Panuganti

  • Need to automize : application integrating siebel and peoplesoft data bases

    Hi All,
    I really need help of you guys.
    The scene is, I need to automise soemthing like my exisiting appliation runs on AquaLogicDSP which interacts with Siebel and PeopleSoft DB.
    I need to automize one thing say,
    1. To send mail through AquaLogic [Preferrably using BEA Messaging API] else Java API.
    2. Getting connected to DB, fire some queries and again send out a mail.
    3. I need this everything to be done in existing aqualogicc code.
    Can you please lemme know how to proceed with this.
    I will be highly thankful to you.
    Many thanks,
    Naveen Dutt.

    Hi All,
    I really need help of you guys.
    The scene is, I need to automise soemthing like my exisiting appliation runs on AquaLogicDSP which interacts with Siebel and PeopleSoft DB.
    I need to automize one thing say,
    1. To send mail through AquaLogic [Preferrably using BEA Messaging API] else Java API.
    2. Getting connected to DB, fire some queries and again send out a mail.
    3. I need this everything to be done in existing aqualogicc code.
    Can you please lemme know how to proceed with this.
    I will be highly thankful to you.
    Many thanks,
    Naveen Dutt.

  • Siebel and Avaya IC 7.1 integration

    Hi guys. Do you have some document that explain step by step the integration with siebel 7.x and avaya ic 7.x ?? Tks a lot.

    CTI integration has its official documentation.
    To sum it up:
    General architecture "User oriented" /
    -An Application Object Manager (AOM) display a Communication toolbar (a Tools "customizable" java applet)
    -A user having a Communication profile will see this toolbar
    -Clicking on the toolbar will usually just send a CTI event to the CTI server
    -Sending an event means starting a short CommSessionMgr task
    -The CommSessionMgr is where the Avaya DLL/EXE got executed
    -It's able to RECEIVE CTI events from the server and dispatch those to the AOM
    Installing the Avaya drivers should be ok /
    Parameterization of the connection between SIEBEL and the CTI server stands at the Configuration /
    Customization of the CTI behaviour means Tools for the toolbar and the WebClient to manage (a .DEF file allows to delivers these configurations) how SIEBEL reacts to CTI events
    You need specific experts for:
    -CTI architecture (even alone it may hurts)
    -SIEBEL to CTI server driver's parameter sizing and validation (very rare...I am one ;-)
    -SIEBEL Configuration of the events (Oracle got some and some consulting or service companies as well)

Maybe you are looking for

  • Can't open MS Word .doc files from SharePoint 2013 document library?

    Hello, I have uploaded some MS Word files with .doc extension into a SharePoint 2013 document library, but they don't open when clicked.  I can do a number of things to the file, like view and edit properties, download and other things, but it does n

  • Cheque lots

    Hi Gurus' This is very easy question. but alos i am asking to all pls suggest creating cheque lot transaction in sap easy access i want to give acces to my user i know this transaction FCHI Pls suugest me

  • DP Planning Area Load using Attributes

    We have an APO DP Planning area that is comprised of two characteristics ("Material"; "Mill").  All the data are attributes of one of these characteristics.  We chose this for the flexibility of attributes as compared to characteristics and was under

  • Using PDF with parameter /p /h

    Hi, i'm using CL_GUI_FRONTEND_SERVICES=>EXECUTE with acrobat reader and the parameters /p /h. When executing is finished, the reader is still open. Is there a possibility to close the reader via an abap statement or fm or with CL_GUI_FRONTEND_SERVICE

  • How to use iphoto movies in imovie?

    I called apple customer care but they were unfortunately not helpful. I have imported pictures and videos into iphoto and I would like to use the videos there under imovie. Some videos (both taken on iPhone and a digital camera) appear in the imovie