DAC parameter setting.

Hi All,
Can anyone explain how DAC sets informatica parameter file(internally).
Lets say for ex, if ETL was run for 2 tables on separate days, then the $$LAST_EXTRACT_DATE will be different for these 2 tables.
Where does DAC store this information? and how does it pass it to informatica.
Is there any document on internal architecture of DAC.
And information on DAC repository tables?
(the way i have worded my post here might seem naive to many of you. Kindly excuse since im new to DAC)
Thanks in advance

start with this document
Oracle® Business Intelligence
Data Warehouse Administration Console User’s Guide
Version 10.1.3.4
E12652-01

Similar Messages

  • Do you have the recommend Parameter Sets Controlling IPC Resources on Solaris 8 (64-bits)

    Do you have the recommend value of "Parameter Sets Controlling IPC Resources"
    for Tuxedo8(32-bits) on Sun Solaris8.0 (64-bits) ?

    Hi Asgorath,
    Unfortunately I do not have an answer for you but I
    am experiencing the identical problem on a HP
    Proliant BL25p Blade Server. Here is my hardware
    config:
    CPU - Dual Opteron 2.6 Single Core
    Memory - 16gb
    Controller - HP Smart Array 6i
    Logical drives - 1 (2x72gb RAID1+0)
    I have tried the same things as you and I still get
    intermittant boots. Power on and off does not always
    work as the system still hangs. It's totally hit or
    miss. Once it soes boot it seems to work fine. I have
    also installed the latest Solaris 10 for x86 Patch
    Cluster in hopes that some of the kernal patches
    would fix the problem. So far no luck as the system
    continues to hang...HARD!! HP was out to my site
    today and the Eng. is going back to the group that
    qualified Solaris10 on the HP Blades and see if they
    have any input. If I receive anything back I will
    post it here. I know this post is late and if you
    have resolved please post your fix.Hi doc42755,
    I have not come up with a solution as of yet, if I do come up with a solution i will most certainly post it here.
    However, if you find the solution could you let us know in this thread aswell.
    Thanks
    Asgaroth

  • MI - Configuration Parameter Sets

    When trying to access the "Configuration Parameter Sets" option under the Mobile Administrator page I am getting an error:
    Connection is already closed and no longer associated with a managed connection
    When I try to create a new parameter set I get a java.lang.NullPointerException  exception. Please help.
    Thanks,
    Mahwish

    Hi,
       If you click on any link under the mobile Administrator you will get similar error like "Connection is already closed and no longer associated with a managed connection"
         For this above issue please check the following points.
    1. Visual Admin>Services>Connection Container.. here Check the number of connections values?? 
    2. Check all the authorization are assigned to access the RFCs to user which is mentioned in SAPJRAFactory_EN.
       If we resolve the above problem you would not get any null pointerException during creation of the parameter sets.
    Regards,
    Anil Kumar.

  • SAP language parameter setting

    Dears:
    The parameter zcsa/installed_languages which is in RZ10, control the sap language parameter setting, but i am not very understand how to set the value, i find some set the value to 123EM, i don't know that the 123 meaning here. And some just set it to DE2, D is for Germany, and E is for English, so what is 2 for? Do you know the standard value setting for this parameter?

    The language environment that comes with the standard SAP installation includes German and English. To use SAP with other languages, you must perform a language import or supplement (use transaction SMLT). Changes in the language environment usually require changes in the codepage setup, which requires changes in some database tables and in the profile files.
    Most language administration can be done with transactions SMLT and SP12, and reports RSCP0001, RSCP0004, RSCP0017, and RSCP0020.
    The codepage environment is summarized in the report RSCP0001. Running the report will generate a screen with codepage parameters drawn from different places. A proper codepage setup usually requires that all codepage parameters are the same. This table show the output of the RSCP0001 report, and where its data is drawn from:  Report output Source 
    1.  Table TCPDB   
    Code page for transparent data in the database  Entry in TCPDB table 
    Code page for non-transparent data in the
    database (for example, pools and clusters)  Entry in TCP0C table (can change from online report above) 
    2.  System profile parameters   
    Code page for transparent data in the database  install/codepage/db/transp = 8300 
    Code page for non-transparent data in the
    database (for example, pools and clusters)  install/codepage/db/non_transp = 8300 
    Code pages used by this application server  install/codepage/appl_server = 8300 
    Code pages used by SAPTEMU  saptemu/Codepage = 8300 
    For example, changes in the instance profile, for Traditional Chinese, might look like:
    Change Installed languages to include M (Traditional Chinese)
    zcsa/installed_languages = DEM
    Change to desired language for logon screen
    zcsa/system_language = E
    Add the following parameters for Chinese Character Set
    install/codepage/appl_server = 8300
    install/codepage/db/transp = 8300
    install/codepage/db/non_transp = 8300
    saptemu/Codepage = 8300
    abap/locale_ctype = Chinese(Taiwan)_Taiwan.950
    install/collate/active = 0
    abap/locale_all/needed = 0
    rscp/TCP0B = TCP0D
    abap/set_text_env_at_new_mode =1
    abap/import_char_conversion = 0

  • SSRS Cascading Parameter Setting Default Value of Parameter by Expression

    Hi All,
    I need some help on an issue I am running into in SQL server 2008 report parameters. I have the following Report Parameters defined:
    1) @PredefinedDateSelection - Boolean (User Selectable True/False, Default Value - 'False')
    2) @StartDate - Text (User input text box)
    If @PredefinedDateSelection = TRUE, then I would like to provide a particular default value to the StartDate textbox (i.e. @StartDate Default Value), If @PredefinedDateSelection = FALSE, then I would like to provide a different default value.
    I have the following code for the Expression for the Default value of @StartDate: =code.GetStartDate(Parameters!PreDefinedTimeSelection.Value)
    where GetStartDate is a very simple VB function defined as :
    Public Function GetStartDate(x as boolean ) As String
    Dim a as string
    Dim b as string
    a = "Report Uses Predefined Values"
    b = "Please Input Value"
    If (x) then
    Return a
    else
    Return b
    end if
    end function.
    Now the default value of @StartDate stays set as "Please Input Value", and does not change when I toggle @PredefinedDateSelection from False to True and vice versa. I was expecting to see the Default value to change between the two messages depending on my selection in the report preview.
    Another parameter which is a dropdown and uses a dataset to display two different set of selectable items depending on the value of @PredefinedDateSelection is working just fine. I am not sure if I am missing something or I am doing something wrong.
    Instead of using the VB code I also tried : =iif(Parameters!PreDefinedTimeSelection.Value = True,"Report Uses Predefined Values","Please Input Value")
    I also tried changing the default value using a dataset with SQL query and the available value set to NONE, so that the user could input. But the Default value does not refresh or change values.
     I hope I have explained my question clearly. I would really appreciate any thoughts and comments.
    Thanks,
    Arunesh

    Thank you much for your response.
    I tried that and it did work. But my requirement is to have a user input the date. The basic idea is if the user decides on a predefined time range like Day Shift Today or Yesterday and so on... then the report would automatically calculate the values based on predefined date time values. On the other hand, if the intent is to run the report for an arbitrary period then the user supplies the date and time limits.
    What I am trying to achieve is have the same parameter available for user input , but when the User decides he wants Predefined then the "textbox" populates with date and time as per his choice of predefind range.
    I understand that by this the user can still overwrite the date and time on the text box, but the report will run the predefined values as long as he has the @PredefinedDateSelection Set to true.
    Is there a way I can impement this?
    Once again I thank you and appreciate  your input.

  • Multiple Users on one PC sharing Java Runtime Parameter setting

    Is there a way to have mutiple logins share the -Smx512m setting in Java Runtime Parameters. It seems that when each person logs into the PC to use the application we have to enter the same Java Runtime Parametes again. Is there a way to add it once and every login uses it?
    Thanks,
    DLS

    I have read the Deployment Configuration file and Properties and do not see how the -Xmx51m should be added to the deployment.properties.
    Also it would seem you would need to use the deployment.system.config file so it would be used by all users on the PC.
    Again I can not see an example of how to put in the "Java Runtime Parameters" in the deployment.system.properties file.
    Has anyone done this before and could lead me in the correct directions?
    Thanks,
    DLS

  • Parameter Setting for Windows 64-Bit Windows (Zero Administration)

    Hi All,
              I would like to know the advantages behind setting up parameters based on SNOTE 88416 & 1518419.
              I will explain our current environment to make understand first. Kindly help us to provide the solution for each parameter to set in Default or Instance Profile accordingly.
              We are using Windows 2008 R2 64-Bit with MS SQL Server 2008 in Cluster Mode.
              We having 1 CI , 1 DB node, & 2 Dialog Nodes. In this dialog node we have created additionally 1 more dialog node also.
              1. Central Instances        -1 Server          128 GB RAM      Kernel 7.21_EXT_REL 401 Version
              2. Database Instance      -1 Server          128 GB RAM      Kernel 7.21_EXT_REL 401 Version
              3. Dialog Instances          -1 Server          128 GB RAM      Kernel 7.21_EXT_REL 401 Version
              4. 2 Dialog Instances.      -1 Server          128 GB RAM      Kernel 7.21_EXT_REL 401 Version
    Concerns:
        1. Whether we need to do fine tuning for parameters in 2 dialog node server, where we included additionally one more dialog node in that server recently.
              ( For Eg : em/initial_size_MB has been set 131008 value in 1 dialog node & 2 dialog node its has been set 61440 value )
              Kindly suggest us whether we need to divide all parameters values for these 2 dialog nodes ?
        2.  As per SNOTE 88416 - Phys_Memsize scenario, kindly explain the same how to set in  default profile or instance profile. I have attached my calculation, please suggest the same.
              It would be great if someone help us.
    Regards,
    Gopinath M.L

    Hi Sriram,
              Thanks for your reply.
    1. Each DI physical server level you have to define the memory parameters.
    Yes, we have copied the entire parameters values as same as DI 1 & kept in DI 2.
    My question is here, whether we need to share/divide all the parameters set accordingly in instance profile or not ??? If you require i can attach all parameters which has been set in DI 1 & DI 2.
    2. You have to define in the instance profile parameters and as per the SAP Note 88416 base reference of the initial memory and buffer parameters, in a month you have to review the memory parameters,
    Please check the below link Memory parameters for SAP on 64 Bit Windows screenshot, which describes to add phys_memsize, need to understand how to add that parameter & calculation whether it should be in Default or Instance profile, where other parameters values will be calculated automatically.
    http://wiki.scn.sap.com/wiki/display/Basis/Memory+parameters+for+SAP+on++64+bit+Windows
    Regards,
    Gopinath M.L

  • Oracle 9.2.0.7 vs Oracle 10.2.3 with COMPATIBLE parameter set to 9.2.0.7

    Hi,
    First off, I am NOT an oracle DBA (or even a DBA!), so please excuse my ignorance or errors contained within this post.
    My client is currently planning to upgrade their 9.2.0.7 database server to 10.2.3. Reading through the oracle upgrade documentation, I came accross the compatible parameter, and further more you can set it to 9.2.0.7. I realise that by setting this, many new features introduced in Oracle 10g will not be available - however getting of the unsupported 9.2.0.7 platform is priority.
    Can someone please advise what are the differences between a real 9.2.0.7 database server versus a 10.2.3 (with 9.2.0.7 compatible) server. By setting this will it guarantee sql scripts and external applications continue to work after the upgrade? I.e the list of compatibility issues detailed in the oracle database upgrade guide, will these issues be made irrelevant by this setting?
    Your expert knowledge is appreciated.
    Regards,
    Shan

    When upgrading from 9i to 10g the compatible parameter should be set to 9.2.0. All of the new feature will only be available when the parameter is set to 10.0.0 or higher and the instance restarted.
    Once an instance has been restarted with a compaticble value of 10.0.0 it can never be set back to 9.x.
    Why do you think the upgrade is required if you still want to use the features of 9.2.0.7?

  • Use of parameter sets with prepared INSERTS via Oracle's ODBC driver 8.1.6.4

    Oracles ODBC driver, version 8.1.6.4, allows for driver configuration of three different batch auto commit modes. If I select COMMIT ALL SUCCESSFUL STATEMENTS and cause my app to execute a prepared and parameterized INSERT statement that makes use of parameter value sets, all records up to the first record that causes an error are committed. What is happening? The driver returns only one diagnostic record, with SQLGetDiagField returning the index of the bad record through the [SQL_DIAG_ROW_COUNT] field. Regardless of whether SQLExecute executed successfully or not, the [SQL_ATTR_PARAM_OPERATION_PTR]/ [SQL_ATTR_PARAM_STATUS_PTR] buffers are not initialized by the driver. Even more so, the drive returns SQL_PARC_NO_BATCH for SQLGetInfo when [SQL_PARAM_ARRAY_ROW_COUNTS] is passed. Does anyone know if the driver fully or partially or does not support use of parameter value sets. If it is only partial implementation, ignoring the parameter operation and status buffers, in my opinion, greatly diminishes any real use of parameter value sets. Does anyone known if the above problems disappear with use of Oracles ODBC driver, version 8.1.7.3.0?
    All help is greatly appreciated,
    Chris Simms
    null

    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by Justin Cave ([email protected]):
    What version of the database do you have on the back end?
    Justin<HR></BLOCKQUOTE>
    Oracle8i version 8.1.6. Looking at the specs that come with the ODBC driver upgrades, version 8.1.7.3.0 [which requires Oracle*i version 8.1.7] and 8.1.6.4, it seems that similar enhancements/fixes were made to both. I honestly do not know if what I am attempting is possible with either of the ODBC drivers. I really would prefer not to have to drop down to programming using OCI.
    Chris
    null

  • Is there any detailed documentation available on the server parameter setti

    It would be great to have examples and more information on what the consequences are if parameters are set too high or too low.
    It would be great to have some real life examples that tell you what to consider when setting the lower memory threshold for the webi processing server, for example - or the maximum documents in cache.
    I have found the handbook and the sizing guide but nothing in particular for the parameter settings of the servers.
    Edited by: Nadine Stevens on Jul 22, 2009 10:48 AM

    Hello Nadine,
    you find it in the Admin Guide for your BO Version. Chapter "Server Command Lines".
    Regards
    -Seb.

  • DAC parameter error preventing task from running

    Hi All,
    Please see below this error which is preventing a SIL from running, I've never seen this one before, not sure if it's a config error or programatic/environment related.
    I'm particularly puzzled by the file name being repeated three times?
    This is the last task in a small batch of custom tasks, all the others have run through OK.
    Error Message : Usage error. You passed the wrong parameters to pmcmd.
              Command Used: pmcmd startworkflow -sv BIA_IS_DEV01 -d domain_udapbia3 -u Administrator -p **** -f Custom_SILOS -lpf /u01/oracle/biapps/dac/Informatica/parameters/DataWarehouse.DataWarehouse.Custom_SILOS.Custom_SIL_ InboundCalls.txt Custom_SIL_ InboundCalls.txt Custom_SIL_ InboundCalls.txt
    Thanks,
    Ed

    In the pmcmd command workflow name followed by parameter file.
    Just in case check the task config in dac.
    There might be chances for copying twice for task command like 'Custom_SIL_ InboundCalls.txt' and that is repeating and the most important to check is your task name or workflow name having space after SIL_
    If above are correct then try this
    replace -lpf with -paramfile in file infa_command.xml and try to run the load
    for more details read the file comments from file.
    You can find the file from location orahome\10gR3_1\bifoundation\dac\conf\infa_command.xml
    or
    http://docs.oracle.com/cd/E15586_01/fusionapps.1111/e14849/app_troubleshoot.htm#BCEGDDIB
    If helps pls mark else update

  • Parameter setting

    In Query Generator How can set parameter in user defined fields in reports?

    Hi
        In user created table ,if alphanumeric fields available ,we cann't create parameter report for that fields.
    eg.
         select * from [@sub_cc_head] where u_itemid = [%0]
    this qry is select the fields in itemwise , but it will not working.
    becuase that itemid filed is alphanumeric field. but numeric field is working.
    if any one know the solution plz share with me.
    regards
    anvar

  • Print Parameter Setting

    Hi,
       Iam trying to print an ALV report. Each time when i go into the report in print section i change the ALV selections parameter under cover sheet to "NO" and copy the settings. But when i logout of the client or close the report it is set to YES again. Can anyone please tell me from where it is defaulting the value to yes and how to configure it permanently. I even tried in SPAD i don;t see any way to configure ALV selection parameter.
    Thanks
    Krithika

    Hi,
    Pls check for this field if there is any Parameter Id set. If yes, then in the program set the parameter id for that and chage the value.
    Regards
    Lekha

  • How to redirect "-verbose" Java Runtime Parameter setting to text file

    Simple question: I am adding a "-verbose" Java Runtime Parameter in the Java Applet Runtime Settings of the Java Control Panel. When I run my applet, a Windows console opens which outputs all the method calls, classes, and jar file information. How can I redirect this output to a text file?
    I noticed Xloggc:+filename+ but there does not seem to be an equivalent for redirecting the '-verbose' output to a file.
    Thanks!
    Edited by: zillius on Dec 14, 2007 1:47 PM

    Thank you both for the reply, but unfortunately that is not quite what I am looking for. The console Window I am talking about is a DOS console screen, not the Java Console
    What I am really after here is the ability to redirect a thread dump of a running applet to a text file. When the applet is active, and the "-verbose" parameter is set in the Java Runtime Parameters", I can see all the classes, methods etc. being loaded in the DOS window. Hitting Ctrl-Break at that point will produce a thread dump in the DOS console screen. I would like to be able to redirect THAT output to a text file. It is not in the Java Console. To me it looks like tracing and logging are only for the Java Console, no?
    Thanks again for your help.
    Edited by: zillius on Dec 19, 2007 7:17 AM

  • Database Initialization Parameter Setting - extrapolation on Load Testing

    We have a new application going live, hence a new database instance need to be set. The oracle version is 10.2.0.5 (exisiting env. constraint)
    The load testing is conducted for approx. 2000 user load. As per the test results, during the peak load, number of database sessions opened are 450. The expected user load is 5500 in production, hence we are expecting approx 1100 database sessions at that time.
    Due to constraints in load testing environment, we cannot test for 6000 users in production. Hence, we have to extrapolate the database parameter settings and put in production.
    The SGA sizing & some other parameters in Load Testing is as below (with the following setting in load, the performance is acceptable)
    sga_max_size 7.5 GB
    sga_target 6 GB
    db_cache_size 3 GB
    shared_pool_size 1.5 GB
    shared_pool_reserved_size 150 MB
    java_pool_size 0.2 GB
    large_pool_size 0.5 GB
    sort_area_size 0.5 MB
    streams_pool_size 48 MB
    pga_aggregate_target 4 GB
    processes 1200
    db_block_size 8K
    db_file_multiblock_read_count 16
    db_keep_cache_size 134217728
    fast_start_mttr_target 600
    open_links 25
    Please let me know how to set the database size for production on extrapolation. Apart from processes and sessions, which are parameters I should be giving more focus.

    user8211187 wrote:
    We have a new application going live, hence a new database instance need to be set. The oracle version is 10.2.0.5 (exisiting env. constraint)
    The load testing is conducted for approx. 2000 user load. As per the test results, during the peak load, number of database sessions opened are 450. The expected user load is 5500 in production, hence we are expecting approx 1100 database sessions at that time.
    Due to constraints in load testing environment, we cannot test for 6000 users in production. Hence, we have to extrapolate the database parameter settings and put in production.
    The SGA sizing & some other parameters in Load Testing is as below (with the following setting in load, the performance is acceptable)
    sga_max_size 7.5 GB Upon which metrics was 7.5GB derived?

