Optimal INI_TRANS value

I have a large table (300 million rows, 150GB in size) with many concurrent users update/insert/select for update nowait on it and I'm seeing several "ORA-00054: resource busy and acquire with NOWAIT specified" errors in the application logs. I have confirmed that the ORA-00054 errors were not caused by locking on the same records. I tried to increase the INI_TRANS value for this particular table to 10, up from 2, and the ORA-00054 erros went away. So I'm wondering is there a good way to make an educated guess on the optimal value of INI_TRANS for a particular table?

I appreciate the responses. Am i correct to say that ITL slots will take up space in the PCTFREE portion of a block or somewhere else? Is there a way to see the records that made up a particular block?
Shortage of INI_TRANS will indeed cause ORA-00054 error. The following is a test case to simulate the error:
$ sqlplus / as sysdba
SQL*Plus: Release 10.2.0.5.0 - Production on Wed Apr 3 23:26:35 2013
Copyright (c) 1982, 2010, Oracle.  All Rights Reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bit Production
With the Partitioning, Real Application Clusters, OLAP, Data Mining
and Real Application Testing options
SQL> show parameter block_size
NAME                                 TYPE        VALUE
db_block_size                        integer     8192
SQL> create table t1 (c1 varchar2(1336));
Table created.
SQL> select table_name, status, pct_free, ini_trans from user_tables where table_name='T1';
TABLE_NAME                     STATUS     PCT_FREE  INI_TRANS
T1                             VALID            10          1
SQL> insert into t1 values ('a');
1 row created.
SQL> insert into t1 values ('b');
1 row created.
SQL> insert into t1 values ('c');
1 row created.
SQL> insert into t1 values ('d');
1 row created.
SQL> insert into t1 values ('e');
1 row created.
SQL> insert into t1 values ('f');
1 row created.
SQL> commit;
Commit complete.
SQL> update t1 set c1=rpad(c1,1335,c1) where length(c1)=1;
6 rows updated.
SQL> commit;
Commit complete.
SQL> select substr(c1,1,1) from t1 where c1 like 'a%' for update nowait;
SUBS
a
SQL>
*From another session:*
SQL> select substr(c1,1,1) from t1 where c1 like 'b%' for update nowait;
*From another session:*
SQL> select substr(c1,1,1) from t1 where c1 like 'c%' for update nowait;
select substr(c1,1,1) from t1 where c1 like 'c%' for update nowait
ERROR at line 1:
ORA-00054: resource busy and acquire with NOWAIT specifiedThe USER_TABLES INI_TRANS reported "1", but I read somewhere that it is a data dictionary inconsistency and it should be the default "2".

