Increase Sunos 5.8 Major Number

Hai,
I am Developing Device Driver For SunOs 5.8.
I want to Add more then 100 Device Driver in My Server.
But, Server Giving this "No available major numbers."
Now, How will increase this Major Number Count.
Sun Os is having any configuration for this ?
-Udhaya Kumar.V

Hi,
A reboot will get you an additional 30 major numbers.
'max # in /etc/name_to_major + 30'.
If you had no holes in the major number space,this would allow you to add up to 30 drivers without rebooting the system.
If you need more, rebooting will do the same thing (30 + the new max)."
HTH
-Dhruva

Similar Messages

  • How to get sd major number from my driver

    Hi,
    I have a specific question. I have a driver (mydriver) that acts like a filter driver.
    When it receives IO from the file system through strategy() routine, it wants
    to replace its b_edev with that of sd device instance. mydriver creates minor
    nodes exactly as sd driver. All I need is to know what is the major number
    of sd driver. How do I do this programmatically through mydriver?
    Your help is greatly appreciated.
    Thanks,
    sudhakar

    Hi,
    I am trying to develop a "filter driver" at the file system level for Solaris to get the statistics of some of I/O calls send to a SCSI device. It exists between the VFS and the file-system-dependent layer. Does anyone has experience in developing such a "pseudo file system module". Please share your experience and suggestions.
    Initially I was thinking to develop this by getting the "st" major number. That is the reason it is been posted as a reply to this query.
    Thanks in advance
    -Jiji

  • Can I change the SD's  major number ?

    Hi,
    I need to perform a test scenario where SD's [the default scsi driver provided by Solaris ] major number is greater than some specific value [say 255] . I am wondering if it is OK to just change the value of major number of the SD in /etc/name_to_major and follow it with reboot -r ...
    Would it work or I may end-up making the machine unbootable ?
    Has someone already tried this ..
    Advance Thanks for any useful suggestions,

    KinsaKaUy? wrote:
    Thanks Prab,
    What is the standard naming of a "good" alias? Can you give me a good format sample?
    What if I make the number "100" as the alias? Would it be possible?Off the top of my head I can't think of anything that would cause greater confusion.
    Did you try?
    You can't create a numeric alias that is different to the application ID. Other than an alias that is identical to the app ID, aliases must be valid Oracle identfiers.

  • "No major number for ifp"

    Hi Folks,
    I have an Ultra30 running Solaris 9 09/05 HW
    Recently when booting it has started displaying a warning message...
    WARNING: add_spec: No major number for ifpThis doesn't seem to prevent the machine booting & it seems to run OK.
    Any ideas what might be causing this, and what needs to be done to stop it?
    Thanks & Regards
    Kevin

    Those HBAs are old and use ISP chips which are not supported and don't work in fabric environment. Those chip are 21xx chips are they cannot log to F_ports.
    Regards
    nwi

  • Need to increase length of the check number

    Hi Gurus,
    When i am trying to increase the length of the check number from 7 digits to 8 digits. I am getting the error message FIBL664. could you please help me regarding this.
    Thanks in advance....
    Ramanjaneyulu

    Dear Ramanjaneyulu,
    There are several checks concerning the structure, the length of check number etc. before creating new check lot. As the message FIBL664 says, the structure of check number for the new check lot does not  correspond to the check lots created earlier. It is supposed that the lots of one bank have the same length of check number and structure.                                                                               
    However, if you want to create this check lot with such characteristics  you can setup the message FIBL664 to 'S' or turn it off using transaction SM30 and view V_T100C.  
    This is not a Controlling issue, but an FI issue. If you need more information, I'd suggest opening a message in the forum of ERP Financials.
    Regards,
    Antje

  • How to increase the size and the number of log files

    OS Win2000 BD version Oracle8.0.5
    When i Execute a big Transaction, for example: Insert into a table with 100,000 records,
    Oracle tell me that archive log require,
    but I write log_archive_start =true in init.ora;
    I think Maybe the size of log file too small?
    Any other suggestion?
    Thanks

    Hello Long Guohui,
    If your Database is running in Archive Log mode and if the Automatic Archiving is not enable then obviously Oracle
    will ask that "Archive Log Required".
    But if your Database is running with NoArchive Log mode then Oracle should never ask you that "Archive Log Required".
    If your Database is running with Archive Log Mode then Oracle always recommends that the Tablespace where
    you are going to Insert the 1,00,000 records, make that Tablespace Mode from Logging to Nologging, so that
    Archive will not be generated for those entries because Redo does not Generate for that Tablespace as it is
    Running in Nologging mode. If Redo generates for those 1,00,000 entries then it may affect the other DML
    executing in you Database. So it is always recommended to do like this. But after the Insertion is done
    successfully Oracle recommends immediately takes the Back of that Tablespace where you have just
    Inserted 1,00,000 Data.
    For making a Tablespace Nologging:
    ALTER TABLESPACE <TABLESPACE NAME> NOLOGGING;
    For Making a Database from NoArchive to Archive:
    1)     SHUTDOWN IMMEDIATE
    2)     IN THE init<sid>.ora FILE SET THE FOLLOWING PARAMETER WITH VALUE:
    LOG_ARCHIVE_START = TRUE
    3)     STARTUP MOUNT
    4)     ALTER DATABASE ARCHIVE LOG
    5)     ALTER DATABASE OPEN

  • Latency increase with large number of databases

    Hello,
    I'm testing how BDB performs on random updates as the number of databases increases. I'm seeing increase in latency as the number of databases goes up. and strace shows that more time is spent on futex() when there are more databases. Is this an expected behavior?
    Thanks!
    --Michi
    Set Up:
    <li> BDB version: db-5.1.19
    <li> Operating system: RHEL4
    <li> Number of records: 2.5M
    <li> Record key size: 32B
    <li> Record value size: 4KB
    <li> Page size: 32KB
    <li> Access method: BTREE
    <li> Records are inserted into a database based on the hash of the key.
    <li> BDB is accessed via RPC server
    <li> RPC server thread pool size: 64. All the threads share the same env and db handles.
    <li> Number of RPC client process: 64
    <li> Each client does random updates. Throughput is throttled to be about 250 requests/sec, which means each process does about 4 requests/sec.
    Flags used for env and db:
    ENV flag DB_THREAD | DB_RECOVER | DB_CREATE | DB_READ_COMMITTED | DB_INIT_TXN |
             DB_INIT_LOCK | DB_INIT_LOG | DB_INIT_MPOOL
    DB flag DB_AUTO_COMMIT | DB_CREATE | DB_THREADDB_CONFIG
    mutex_set_max 2000000
    set_cachesize 1 0 1
    set_lk_max_objects 2000
    set_lk_max_locks 10000
    set_lk_max_lockers 10000
    set_lg_regionmax 8388608
    set_lk_detect DB_LOCK_DEFAULT
    set_thread_count 20000
    set_lg_max 1073741824 Result
    Number of databases: 256
    Average latency: 52 milliseconds
    strace output
    % time     seconds  usecs/call     calls    errors syscall
    64.74  121.199645        1032    117398           recvfrom
    17.21   32.217921         487     66104      9335 futex
      8.76   16.409370        2724      6024           pread
      2.47    4.630256         813      5694           fdatasync
      2.19    4.102371         105     39162           sendto
    Number of databases: 512
    Average latency: 123 milliseconds
    strace output
    % time     seconds  usecs/call     calls    errors syscall
    58.33  121.384230         933    130158     20045 futex
    23.06   47.977408         383    125146           recvfrom
      4.41    9.167276        1425      6431           pread
      3.11    6.472676         155     41716           sendto
      3.08    6.414824         366     17506           sched_yield
    Number of databases: 1024
    Average latency: 133 milliseconds
    strace output
    % time     seconds  usecs/call     calls    errors syscall
    70.46  102.981390        1077     95656     14884 futex
      9.88   14.435594         169     85256           recvfrom
      5.48    8.008787        1825      4389           pread
      3.13    4.576880         368     12436           sched_yield
      2.98    4.351077         153     28415           sendto
    ...

    Hi James,
    Presently, we never evict a DB after it's opened or encountered during recovery. Each DB takes about 2,000 bytes. So if you have 16K DBs you need approximately 32MB of memory, assuming all of them could be opened or recovered during a process lifetime. Unfortunately, even closing them does not cause them to be evicted. If you encounter them during recovery, this will also pull them into memory.
    We have an FAQ entry on this:
    http://www.oracle.com/technology/products/berkeley-db/faq/je_faq.html#37
    So you will need a bigger cache size. If you are encountering this during recovery, then you could try a more frequent checkpoint interval.
    I hope this is useful.
    Regards,
    Charles Lamb

  • Clone device major/minor number?

    hi all,
    say 'y' is the clone of 'x'(pseudo device) and after add_drv if i observe in /devices/pseudo the y's minor number is equal to major number of x ,correctly as per framework.That means minor numbers are unique for both.
    But whereas in the driver module when i tried to
    display the major/minor number using getmajor() and
    getminor() functions in open routine, it is showing
    the same minor/major numbers for both the devcies.
    Why?
    i tried to open the devices one after the other
    without closing the first device.
    say
    open("/dev/x" O_RDWR);
    open("/dev/y" O_RDWR);
    any help will be highly appreciated.
    thanks in advance
    vasu

    //need more info on this.......what are these x and y? how did you create them? and how are they linked to your pseudo minor nodes in /devices/pseudo directory .
    if x and y are symbolically linked to the same minor nodes, then you get the same major and minor numbers.

  • Increasing length of equvalnce number (BADI/field exits)

    Hi friends,
    Currently I have one requirement in which
    I need to increase the length the Equivalnce number which is present on Apportonment to Co-products tab on Costing tab of material master.
    Path for same is given below,
    "<b>Material Matser</b>" screen >> "<b>Costing1</b>" Tab >> Click on "<b>Joint Production</b>" Button (it will bring to Cost Apportonment to Co-products:Apportionment Structures screen ) >> Click on "<b>Equivalnce Numbers</b>" ( it will bring to Cost Apportonment to Co-products:Equivalnce Numbers screen)
    Currently length of euivalncve number (last column) is 3 as standard,In my requirnment I will have to increase the length.
    How it could been done ? With field exits or BADI.
    Regards,
    Amit

    Hi,
    SAP provides as 18 charcter by default.
    You can even use the reference field of House bank to put extra digits.
    Account number BANKN - 18 + Reference info REFZL - 4.
    While exporting the data use functional module CONVERT_HOUSEBANK_ACCOUNT_NUM and pass data in this.
    This solution is valid only where you have new developments but need to check SAP standard reports for the flexibility.
    John

  • Sequence file Version number. How to prevent the automatic resetting build version number whilst auto-incrementing revision number?

    Hi,
    I've got my environment set this way that each save of the sequence file increase the revision part of version number. However, during that increase the build counter is reset to 0. How to prevent it?
    TS 4.2

    Mimi,
    It is pretty common practice in software revisioning to reset a minor number to 0 when a major moves up 1.  There are many different schemes out there.  If you google or bing software versioning schemes you'll see what I'm talking about.
    So looking at it from left to right:  Major.Minor.Revision.Build = 0.0.0.1 
    if you change the Revision it would be expected that anything to the right (in this case Build) would reset to 0.  0.0.1.0!
    Let's say your version is 8.34.56.23.  It would make sense that if you were to change the Major number (which means a Major release) to 9 then your version would go to: 9.0.0.0. 
    A version number is just a unique way to tell someone which specific software you are using so it really doesn't matter that it resets to 0.  Although it makes sense because if you kept your build number sequential and didn't reset it then it would get outrageously larger which would be more annoying than anything. 
    Again this is common accepted practice in industry.
    Good Luck,
    jigg
    CTA, CLA
    teststandhelp.com
    ~Will work for kudos and/or BBQ~

  • Sudden increase in 'stuck spindle' drive failures in Enterprise

    I'm trying to wrap my head around a sudden increase in drive failures (non-system or disk error \ drive no longer detected in BIOS).  We've had a total of 6 drives suddenly fail in the past 3 days, we typically have less than that fail in an ENTIRE year. I tested 4 of these drives and all 4 had the 5 beeps \ siren sounding error code (see stuck spindle audio in the link below). http://datacent.com/hard_drive_sounds.php I have a hard time believing this is a legitimate hardware issue but is it even possible for something to trigger a 'false-positive' condition?  To rule out a voltage spike or electrical damage these drives\PC's that exhibit these issues are spread throughout 3 different physical locations in different states. There have been numerous deep scanning security products pushed to these PC's in the past 2 months, more than I can even list.  Is it possible that somehow one of these products are corrupting the firmware on these drives to cause this? List of products I'm aware of that are on these systems : McAfee HIPsMcAfee AgentMcAfee Deep CommandMcAfee VirusScan Enterprise Newest products :Digital GuardianTanium ClientenCaseFireAMP Thanks!

    I'm no drive expert but 18 drives failing since August with the same problem and they all had your "deep scan security" stuff applied on them? It seems to me the problem is something with your software that is doing a major number on those drives like nothing else, have you tried just running them without all that "security agent"  junk? It makes sens that if you alone have experinced this kind of failure that if it was a problem with the drives themselves hundreds or thousands of people would be complaining of the same problem. I've run my WD drives hard for 18 years in many machines and I've never had even one fail in any way, but then I run them on Mac machines and none of them use any of those "deep scan" security agents, Norton or any of that other stuff.

  • In WL 6.1 SP4 random value updated in NUMBER column

    Our application used to update a NUMBER(15) column in Oracle with current time
    in milliseconds.
    After migrating from SP3 to SP4 I observed that ORA-01438 was being thrown during
    the update intermittently.
    Increasing the size to default NUMBER, I observed that the values getting inserted
    are sometime random like 59, 81 digits long!
    The update code just does a prepared statement and does setObject of a java.lang.Long.
    I am using the oracle thin driver in oracle's classes12.zip.
    I am sure that this is happening since using SP4, have anyone faced similar problems?

    We have changed default thin driver to 920 from 817 in 610sp4. If you are using 817
    dbserver, please put 817 classes12.zip in your classpath before weblogic.jar and you will
    be ok.
    Mitesh
    Harish SK wrote:
    Our application used to update a NUMBER(15) column in Oracle with current time
    in milliseconds.
    After migrating from SP3 to SP4 I observed that ORA-01438 was being thrown during
    the update intermittently.
    Increasing the size to default NUMBER, I observed that the values getting inserted
    are sometime random like 59, 81 digits long!
    The update code just does a prepared statement and does setObject of a java.lang.Long.
    I am using the oracle thin driver in oracle's classes12.zip.
    I am sure that this is happening since using SP4, have anyone faced similar problems?

  • How to change the max number of member display in Target Group

    Dear Experts,
    We are using 2007 CRM Marketing.
    When I search and open a Target Group it displays me maximum of 100 entries of members over 11 pages. how do I increase or decrease the max number.
    Appricate you help.
    Thanks,
    Shabbir Hussain

    Hi,
    you can set the number of members that will be displayed in target group.
    Go to any profile group -> open the graphical modelling -> open settings.
    Here you can ajust the displayed number of members in a targetgroup.
    These settings are user-dependent and saved in table CRMD_MKTTG_PERS.
    Regards,
    Claudia

  • Number range buffer - can this really be? SAP BW 710

    Hello everone,
    hope you are fine!
    I am looking for some real light into the number range buffering
    I have extracted 2 Million data from DS 0PCA_EC_3 into a standard DSO which took inititally 13 h. (14 h in Production)
    Now I figured the InfoObjects with high number range levels and enabled the buffering there.
    The result is - which I can not believe at the moment and thats why I am looking first for answers before I disable the number range buffering and ran again into 13 h load - that the load took plus activation 45 MINUTES!!!!!
    The Questions are:
    1. Can this be possible that the performance increase so dramatically due to number range buffering?
         I have not checked the SM66 for selection to table NRIV at the initial run
    2. If this is realy the reason do I have to transport the settings I did in SNRO?
    3. What if I decide not to use the number range buffering after some loads, is it easy to disable again without any data issue?
    Thanks really for your input these are much appreciated.
    bye Ömer

    Hi everyone,
    is there no one who can at least share his/her experience with number range buffering?
    thanks for any input on this.
    bye Ömer

  • OBIEE 11g: Error - Exceeded configured maximum number of allowed output

    Hi Guys,
    We are implementing OOTB Repository, After data load some of the reports are showing the following error msg. Can anyone point me out where to change the limits?
    "Showing error while loading ""View Display Error
    Exceeded configured maximum number of allowed output prompts, sections, rows, or columns"". It must be because of the restriction on the number of records in a report"
    Thanks in advance

    Sudipta Gupta wrote:
    Hi Guys,
    We are implementing OOTB Repository, After data load some of the reports are showing the following error msg. Can anyone point me out where to change the limits?
    "Showing error while loading ""View Display Error
    Exceeded configured maximum number of allowed output prompts, sections, rows, or columns"". It must be because of the restriction on the number of records in a report"
    Thanks in advanceWhat version of OBIEE are you using? Assuming you are on 11g, below is the link that tells you what tag's needs to be changed in the configuration file in order to increase/decrease the limit on number of rows retrieved in a report across the board:
    http://r12bifmw.com/2012/03/23/obiee-errors-with-exceeded-configured-maximum-number-of-allowed-output-prompts-sections-rows-or-column/
    Hope this helps.

Maybe you are looking for

  • Restrict % symbol in normalization BI 7.0

    Dear Friends, I have two quick questions. 1. In Bex, while selecting variable values, how do i do setting to read the values either from Master data table or from the cube (data target). 2. I have normalized a key figure. It shows normalization with

  • Quad G5 Audio In doesn't work

    Neither the external iSight nor analog mic input doesn't work. Both devices work fine on the laptop. No way of telling if the optical input works. Removed audio pref and there was a brief indication (input LED was stuck at some levels, not the usual

  • Still can't launch classic inside 10.4.5 despite alias fix

    Hi, I still can't launch classic inside 10.4.5 without the "connection failed" message problem. I tried the fix of removing all the aliases from the apple menu items and still I get this irritating message. classic will launch and the app within it,

  • Text issue in FBL5N

    Hi I created Credit note and credit memo , there we g\have not maintained any text. bt once i go to FBL5N  and locating my all item details there i am finding text(xyz) in below of that line item. i checked there is no any precedent docs having text

  • I have been using Pages for several years to do a newsletter. Now, suddenly they won't open.

    Cannot open documents in Pages.