Maybe you are looking for

  • Why can't you use PipedXputStream in other than threaded application

    I have need for usage of these in a non-threaded application, however the Javadoc indicate this should not be done. "Attempting to use both objects from a single thread is not recommended, as it may deadlock the thread." As the Java community is comp

  • Warning:Low-level logging is currently enabled in 12.0.6

    Hi All, DB:10.2.04.0 Oracle Apps:12.0.6 OS:AIX We are seeing the message : Warning:Low-level logging is currently enabled.Your application will not perform as well while Low-level logging is on. On investigation, found the following: NAME USER_PROFIL

  • ***App Error 205 "Reset"

    Alright, I have been reading several posts on this problem. Followed one of the guy with the pig profile pic. I have been up all night doing this. PROBLEM: downloading update for phone, and my luck, the battery died. Please someone help me I'm alread

  • Datbase not getting Shutdown

    Hello, I understand that when we give ' shutdown immediate' all uncommitted transactions are rolled back and db is shutdown. Which means the entire shutdown process should be completed within 2-10 minutes depending on the open transactions. In my dat

  • Oracle version not supported(Urgent !!)

    We get the following error with IBM Websphere 3.5. The oracle version is 8.1.6 and the jdbc classes used are classes12.zip. EJBs are working fine but after the no. of connections exceed 40 in no.the following error occurs. ORA-17441=Oracle Version no