Similar Messages

  • INI_TRANS value and performance!!

    Hi, all.
    I am responsible for creating database objects of a production 2 node
    RAC database(10.2.0.2.0). The block size is 8K.
    The tablespace is locally managed and ASSM is enabled.
    My question is :
    1. Is it good to set ini_trans=1 of tables and index in terms of performance?
    The size of one record is not so big.
    2. Is there any negative effect if I set ini_trans=2??
    Thanks and Regards.
    Message was edited by:
    user507290
    Message was edited by:
    user507290

    Correction: Its not INI_TRANS; its INITRANS.
    From documentation:
    In general, you should not change the INITRANS value from its default.
    Each transaction that updates a block requires a transaction entry in the block. The size of a transaction entry depends on your operating system. This parameter ensures that a minimum number of concurrent transactions can update the block and helps avoid the overhead of dynamically allocating a transaction entry.
    The INITRANS parameter serves the same purpose in the statements that create and alter tables, partitions, clusters, indexes, materialized views, and materialized view logs.
    1. INITRANS governs the number of "concurrent" transactions that can operate with rows in a particular block. So, if your block size is 8k and size of the records is very small, then you will have more number of rows per block. If application, via multiple users, keeps on looking for data in the same block, then you need to increase the INI_TRANS value.
    2. INITRANS=2 should not be a negative effect since indexes, by default, are created with that value. You can specify a maximum of 255 concurrent transactions per block, however, that would eat up the block with header information itself.
    Message was edited by:
    Satish Kandi

  • Is there an optimal luminance value for LCD monitors

    Hi you all,
    I use Lacie 319 high end monitor as my primary monitor and "generic" Fujitsu as my secondary monitor (for PS tools etc.) I have calibrated the monitors with Spyder Elite 3, which also measures the ambient temperature of the room. Based on that measurement it suggests 140 cd for the white point (brightness) to calibrate the screen for. If you do this the prints printed with Epson 4900 (as well as with my previous Epson 4800) print far too dark. The colours are rendered for the printer with Image Print RIP (Colorbyte software). When I calibrate my monitor down to 80 cd the prints are quite OK although still a tiny bit too dark. My question is should I do the LR of PS optimisation of my pictures in the 140 cd monitor brightness and then reduce monitor brightness mechanically to the cd value which gives optimal brightness of the print (some 70 cd?) . Of course I have to adjust the brightness of the picture to be printed viasoft proofing. If continue doing as I do now  making all my picture adjustments using a very low monitor brightness (ideal for the printed result) am I working in a less than optimal area for the monitor to deal with colors. Also do many of the folks in the internet see my pictures too light because they are using much brighter monitors than what I used to adjust the pictures.
    Having asked the question I do know that many things affect on how you see or perceive the colors as well as the brightness of the print. So the answer is not that it depends on where you look your prints. I know the measured ambient light of my "lab" (was a photographer already in the time of film) suggests that I should use 140 cd as the brightness value of my monitor. Doing so produces prints far too dark when looked at the same ambient light. Using 80 (or 70 to be exact) cd monitor brightness gives good print results when the prints are looked in the same (as above) ambient light. My question is am I no adjusting my pictures too light for those using the "default" monitor brightness and is the color management of LCD monitors up to standard if you dial them as down as was customary for the big old CRTs.
    yours Kari

    General rule of thumb is:
    80 - 90 cd/m2 for print
    130 - 140 cd/m2 for screen
    What I do:
    Edit everything (print and screen) on a 80cd/m2 monitor. It works out very well.
    Sounds like you're on the right track.

  • What is th optimal Database Buffer size?

    Good evening SAP/Oracle experts,
    I am interested to know how many of you have chosen to size your Oracle data buffer (db_cache_size). There seems to be two trains of thought about this
    - one that says size the data buffer as large as you can because buffer accesses are 1000s of times quicker than disk accesses
    - another that says that "excessive buffer visits are the morbid obesity of the database. Extra logical I/O can degrade the perfromance of virtually every subsystem in an Oracle application" (quote Cary Millsap)
    As I tend to prefer the second argument, I originally sized the data buffer on our ECC5 Production system (with CI/DB running on a server with 8Gb RAM) at 500Mb. A few months after go-live, I increased the buffer to 750Mb and recently I increased it again to 1Gb. I found a slight performance improvement with each increase, but database time remained at around 50% of total response time (from ST03N) throughout. Our average response time is currently around 700-750ms, with database time around 300-400ms. Our database is currently around 450Gb.
    I therefore ask you, the SDN community, to tell me how large you tend to size your data buffer in comparison to the total amount of RAM on your database server, and what % of your average response time is spent down at the database.
    Thanks in advance for any help you can provide.
    Arwel Owen
    SAP Infrastructure Manager,
    Princes Ltd.

    Dear Arwel.
    To specify an optimal cache value, you can use the dynamic
      DB_CACHE_ADVICE parameter with statistics gathering enabled to predict
      behavior with different cache sizes through the V$DB_CACHE_ADVICE performance  view.
    When configuring a new instance, it is impossible to know the correct size for the buffer cache. Typically, a database administrator makes a first estimate for the cache size, then runs a representative workload on the instance and examines the relevant statistics to see whether the cache is under or over configured.
    For more details about Sizing the Buffer Cache and Increasing Memory Allocated to the Buffer Cachelook at oracle documentation.
    http://download-east.oracle.com/docs/cd/B10501_01/server.920/a96533/memory.htm#30301
    In General Dont waste RAM use it completely but minimum 20% to OS and the rest to allocate.
    Regards
    Vinod

  • Doubt between Original Traffic and Optimized Traffic

    I have a question about the information displayed on the Traffic Summary Report.
    Can any one explain to me how the Optimized Traffic value can be major than the Original Traffic value???
    Thank you for assistance,
    Diego

    Diego,
    From your stats, it definitely looks like you are running encrypted traffic through compression and DRE is adding the 5 byte signatures to all the packets going through the compression engine. Due to encryption, there is no repeating patterns in the payloads.
    I would do the following...
    1. Take the traffic and create a TFO only policy for it and add it to the top of your list so you are not wasting CPU cycles on attempting to perform compression.
    2. Disable encryption/compression on the traffic you are targeting and let WAAS perform it's optimizations on it.
    Hope that helps,
    Dan

  • Combinations with Best Total value without Exceeding a maximum cost

    Hello,
    I have an interesting problem I am trying to solve and I am wondering if TSQL, or another tool like SSAS would be a good option for this. I am trying to find out the best performance from 8 parts while staying under a specific budget. Below is a generic
    example:
    I have to find the best combination of the following:
    3 Part A
    3 Part B
    1 Part C
    1 Part D(can be either A, B, or C)
    The raw data that I will be using will look something like this:
    Part #  |  Price   |  Value  | ID
    A          |  $22     |  44      |   1
    A          |  $21     |  42      |   2
    B          |  $20     |  41      |   3
    C          |  $18     |  37      |   4
    B          |  $17     |  35      |   5
    B          |  $2       |  1        |   200
    I will have over 200 combinations of parts in total (some A, some B, some C).
    In addition, I will have to find the best optimal total value for 100$ or less. It will be like Use it or Lose it 100$ so you want to be as close as possible without going over. 
    I am looking for something that can find out the optimal and rank it according to total value in a relatively quick amount of time. I know there are a lot of possibilities for this.
    The end result will be something like this:
    Total Value | Total Cost | A1 | A2 | A3 | B1 | B2 | B3 | C1 | D1
    240           |   100        | 1  |  6 |  15 | 2  |  5 | 20 |  4 |  3
    Let me know if you have any questions. Hopefully this makes some sense.

    CREATE TABLE [dbo].[OptimalCombo](
    [ID] [float] NULL,
    [Price] [money] NULL,
    [Value] [float] NULL,
    [Part] [nvarchar](255) NULL,
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('1',convert(money,'22.16'),'42.7302','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('2',convert(money,'21.67'),'42.0798','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('3',convert(money,'20.42'),'40.7089','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('4',convert(money,'16.05'),'34.4474','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('5',convert(money,'11.66'),'33.9312','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('6',convert(money,'18.27'),'33.7518','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('7',convert(money,'18.57'),'32.5026','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('8',convert(money,'13.64'),'32.0993','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('9',convert(money,'15.16'),'31.8969','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('10',convert(money,'11.87'),'31.6139','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('11',convert(money,'15.22'),'31.3825','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('12',convert(money,'18.77'),'31.2071','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('13',convert(money,'12.96'),'31.1526','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('14',convert(money,'14.22'),'30.2834','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('15',convert(money,'14.57'),'30.2159','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('16',convert(money,'14.89'),'30.1422','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('17',convert(money,'15.42'),'30.0975','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('18',convert(money,'15.26'),'29.9128','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('19',convert(money,'10.87'),'29.5804','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('20',convert(money,'12.38'),'29.0499','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('21',convert(money,'15.23'),'28.8299','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('22',convert(money,'12.87'),'28.8112','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('23',convert(money,'17.05'),'28.6106','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('24',convert(money,'14.62'),'28.4499','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('25',convert(money,'11.71'),'28.4443','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('26',convert(money,'13.84'),'27.4249','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('27',convert(money,'14.68'),'27.1489','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('28',convert(money,'11.50'),'27.0866','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('29',convert(money,'12.69'),'27.0484','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('30',convert(money,'12.51'),'27.0121','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('31',convert(money,'14.02'),'26.4007','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('32',convert(money,'13.61'),'26.0659','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('33',convert(money,'10.31'),'25.1806','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('34',convert(money,'13.62'),'24.8248','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('35',convert(money,'13.42'),'24.6756','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('36',convert(money,'11.82'),'24.4752','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('37',convert(money,'10.95'),'24.0582','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('38',convert(money,'14.26'),'23.4754','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('39',convert(money,'9.62'),'23.4578','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('40',convert(money,'9.80'),'23.3932','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('41',convert(money,'7.91'),'22.7474','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('42',convert(money,'9.96'),'22.5954','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('43',convert(money,'9.13'),'22.2856','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('44',convert(money,'13.54'),'22.2192','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('45',convert(money,'11.01'),'21.8734','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('46',convert(money,'9.06'),'21.809','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('47',convert(money,'10.56'),'21.7806','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('48',convert(money,'10.10'),'21.5777','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('49',convert(money,'9.17'),'21.5588','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('50',convert(money,'8.31'),'21.4629','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('51',convert(money,'8.66'),'20.9096','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('52',convert(money,'12.33'),'20.7805','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('53',convert(money,'12.18'),'20.7249','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('54',convert(money,'10.90'),'20.7121','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('55',convert(money,'9.66'),'20.6709','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('56',convert(money,'10.14'),'20.5873','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('57',convert(money,'10.11'),'20.5527','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('58',convert(money,'11.63'),'20.5245','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('59',convert(money,'8.91'),'20.3243','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('60',convert(money,'7.33'),'19.9983','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('61',convert(money,'12.44'),'19.9376','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('62',convert(money,'10.39'),'19.8531','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('63',convert(money,'9.49'),'19.7441','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('64',convert(money,'10.41'),'19.54','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('65',convert(money,'9.28'),'19.4863','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('66',convert(money,'9.93'),'19.3653','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('67',convert(money,'10.63'),'18.7178','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('68',convert(money,'8.73'),'18.7176','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('69',convert(money,'8.77'),'18.6663','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('70',convert(money,'6.81'),'18.4952','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('71',convert(money,'9.34'),'18.4944','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('72',convert(money,'10.93'),'18.3211','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('73',convert(money,'0.00'),'18.0332','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('74',convert(money,'10.09'),'17.5418','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('75',convert(money,'6.46'),'17.5339','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('76',convert(money,'8.18'),'17.3633','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('77',convert(money,'7.92'),'16.4754','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('78',convert(money,'6.36'),'16.374','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('79',convert(money,'9.20'),'16.2018','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('80',convert(money,'10.09'),'16.2013','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('81',convert(money,'8.78'),'15.7496','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('82',convert(money,'4.95'),'15.6086','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('83',convert(money,'8.20'),'15.4618','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('84',convert(money,'7.63'),'15.3775','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('85',convert(money,'7.06'),'15.2405','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('86',convert(money,'8.18'),'15.2229','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('87',convert(money,'6.88'),'15.1594','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('88',convert(money,'7.46'),'15.0574','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('89',convert(money,'9.97'),'14.4833','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('90',convert(money,'8.45'),'14.3658','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('91',convert(money,'5.54'),'14.353','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('92',convert(money,'4.72'),'14.2415','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('93',convert(money,'10.08'),'14.0523','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('94',convert(money,'7.65'),'13.8778','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('95',convert(money,'7.35'),'13.7063','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('96',convert(money,'5.19'),'13.3039','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('97',convert(money,'7.29'),'13.1952','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('98',convert(money,'7.64'),'13.188','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('99',convert(money,'7.74'),'13.0517','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('100',convert(money,'2.62'),'12.9761','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('101',convert(money,'4.35'),'12.834','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('102',convert(money,'6.46'),'12.5904','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('103',convert(money,'9.53'),'12.5893','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('104',convert(money,'5.91'),'12.4486','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('105',convert(money,'6.80'),'12.2639','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('106',convert(money,'6.69'),'12.2329','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('107',convert(money,'6.37'),'12.2204','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('108',convert(money,'7.36'),'11.9331','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('109',convert(money,'7.63'),'11.5979','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('110',convert(money,'5.67'),'11.57','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('111',convert(money,'6.52'),'11.5695','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('112',convert(money,'6.74'),'11.5054','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('113',convert(money,'6.37'),'10.979','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('114',convert(money,'6.24'),'10.9037','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('115',convert(money,'9.18'),'10.8605','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('116',convert(money,'6.54'),'10.8433','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('117',convert(money,'6.21'),'10.6319','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('118',convert(money,'6.78'),'10.5205','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('119',convert(money,'5.35'),'10.1602','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('120',convert(money,'7.21'),'10.135','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('121',convert(money,'5.03'),'9.96296','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('122',convert(money,'6.48'),'9.95423','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('123',convert(money,'7.31'),'9.94387','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('124',convert(money,'5.03'),'9.71744','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('125',convert(money,'6.30'),'9.63011','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('126',convert(money,'6.06'),'9.60822','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('127',convert(money,'4.96'),'9.54318','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('128',convert(money,'3.65'),'9.36709','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('129',convert(money,'6.38'),'9.26422','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('130',convert(money,'4.13'),'9.11232','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('131',convert(money,'4.79'),'9.08303','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('132',convert(money,'7.17'),'8.94436','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('133',convert(money,'6.48'),'8.89934','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('134',convert(money,'5.65'),'8.87636','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('135',convert(money,'4.27'),'8.87305','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('136',convert(money,'7.83'),'8.73056','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('137',convert(money,'6.13'),'7.96018','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('138',convert(money,'6.28'),'7.911','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('139',convert(money,'4.13'),'7.61774','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('140',convert(money,'5.94'),'7.39469','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('141',convert(money,'4.22'),'6.85944','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('142',convert(money,'3.34'),'6.81982','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('143',convert(money,'6.60'),'6.56834','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('144',convert(money,'5.77'),'6.4892','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('145',convert(money,'3.08'),'5.64715','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('146',convert(money,'4.38'),'5.36118','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('147',convert(money,'3.39'),'5.28177','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('148',convert(money,'6.22'),'5.18103','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('149',convert(money,'5.10'),'5.15438','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('150',convert(money,'6.68'),'5.05164','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('151',convert(money,'5.72'),'5.0001','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('152',convert(money,'8.56'),'4.33456','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('153',convert(money,'5.03'),'4.01306','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('154',convert(money,'5.59'),'3.41515','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('155',convert(money,'0.00'),'3.30027','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('182',convert(money,'12.78'),'0','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('181',convert(money,'8.39'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('180',convert(money,'15.53'),'0','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('179',convert(money,'10.40'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('178',convert(money,'16.09'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('177',convert(money,'7.49'),'0','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('176',convert(money,'3.50'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('175',convert(money,'6.70'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('174',convert(money,'8.26'),'0','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('173',convert(money,'0.00'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('172',convert(money,'0.00'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('171',convert(money,'9.07'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('170',convert(money,'13.61'),'0','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('161',convert(money,'9.17'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('168',convert(money,'7.23'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('167',convert(money,'0.00'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('166',convert(money,'6.11'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('165',convert(money,'7.86'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('164',convert(money,'0.00'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('163',convert(money,'7.52'),'0','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('162',convert(money,'8.75'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('183',convert(money,'5.05'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('160',convert(money,'0.00'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('159',convert(money,'0.00'),'0','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('158',convert(money,'10.27'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('157',convert(money,'6.85'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('156',convert(money,'0.00'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('169',convert(money,'8.08'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('184',convert(money,'4.45'),'0','B')
    DML and DDL for the Raw table above.

  • Output/Input Scale Factor

    I have a high resolution stage used for a scanning application.  I'm using a pci-7344 to control the stage.  The system is marginally stable with kp=1 and various values set for ki and kd.  I have found several posts with the same issue:
    http://forums.ni.com/t5/Motion-Control-and-Motor-Drives/tuning-servo-system/m-p/139507/highlight/tru...
    http://forums.ni.com/t5/Motion-Control-and-Motor-Drives/Is-there-any-way-to-drcease-the-open-loop-ga...
    http://forums.ni.com/t5/Motion-Control-and-Motor-Drives/MAX-Reducing-Encoder-Resolution/m-p/1030934/...
    http://forums.ni.com/t5/Motion-Control-and-Motor-Drives/7344-PID-proportional-gain-1-but-actuator-st...
    It is apparent that the gain needs to be set below one and the only current solutions (decrease encoder resolution or decreasing the output limits) are both unacceptable.  Encoders aren't free (and in my case extremely difficult to replace) and I want my stage to run as fast as possible.
    Many other modern controllers allow the input and/or the output of the PID loop to be scaled (even if it's only by factors of two for non floating point dsp's) for exactly this reason.  This allows one to arbitrarily place the optimal kp value within the allowable integer range (i.e. 1<kp<32768).  Is there a way to do this on ni controllers?  If not is there a propper place to request features?

    Unfortunately you can't scale the input or output of the PID loop. I am attaching two links below that discuss how to tune the servo motor and also where you can make product suggestions. I'm sorry I don't have better news for you, but please post your ideas to the idea exchange below so our developers can look at them. Thank you!
    A Simple Method for Servo Motor Tuning
    NI Idea Exchange
    Mychal F
    Applications Engineer
    National Instruments

  • PLEASE HELP ME WITH DM PROBLEM

    Hi Guys,
    I kindly ask for your help with regards to my DM project. As you might recall, I am working on a project that is related to the field of agriculture and that has as an objective to find the "optimal values" of the operating conditions that affect the outcome (the amount of meat produced i.e. the weight) of an animal production (chicken broilers in my case). To do so, I have to use historical data of previous productions as my training dataset. The length a production cycle is typically around 44 days. For each production, a data acquisition system stores the real-time and historical data of hundreds of parameters. These parameters represent sensor measurements of all the operating conditions (current temperature, set point temperature, humidity, static pressure, etc...) and these are what I refer to as the inputs. The operating costs and the production outcome are what I refer to as outputs. The operating cost is indirectly computed from parameters like water consumption, feed consumption, heater/cooling runtimes, and lighting runtime; and the outcome of a production is defined by parameters like animal mortality and conversion factor (amount of feed in Lbs to produce 1Lb of meat). So the main objective of this project is to find the set of “optimal daily values” (1value/day) for the inputs that would minimize the operating costs and conversion ratio outputs.
    The biggest problem I am facing right now is the following: The historical data that I have in the DB are time series for each measured parameter. Some of these time series follow some kind of cyclic pattern (e.g. daily water/feed consumption …) while others follow an increasing/decreasing trend (animal weight, total heater run time, total water/feed consumption…..). My goal is to be able to come up with a model that suggests a set of curves for the optimal daily values throughout the length of the production cycle, one curve for each measured input/output parameter. This model would allow the farmer to closely monitor his production on a daily basis to make sure his production parameters follow the “optimal curves” suggested by my model. I have looked at ANN and I think it might be the solution to my problem since it allows to model multiple input/outputs problems (Am I wrong?), but I could not figure out a way to model the inputs/outputs as time series (an array of values for each parameter). As far as I know, all kinds of classifiers accept only single valued samples.
    One approach would be to create one classifier/day (e.g. for day1: extract a single value for each parameter and use these values as a training sample and repeat this for all previous production to construct the training set). The problem with this approach is that 44 or so classifiers will be constructed (hard to manage all of this) and each of these resulting ANN will be some kind of “typical average” of the training data but not necessarily the “optimal values” leading to the best production outcome, if I am not mistaken.
    Another approach would be to find a way to feed in the inputs and outputs as time series (an array of 44 daily values for each input/output parameter). In this case, there would be only one resulting ANN and the training samples, would be a set of arrays for each parameter, as opposed to single daily parameter values in the first case. The problem is, I could not find any classifier that would allow me to do that.
    Another issue that I have is the amount of data. While a single production cycle could represent 1-2GB of data, the length of the production cycle (44 days) makes it difficult to have 100’s of production cycle historical data, as I could gather data for no more than 7 full cycles/year. Fortunately, a farm can have many production units (5-10 barns/site in big sites), so this makes it possible to have 40-70 cycles/yr. My question is: would this be enough to come up with an acceptably accurate model or is it necessary to have hundreds of samples?
    Thanks for taking the time to reading this lengthy post, and I really appreciate your help and thank you in advance.
    Cheers.

    Hi Guys,
    I would really appreciate any help please. Maybe I was not precise enough
    last time, so I am going to decribe things more clearly with examples.
    Since the produced model will be used as part of an alarm/flagging
    system, I will have to produce a curve of each of the parameters of
    interest using 4 values/day=once/6h, and do this for the 44 days, this
    is to flag and correct any abnormal behaviour ASAP. So, the whole
    curve would have 4*44=176 values. E.g. for the water consumption
    curve: day1: 12AM=65Gal, 6AM=150, 12PM ... DAY44=6PM=1500Gal. I would
    have to come up with similar curves for each of the parameters of
    interest (inputs/outputs). Now as far as ANNs are concerned, do I
    have to produce 176 of these ANNs, one for each predicted value?
    ANN1: input1 (temperature-value Day1@12AM) input2 (humidity-value
    Day1@12AM)... output1 (feed consumption-value Day1@12AM), output2
    (heater_runtime-values Day1@12AM)... and train the ANN with the 50-60
    samples (Day1@12AM) from previous productions. This would produce an
    ANN for predicting the value of each parameter for Day1@12AM for
    future productions, etc.... This would quite intensive
    computationally, so I am wondering if there is a better way to maybe
    feed-in all the 176 values time series in one shot to have something
    like input1(temperature-values 1-176), input2(humidity-values
    1-176)... output1(feed consumption-values 1-176), output2 (heater
    runtime-values 1-175)... and this will produce only one ANN which
    will predict the 176 values for all parameters of future productions?
    I would really appreciate your help as I am really stuck at this.
    Cheers.

  • Svet's Care Package: Unlocked BIOS, vBIOS/EC tools, custom EC, ME update, etc.

    ID: 27K920100T2026530
    I have the MS-1763(-MFB1) barebone, and I would very much like a
    "care package" of yours. My current setup is briefly listed in the BIOS
    screen-shot, and I do not mind any updated versions of the firmwares
    (BETA or ALPHA). If you need more details from my system, feel free to
    list appropriate GNU-Linux/DOS tools and I'll give you their outputs.
    Anyway, without further adiue, here's the list of what I have made
    (if you got anything extra in mind feel free to mention that too
    over PM ;3 )
    - Fully unlocked BIOS (especially important that VT-d can be enabled*)
    - Updated EC with optimized fan values
      - Below 45C* the fan should be at minimum or off
      - The fan should be at maximum when hitting 75*C
    - Your vBIOS/EC tools. I got the GTX780M w/ 4GB
    - Newest ME update if there is one.
    I hope I'm not being to vague or confusing by this. If so I feel free to
    help adjust my requests by PM. I hope the amount donated is sufficient
    for you.
    Thank you on beforehand; it's appreciated the work you do =)
    *https://gist.github.com/anonymous/9106251 -- dmesg reports the BIOS as
    broken, which possible means either there's a bug with IOMMU
    implimentation or simply VT-d being disabled.

    I newly installed Windows 7 onto my computer which till now I've used a GNU/Linux server, and I've come on a roadblock, that is the internal sound was disabled (and perhaps other things I as a end-user am not aware of), which works with the stock BIOS. Because of the lack of documentation I can't be sure to find what option that enables the sound device, and such I have a new request: the factory defaults of the old bios to be patched over to the new one or something in that direction so that what should be enabled by default, is.
    Like last time, if there's any newer revisions of the firmwares (BIOS,EC,ME) I would not mind getting that patched up as well (same customization applies). And for your support, there might be another donation waiting for you in the end.
    Thanks again Svet for your work. Hope to hear from you soon. 

  • Dynamic_pager parameters

    We're periodically getting "no space in available paging segments" errors on our Xserves (running 10.4.7). But we have 9G free on the root filesystem (where /var/vm resides) and there's never a system.log message about that filesystem running out of space. I noticed that it creates swap files that are 64M, 64M, 128M, 256M, 512M, and 1G, and
    that's it. Looking at the comments in the source (ttp://darwinsource.opendarwin.org/Current/systemcmds-336.1.2/dynamic_pager.tproj/dynamicpager.c), it allocates files until it reaches one whose size is min(1/8 of the available free space, system memory, 1G) and that's it. 2G turns out not to be enough for us.
    Anyway, I'm going to try directing dynamic_pager to use fixed-length files to see if that helps. I've arbitrarily chosen a size of 512M, high-watermark 128M, low-watermark 1.5G. Is there a way to empirically determine optimal
    parameter values for each system? We don't want the root
    filesystem to be full, but don't want the system to spend a lot of time allocating and deallocating and rearranging hundreds of MB on disk. I was hoping there's some profiling we could do.
    Xserve G5   Mac OS X (10.4.7)  

    Hi, Mark. Welcome to the Discussions.
    You may also want to search or post on the XServe Discussion.
    I don't mean to send you somewhere else, but that's where questions related to XServe are answered.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • [915 Series] No async PCIe clock possible

    I have a 915P Neo 2 version 1.0A with latest bios 1.7
    Bios offers the possibility to clock PCIe async.
    Example:
    FSB 200 shows PCIe of 100
    FSB 240 shows PCIe of 114
    But changing PCIe setting to anything else and the board does not boot.    Only differences of 2 MHz to the optimal sync values are possible to let the system start. 
    Why is this a problem:
    The onboard LAN does not operate at more than 116 PCIe clock and my grahics card does not run stable at more than 120 MHz PCIe clock. 
    Is there a solution available?    Why won't the board boot with async PCIe clocks?
    Thanks and regards

    Yes, v1.6 should be able to support your CPU.
    BIOS Type AMI® BIOS   File Sizes 419KB
    Version  1.6   Update date 2005-2-23
    Update Description Update CPU Microcode for 64 bit CPU.

  • ColorChecker Passport-Color Profiles

    Hi there,
    I am photographing paintings with Elinchrom flashes with an even light and I use the ColorChecker Passport from X-Rite to keep a reference in order to match the colors.
    Till now, I've been using the software DNG profile manager, provided with the ColorChecker Passport from X-Rite, which creates a camera profile that should be helpfull to get the right color. Once I've applied the new camera profile (after restarting lightroom), I do the white balance. It's recommended on the X-Rite tutorial to use the target number 20 called "neutral 8" to do the white balance. I've also tried the target 22 called "neutral 5", and it seems to get slightly better results.
    I've noticed that even creating a color profile and doing the white balance the colors don't match. I am using a mac laptop screen that I calibrate quite often, which is not very helpful for obvious reasons, but that helps to keep track of the general look of the image, so that's why I keep the color adjustment to the RGB numbers.
    I've downloaded the following PDF; here there is some information about the RGB values of various ColorChekers:
    http://www.google.com/url?sa=t&source=web&cd=2&ved=0CB4QFjAB&url=http%3A%2F%2Fwww.babelcol or.com%2Fdownload%2FRGB%2520Coordinates%2520of%2520the%2520Macbeth%2520ColorChecker.pdf&rc t=j&q=ColorChecker%20rgb%20values&ei=wOCdTbG7NIyDhQelj5G8BA&usg=AFQjCNGj3wUpWC_uMxgMCeR3GI yN7kDU0A&sig2=mPf1grSAULxyMs_SanYVNw&cad=rja
    Using these values and a selective color layer in photoshop I get close to the real colors, although it is not good enough.
    My questions are:
    1-Does anybody know the ColorChecker Passport RGB (Adobe 98) values?
    2-I've tried to use the DNG profile editor because it seems a precise tool for this, but it doesn't recognise the 5D Mark II files. Is it because this application hasn't been updated? It also seems to work only with 6500K or 2850K, which is not the case of the Elincrhom 600 monoblocks I am using (which I think are around 5000K.
    3-Could anybody recommend a workflow that's better to match the colors?
    I have more questions, but I think these three are a good start.
    Thanks!

    Here are color-error analysis plots for several camera calibrations using the fine-art color-checker calibration shot uploaded, earlier.
    The three profiles tested were:
    1)  A custom Elinchrom Flash profile I created from the color-checker using the DNG Profile Editor,
    2)  The Adobe Standard camera profile,
    3)  The custom profile provided by Gustov.
    My general comment would be that the Adobe Standard profile has about the same error as the custom profile I computed using the DNG Profile Editor but the Adobe profile has a more even distribution of the color error.
    The profile Gustov provided seems to be very close in the yellow area, but quite far off in the reds, blues, and violets. This can also be seen as a severe shift toward the green of the WB Tint slider value when the profile is selected for the As Shot WB as compared to the almost zero value when using the Adobe Standard profile.
    These color-error plots were created using the ColorCheck module of Imatest Studio 3.7 from www.imatest.com.  The program compares the measured color values from a color-checker image to the standard color numbers of the Color Checker then plots the difference on a CIE chromicity diagram, where the squares are the standard color position, the circles are the measured color position, and length of line in between is the color-error.  In general, error in-and-out from the center is saturation error, while error around the center is hue error.  In a 3D plot luminance error is also shown but harder to visualize without a way to rotate the plot around.  Imatest provides this visualization in its Multicharts module.
    I used the ProPhotoRGB colorspace when saving the TIF out of ACR because the standard ProPhotoRGB color-checker numbers in Imatest are for D50 lighting whereas the AdobeRGB standard numbers are for D65 lighting.  As the image-filenames suggest, I used a linear toning curve and a black-point of 0 when saving out of ACR, but left the brightness at 50 and the contrast at 25.  I tried zeroing out the brightness and contrast or using the Medium Contrast toning curve but things were way off.  Using a blackpoint of 0 instead of the default of 5 also made things slightly better.  There are scripts that can compute the optimal toning values for the gray patches but I was only comparing profiles, not trying to optimize them completely.

  • Photoshop CS6 color flow problem

    Hey there!
    I have returned once again to these forums because I seek help with Photoshop. I haven't used PS in a few months so it might be just me not remembering the correct settings OR a technical problem, but I seem to be having problem with color flow...
    Here's what happens: Whenever I select a normal hard brush and try to paint with it the color flow stays the same and only becomes noticeable at around 20%, merely on the edges of the brush. On top of that the color values stay the same in the middle of the line I draw when flow is between 100% and 10%. I've tested and confirmed this with eyedropper tool.
    However if I just click with the brush and don't drag it along the canvas the flow works just fine anywhere between 100% and 1%. Because of this it's impossible to mix colors on screen and shade artwork properly. I don't know if I need to check/uncheck certain settings, but I can't seem to find a reason why it's acting like this, nor can I fix this on my own. Could there be a problem with my tablet?
    I really hope someone can help me with this. I've searched the internet for answers but couldn't find any so my last resort was to write on official Adobe forums. Thanks in advance for taking your time and reading my post.
    Have a nice day!
    Jerry
    P.S. I've made a simple diagram to show you my problem and included it in an image below:

    This worked in a way... I did exactly what you wrote, I changed the spacing to 100%(or more) and now the color flow is definitely noticeable no matter what it's value in % is, but my brush stroke turns into a series of connected dots.. I remember reducing the spacing from a default value of 25% to 1% on all of my brushes exactly because of this.
    If I turn the spacing back down and below 100% to a more reasonable value the dots will start to overlap and the brush stroke will become smoother, but the color flow will become less and less visible as the % of the spacing decreases.
    This is the solution I've come up with: In order to compensate for the visible overlapping at larger brush sizes AND keep the color flow functioning I increased the document resolution a few times and then pressed Control + 0 to fit the canvas on my screen. When you have a big canvas the large brush becomes much smaller and you can't really see the overlapping anymore, while still being able to maintain control of the flow of color.
    But is that really the only way?
    Also, what would you say is the optimal spacing value?

  • Pfile - init.ora file setup

    My database 10.2.0.3. OS is Sun Solaris 10. My database SID is test. I have part of my inittest.ora file as following:
    test.__db_cache_size=230686720
    test.__large_pool_size=4194304
    test.__shared_pool_size=200m
    test.__streams_pool_size=0
    *.pga_aggregate_target=150M
    *.shared_pool_size=300m
    *.aq_tm_processes=1
    *.audit_file_dest='/opt/Oracle/software/10.2.0/admin/test/adump'
    *.background_dump_dest='/opt/Oracle/software/10.2.0/admin/test/bdump'
    *.compatible='10.2.0.1.0'
    My question is what the first 4 lines are used for? I know if we are going to setup the parameter, we have to start with *. , right?
    Thanks a lot!

    If you remove those lines, oracle has to again recalculate the optimal/efficient values for the dynamic memory segments managed by ASMM feature of Oracle10g. If you keep it as it is, oracle will have a starting point to rework or start from where it left off when the instance is restarted.
    HTH
    Thanks
    Chandra Pabba

  • Question about Chroma Key Lights

    Any kind of light for chroma key background will be alright?? I guess shopping to wal mart would be ok? Let me know.

    ummmm, not likely.
    You should have a VERY even spread of light across the chroma background, plus a good backlight to seperate your subject from the background as well as good front light on your subject.
    Flourescent bulbs are great for even spread, but you should really try to get bulbs balanced for tunsten or daylight. There are filters/gels that can be used with consumer florescents, but even then you may get some tinting of your color spectrum.
    Have you ever shot chroma? If you do not shoot it properly, you'll have nightmares in post.
    You can place your lights above the camera line for talent, above the talent for chroma and above the chroma back at talent...(These can be more directional so you don't flare out your lens)
    There are optimal lux values you should try to achieve, but I'll let others be more specific.
    That said, I'll bet someone will chime in and tell how they did it with WalMart lights...I'm just offering a suggestion that might make it easier in post.
    K

Maybe you are looking for

  • Access the files of a web server through a JSP page

    Hello, Is it possible to access the files of a an Apache web server, just as you access your local machine. Basically i want to access the files of a specific folder, such as http://server:8080/foldername/ , and get a list of all the files stored in

  • Mac mini only sometimes displays

    i have a 2014 mac mini, intel iris graphics, 16 gb of ram and a 3.0 GHz i7 processor. a lot of the time my mac mini will display fine with no issues. but sometimes i turn it on and it just says no signal indefinitely, and i have to turn it off and on

  • Creative Cloud Deleting My Files

    Hi, About a month ago i posted a question about how to get my deleted files back that i did not delete.  Adobe sent me a link, the link would download a zip to a point then stop and give error message.  So i still haven't got those files back... Now.

  • Cannot Connect to 3G using micro-sim

    I have activated my 3G Micro-sim and inserted it but I still cannot connect to internet. When trying to open the APP Store in comes up with 'Could not activate cellular data network'. When I go to safari it says that the mobile devie is not set up to

  • Decrypt and Encrypt a CHAR Field

    Hello everybody, my issue is that I want to encrypt a Char field with length 12, which is written in a table. It should be possible if necessary to decrypt the char field after encryption. Do you have any suggestions? Thank you already Best Regards M