10G: getGeneratedKeys() and multithreaded code

Hi there,
I'm trying to use JDBC to retrieve auto-generated keys in my code. This seems to work fine when used by a single thread, but when I have multiple threads trying to insert records into the same table, I get "Protocol Violation" errors. Here's a snippet of my code -
          int[] returnArray = new int [] { 1 };
          ps = db.prepareStatement(DB_LOAD_STMT, returnArray);
//I set the various fields here
          if (ps.executeUpdate() > 0) {          
                    rs = ps.getGeneratedKeys();
                    if (rs.next()) {
                         int key = rs.getInt(1);
                         eventMap.put("evt_seqno", Integer.toString(key));
Is this a known issue?
Thanks in Advance,
Rajesh

Hi!
If you are using the 10g JDBC:
Try to use the connection cache feature. This workes like a connection pool.
I am using it in a tomcat application but without JNDI.
_ods = new OracleDataSource();
ods.setURL( connURL );
ods.setUser( odsUser ); // user name
ods.setPassword( odsPass ); // password
ods.setConnectionCachingEnabled( CONNECTION_CACHE_ENABLED );
Properties cacheProperties = new Properties();
cacheProperties.setProperty( "InitialLimit", "10" );
cacheProperties.setProperty( "MinLimit", "200" );
cacheProperties.setProperty( "MaxLimit", "300" );
_ods.setConnectionCacheProperties( cacheProperties );
_occm = OracleConnectionCacheManager.getConnectionCacheManagerInstance();
occm.createCache( CONNECTION_CACHE_NAME, _ods, cacheProperties );
_l.finest( "Cache created: " + "active connections: " +
occm.getNumberOfActiveConnections( CONNECTION_CACHE_NAME ) +
", available connections: " +
occm.getNumberOfAvailableConnections( CONNECTION_CACHE_NAME ) );
It creates "InitialLimit" connections in the statement:
occm.createCache( CONNECTION_CACHE_NAME, _ods, cacheProperties );
Then you can get a connection with:
conn = ( OracleConnection ) _ods.getConnection( );
from the chached connections.
I read "Expert Oracle JDBC Programming" R.M.Menon --> its excelent.
Maybe this workes with the multithreading.
Klaus

Similar Messages

  • Forms Code-Validation between 10g AS and windows

    i have a doubt as to what will be the forms code to validate between 10g AS and windows. This code will be used for in the case of windows authentication working between 10g AS and windows.
    I hope, my question is clear. Please help in solving the doubt.
    Regards.

    my doubt is that what will be the forms code to validate between 10g AS and windows. This code will be used for in the case of windows authentication working between 10g AS and windows. I mean to say that the code will have to be given in the my login form to validate that the user & password entered in my login-in form is the Windows user & password, if it is correct, it will allow to go to the next screen but if it is not correct, it will not allow to go to the next screen.
    regards.

  • Portability between Designer 9i r2 and Designer 10g r2, and deployment?

    I have some questions to ask...
    I have been given the job of adding Oracle to the reportoire of databases available to be used for a commercial Delphi application. The idea is to create a database in 10g that this application can talk to.
    I wish to develop the database, constraints and triggers etc using Oracle Designer (not because I think it's best, but simply I know how to use it, and don't know JDeveloper yet, and time is of the essence).
    Here's where the problem lies: The last application I developed was on 9i r2 and was going to a 9i r2 platform, and I generated DDL for the database tables stuff, and also for the table API, ending up with two sets of script files to run on the target system. Two of the lines of code in the table API script were:
    @ C:\oracle\9iDSHome\cgens72\sql\cdsaper.PKS
    @ C:\oracle\9iDSHome\cgens72\sql\cdsaper.PKB
    Of course the pathnames weren't right, but when I fixed them I managed to get the system installed correctly. However the clients for the application I am working on now should not have to have developer installed... I want them to be able to just run the script files into a 10g database and not worry about designer/developer at all.
    The other issue is just as serious. Although clients shouldn't have to have designer installed, I want the application developer/company owner to be able to fiddle with the designer if he wants to. I have 9i where I work, and he will have 10g. Will I be able to do a repository export/dump from my 9i r2 and import it to his 10g r2? With the previous project I did, I couldn't even import the designer export from my 9i r2 to the 9i r2 at the workplace... it said "Incorrect header file" - it was lucky I had the DDL script files or I would never have got it in the database at all! If they had had a different version of oracle then I don't know what would have happened when trying to run those package files from developer (the comments say something about an error package or some such)!
    Eventually I'm going to upgrade to 10g for database development but I don't want to just yet.
    So my questions are:
    1. Can I develop the system using 9i r2 DB and 9i r2 DS and then create DDL scripts to be run on 10g client databases without having to have developer installed on the client machines? could my "boss" distribute those two developer package files with the DDL scripts to the clients without breaking some kind of copyright?
    2. Will I be able to import a Designer 9i r2 export into a Designer 10g r2 repository for my "boss" to make adjustments and produce refined DDL scripts himself later on?
    If the only thing holding me back is having 10g installed where I work then tell me now and I'll take the plunge. If there's other issues I need to find a way around them.
    I thank you in advance for any advice you can give
    Thanks
    Adam Sawyer

    Hi,
    This issue has been reported with Designer Releases prior to 9.0.4.4 against 10g database.
    Please upgrade to the latest Designer Release 9.0.4.5 the import will work fine.
    HTH,
    Wilson.

  • Slow first connection using Oracle 10g xe and Visual Studio 2008

    {noformat}
    Good day,
    I'm slightly unaccustomed to using forums, so bear with me.
    My initial connection to the Oracle database takes approximately 30 seconds. It seems to be waiting for a connection before timing out and trying another connection which works, as all subsequent connections work immediately. I'm unsure how other people's responses in forums can help me due to the plethora of configurations, so here's mine. My comprehension of the oracle world is still growing, you'll have to explain the terms you're using for me, Hoping you can help.
    I'm using Visual Studio 2008, set to use 32 bit debug mode, on a Windows 7 Pro platform. Also using Oracle 10g Xe, and have installed the 32 bit version of ODAC 11.2 (11.2.0.1) to aid making a connection from Visual Studio to Oracle.
    I have a database set up and a user with system admin rights. This is all local for a programming project and will never see the light of day outside of my personal machine.
    I am using code to connect, not the GUI. I wish to code this project completely without the aid of the GUI. so my connection string within Visual Studio C# is (pw/id hidden)...
    string xe = "Data Source=xe;User Id=xxxxx;Password=xxxxx;";
    OracleConnection conn = new OracleConnection(xe);
    My c:\devsuitehome\network\admin\sqlnet.ora file is this:
    # sqlnet.ora Network Configuration File: C:\DevSuiteHome\network\admin\sqlnet.ora
    # Generated by Oracle configuration tools.
    SQLNET.AUTHENTICATION_SERVICES= (NTS)
    NAMES.DIRECTORY_PATH= (LDAP, TNSNAMES, EZCONNECT, ONAMES, HOSTNAME)
    And my c:\devsuitehome\network\admin\TNSNames.ora file is this:
    tnsnames.ora Network Configuration File: C:\DevSuiteHome\network\admin\tnsnames.ora
    Generated by Oracle configuration tools.
    XE =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = xe)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = <machine name)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = PLSExtProc)
    Just for good measure, my tnsping xe shows:
    "Used paramter files:<br/>
    c:\devsuitehome\network\admin\sqlnet.ora<br/><br/>
    Used TNSNAMES adapter to resolve the alias<br/>
    Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521)))(CONNECT_DATA = (SERVICE_NAME = xe)))
    OK (0 msec)"
    So, how can I make that initial connection faster so I don't spend 15 years testing my application due to slow start-ups? :)
    Thank you.
    Kevin.
    {noformat}
    Edited by: 832285 on Jan 29, 2011 10:08 AM
    Edited by: 832285 on Jan 29, 2011 10:10 AM

    I have formatted my hard drive since my first post. I was running window 64 bit with a higher version of the ODAC and that proved to crash my machine with faulty error messages about memory. I have reverted to a previous version of the ODAC tools and everything works very smooth now. Still the connection time is consistently 20 seconds or longer on the first attempt.
    Just a little more information.. I am currently taking a college course with 15 other students, as you can tell by the impersonal machine name, where programming using visual studio 2008, and Oracle 10g xe is expected. All of us are using a 64 bit environment and we all have difficulties cutting down the load time of making the first connection to Oracle. Some people are longer making the connection, but none are shorter.
    One other note. After the first connection is made, taking 20 or more seconds, and is closed, all subsequent openings of the connection are instantaneous, for all of us.
    If there is ANYTHING more I can get for you, please let me know. With my environment stable as it is, I will not need to format or change any information for the foreseeable future.
    Here is the information you requested
    1 The connection method I am using, I have chosen the manual connection for you, however the delay exists if the connection is made through the GUI as well.
    Historically, I am getting slow connection speeds through adding the connection through the GUI or by a manual connection. Here is how I am doing it manually. I have the connection being created in 20 seconds, which is the best I can get.
    Imports Oracle.DataAccess.Client
    Also included project reference: oracle.dataaccess / version 2.111.6.20
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            Dim connString As String = "Data Source=XE;User Id=abc;Password=abc;"
            Dim con As OracleConnection = New OracleConnection()
            con.ConnectionString = connString
            Try
                con.Open()
                MessageBox.Show("Connected!")
                con.Close()
                con.Dispose()
            Catch ex As Exception
                MessageBox.Show(ex.Message)
            End Try
        End SubMy current TNS Ping results
    TNS Ping Utility for 32-bit Windows: Version 10.2.0.1.0 - Production on 16-FEB-2011 01:02:36
    Copyright (c) 1997, 2005, Oracle.  All rights reserved.
    Used parameter files:
    C:\oraclexe\app\oracle\product\10.2.0\server\network\admin\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = XE)))
    OK (0 msec)2 Connection to SQL plus is instantaneous.
    I fought for weeks about the ODAC version 11.2.0.1 that you see in the previous post, and that would be a whole new thread. Suffice it to say I have a reliable environment to program in with this 10.2.0.1.0 version that I am running now, and the connection time has not changed, it is still minimum 20 seconds load time, sometimes up to 25.
    3 Ram usage in my typical environment
    I am running this laptop with 4 gigs of ram. This is a typical environment I would be running my application in.
    Physical memory
    total 4090
    cached 1753
    available 2345
    free 656
    system
    handles 27141
    threads 911
    processes 70
    commit megs 2860/8179
    kernel memory megs
    paged 201
    nonpaged 52
    4 I formatted my machine and reinstalled the Windows 7 professional operating system as of a few nights ago. The Oracle software on my machine is
    Oracle Database 10g express edition
    ODAC 11.1.0
    I amm not sure what filename you would need in addition to the product names that I have installed.
    5 The information from the SET command is
    ALLUSERSPROFILE=C:\ProgramData
    APPDATA=C:\Users\stepheke\AppData\Roaming
    CommonProgramFiles=C:\Program Files\Common Files
    CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files
    CommonProgramW6432=C:\Program Files\Common Files
    COMPUTERNAME=STEKEV0908
    ComSpec=C:\Windows\system32\cmd.exe
    FP_NO_HOST_CHECK=NO
    HOMEDRIVE=C:
    HOMEPATH=\Users\stepheke
    LOCALAPPDATA=C:\Users\stepheke\AppData\Local
    LOGONSERVER=\\STEKEV0908
    NUMBER_OF_PROCESSORS=2
    oracle_sid=xe
    OS=Windows_NT
    Path=C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\Oracleapp\stepheke\product\11.1.0\client_1;C:\Oracleapp\stepheke\product\11.1.0\client_1\bin;C:\oraclexe\app\oracle\product\10.2.0\server\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;c:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Windows Live\Shared
    PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
    PROCESSOR_ARCHITECTURE=AMD64
    PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 23 Stepping 10, GenuineIntel
    PROCESSOR_LEVEL=6
    PROCESSOR_REVISION=170a
    ProgramData=C:\ProgramData
    ProgramFiles=C:\Program Files
    ProgramFiles(x86)=C:\Program Files (x86)
    ProgramW6432=C:\Program Files
    PROMPT=$P$G
    PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules\
    PUBLIC=C:\Users\Public
    SystemDrive=C:
    SystemRoot=C:\Windows
    TEMP=C:\Users\stepheke\AppData\Local\Temp
    TMP=C:\Users\stepheke\AppData\Local\Temp
    USERDOMAIN=stekev0908
    USERNAME=stepheke
    USERPROFILE=C:\Users\stepheke
    VS90COMNTOOLS=c:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\Tools\
    windir=C:\Windows

  • 10g XE and Embedded

    In order to scale up databases, is there an embeeded version of Oracle that could be used for, say, as 'sampler' application (therefore should be license free) allowing for scale-up to 10g XE and later on to a full Oracle installation?
    I'm looking at a logical (in my eyes) progression from a trial to a fully fledged system.
    TIA

    As Justin and yingkuan have said, if all you are doing is transferring the schema from XE to SE, you should experience no challenges.
    However, if you are ALSO moving the application, because it was built using APEX or Oracle Portal or anything else that stores the application code in the database, you will have some issues. For example, APEX with XE is release 2.1 whereas APEX on SE is 'anything but release 2.1'. The subtle differences can cause significant headaches.
    At the SQL and PL/SQL level, XE is a true subset of SE. Other than APEX (and administration utilities which in XE are built into APEX), anything you throw at XE should work in SE1, SE, EE and PE unchanged.
    It almost goes without saying that XE is 10g Release 2 (10.2.0.1.0) and we assume that SE1/SE/EE/PE is also 10gR2 (10.2.0.1 or higher).
    That said, most organizations with SE1 and higher fully license, get support, and patch their database. So the standard "watch out for changes in functionality due to patches" rule still holds.

  • Wht is diff b/w sy-ucomm and ok code

    hi,
    what is diff b/w sy-ucomm and ok-code
    Regards,
    Rani.

    Hi,
    sy-ucomm is for doing the functions what the user wishes to do at that particular event. You use it in menus and other place . this mainly in using <pfstatus>
    ok_code is generally used in screen as of I have used. You will define the function in the screen. and you can use it in the main program.
    ok_code acts just as a temporary variable that stores the value of sy-ucomm.
    When user interacts with the screen elements, the function code that you have assigned is filled in the sy-ucomm field which is turn gets reflected in OK_CODE.
    In your ABAP programs, you should work with the OK_CODE field instead of SY-UCOMM. There are two reasons for this: Firstly, the ABAP program has full control over fields declared within it, and secondly, you should never change the value of an ABAP system field. However, you should also always initialize the OK_CODE field in an ABAP program for the following reason:
    In the same way that the OK_CODE field in the ABAP program and the system field SY-UCOMM receive the contents of the corresponding screen fields in the PAI event, their contents are also assigned to the OK_CODE screen field and system field SYST-UCOMM in the PBO event. Therefore, you must clear the OK_CODE field in the ABAP program to ensure that the function code of a screen is not already filled in the PBO event with an unwanted value. This is particularly important when the next PAI event can be triggered with an empty function code (for example, using ENTER). Empty function codes do not affect SY-UCOMM or the OK_CODE field, and consequently, the old field contents are transported.
    Diff bet OK-CODE and SY-UCOMM
    Difference Between SY-UCOMM and OK_CODE
    ok_code/ sy-ucomm usage in dialog program

  • From which table i will get PO tax amont and tax code name.

    HI all
    I"m giving date to develop one Z report.Where i will get the PO tax amonut(not condition amount).i need total TAX amount and TAX code..from where i can get these two??
    plz help me
    thanks
    ramesh reddy

    Hi
    for excise check table J_1IEXCHDR for header
    J_1IEXCDTL for item excise
    The Table name used to find the Tax Values are
    KOMV: Pricing Communications-Condition Record
    KONV: Conditions (Transaction Data)
    From the above tables you can refer the fields below.
    KAWRT
    KBETR
    Fetch the corresponding records based on the field
    KNTYP
    Search net you will get many threads on this

  • How to do selective delete of the GL a/c, BA and Co Code from the BWrequest

    Hi,
    How to do selective delete of the GL a/c, BA and Co Code from the BW request ??
    Regards,
    Vivek

    Cube or DSO?
    Cube - manage - notedown the req number - selective deletion - enter req number at REQ ID and give the selection parameters as you need(GL a/c, BA and Co Code ) and execute.
    For DSo you can't do selective deletion on request id basis

  • Work Order list report that will includes Damage and Cause codes

    Is there a WO list report that includes fields of the Damage and Cause Codes?
    Thanks.

    Hi,
    Generally damages and causes  we update in notifications then i think there wont be a list which u r asking
    For notification  the t-code is iw69

  • Hi, my MacBook Pro cannot open Safari. nexpectedly while using the librooksbas.dylib plug-in" the report details the exception code as 'EXC_BAD_ACCESS (SIGSEGV)' and exception codes as: 'KERN_INVALID_ADDRESS at 0x0000000920

    Hi, my MacBook Pro cannot open Safari. It crashes and gives the message, ' Safari quit unexpectedly while using the librooksbas.dylib plug-in" the report details the exception code as 'EXC_BAD_ACCESS (SIGSEGV)' and exception codes as: 'KERN_INVALID_ADDRESS at 0x0000000920

    Remove "Rapport" by following the instructions on this page.
    Back up all data before making any changes.

  • My phone does not show contact names for country and area code while having in coming calls. Although, I have endorsed the name with numbers. How do I the problem. My one is a iphone 3s device with updated os. Please text to help

    My iphone does not recognize saved contact number while having incoming calls due to country and area code as auto prefix. How do i fix the problem. How do i ensure that the phone recognize calls with and without the country and area code. Please text to help.

    1) Open the Phone and dial *228. This is a Verizon over-the-air programming number.
    2) When the system answer press 1 for "Program or activate your phone"
    3) Wait for the call to disconnect. You should get a prompt stating something like, "Settings updated."
    4) Open the Task Manager and kill the Phone, Message, and Contacts Applications
    5) Wait a few minutes (I waited 3 just to be extra safe)
    6) Open the Message App to verify the fix

  • Oracle.jbo.NoDefException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-25058. Error message parameters

    Dear Guru's,
    I am not able to solve the above issue for last couple of days.
    I am newbie to the webservice
    My Issue...
    I am using Jdeveloper 11.1.2.4.0 Release 2
    1. Using Jdev I built one small Web Service with two methods.
            While testing the Webservice...
                   I passed User Id as Parameter and it successfully return the values (user id, user name and description) from fnd_user table
    2. I created another application to consume the web service i created.
                   1. I added the webservice SOAP and added the method.
                   2. Created a jsf page and drag and drop the parameter and return values to the jsf page.
    3. While executing the created jsf page I received the error message as below
    "oracle.jbo.NoDefException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-25058. Error message parameters are {0=Attribute, 1=UserName, 2=UserName}"
    Even I know that this issue is repeated one in our forum, I was not able to solve this issue.
    Can anybody help to solve this issue.
    Thanks and Regards,
    Durai S E

    Dear Guru's,
    I am not able to solve the above issue for last couple of days.
    I am newbie to the webservice
    My Issue...
    I am using Jdeveloper 11.1.2.4.0 Release 2
    1. Using Jdev I built one small Web Service with two methods.
            While testing the Webservice...
                   I passed User Id as Parameter and it successfully return the values (user id, user name and description) from fnd_user table
    2. I created another application to consume the web service i created.
                   1. I added the webservice SOAP and added the method.
                   2. Created a jsf page and drag and drop the parameter and return values to the jsf page.
    3. While executing the created jsf page I received the error message as below
    "oracle.jbo.NoDefException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-25058. Error message parameters are {0=Attribute, 1=UserName, 2=UserName}"
    Even I know that this issue is repeated one in our forum, I was not able to solve this issue.
    Can anybody help to solve this issue.
    Thanks and Regards,
    Durai S E

  • Wrong combination of Plant and Co code at the time of PO creation

    Dear all,
    At the time of creating PO when I am entering Plant and Company code system is not giving any error message if I am entering other Co code , i.e. Co code which is not assigned to the plant. I want an error message in case of maintaining wrong combination of plant and Co code.
    Any suggestion ??
    Reward assured for helpful answer.
    Thx and regds
    Amitava

    Go to SPRO - MM - Purchasing - Environment Data - Define Attributes of System Messages - System Messages
    Then maintain system messages 00 06 167 and then set as E (error) in category field.
    Reward if useful

  • How to find out what are the interfaces used for Job and Job Codes

    HI All,
    I just wanted to know how do we find out what are the interfaces used for Job and Job codes .
    Thanks In Advance
    Sunny

    Hi,
    Here is an idea for your request.
    Basically you can create a simple query on multiprovider 0TCT_MC01.
    Filter: you can use a variable for restriction of time ( calday, or calmonth) since you should be interested for a time period.
    Choose following characters into your objects:
    InfoProvider ( 0TCTIFPROV )  - you can create a variable for choosing infoprovider before query runs.
    *Tp.[Type of BI Application Object] 0TCTBISOTYP  = filter this with 'QUERY' or whatever your need is.
    *BI Application Object 0TCTBISBOBJ,  ( this will give you the name of the queries)
    In key figures choose,  Count for BI Appl. (0TCTWTCOUNT).
    (number for query run)
    Create a condition , for top 20.
    Hope this helps.
    Derya

  • OS X and classic creator and type codes

    Is there anyway, within the native os to change type and creator codes?
    Why would I want to? Here's an example:
    I get a .zip from a customer. Because I have Stuffit installed it takes ownership of the archive. That would be fine except I've noticed different results using stuffit vs. BomaArchive helper. As in they don't unzip with the same amount of files.
    I used to use Super Get info to change them, but that's not a possiblity now. And if Apple didn't hide Boma so deep in the OS I might be able to just make an alias and drop them on it. Won't find on a search for "Boma", both visible and invisible.
    Thanks for any help. I'm just trying to find another way to make my OS do what I want it to, not what some app develper or OS creator deems should happen.
    Remember... think different?

    You can easily change any document's default application by selecting the document icon, press COMMAND-I to open the Get Info window. In the section labeled Open With select the desired default app from the drop down menu. If you want all similar documents opened by the default app, then click on the Change All button.
    Alternatively download the freeware preference pane RCDefaultApp from www.versiontracker.com.
    BTW, not pointing a finger at you, but keep in mind that even morons "think different."
    Thanks for your ideas, and more, thanks for the jab at the slogan Apple used to use to differentiate itself, and it's consumers from other, less user friendly OS's.
    But your solution doesn't help me. I'm well aware of changing the assigned app through the get info window, and that there are other utilities as, if not more adept at this function. My problem is that, if I have to solve my problem this way, instead of gaining knowledge about what effect type and creator codes have in OS X and how to change and deal with them, I find it hard to impossible to track down the location of the app BomaArchiveHelper. It never appears in the "Open with" pop up, and therefore I need to know the location in order to navigate to it to tell OS X to use it. And being that I see different results when unzipping depending on which app was used to create the zip, I don't want to set it as default.
    So, my questions stand.
    How do you view and alter type and creator codes in OS X, and where exactly is BomaArchiveHelper located.
    G4 MDD Dual 1.25 Mac OS X (10.3.9)

Maybe you are looking for

  • Recovery question using archive log

    HPUX 11X Oracle 10.2.0.2 I have a standby database that the customers want to test the ability to fail over. They also want to test the data integrity of the standby once it's brought on line as the primary. I've already told the customer that any wr

  • E66: "press unlock to activate keypad" issue

      hi, i've been using the phone for a few months now and i noticed recently that sometimes,when i lock the keypad, i get the  "press unlock to activate keypad" message, on and on, without me touching any buttons at all. It just keeps appearing very r

  • IPod synced with another computer message

    I have an iPod and an iPod nano suing iTunes on one computer, when I plug the iPod in and try to sync it, the iPod syneced to another computer comes up. The nano works fine. The iPods use two different playlists and the playlist for the iPod is empty

  • Windows xp home edition

    Good morning, why can't I run SAP under Windows XP Home Edition? Thanks for explanation in advance.                                       Jiri Lindovsky

  • Spool Error - Spool created but not opening/displaying. Message no SP01R042

    Dear All, In the ECC Production System, for SD documents Spool is  created but not opening/displaying. Message no SP01R042 When we check the short dump for the user, The dump is - - POSTING_ILLEGAL_STATEMENT - Statement "CALL SCREEN" is not allowed i