Select and function with no_data_found

Hi,
I came across this today (I remembered reading about it somewhere).
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
With the Partitioning, OLAP and Data Mining options
SQL> create function rahul_f return varchar2 as
2 begin
3 raise no_data_found;
4 end rahul_f;
5 /
Function created.
SQL> select rahul_f from dual;
RAHUL_F
SQL> declare
2 i varchar2(1);
3 begin
4 i := rahul_f;
5 end;
6 /
declare
ERROR at line 1:
ORA-01403: no data found
ORA-06512: at "XX.RAHUL_F", line 3
ORA-06512: at line 4
SQL>
So, I know this has something to do with 'no_data_found' mentioned here:
http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14261/errors.htm#LNPLS00703
'Because this exception is used internally by some SQL functions to signal completion, you should not rely on this exception being propagated if you raise it within a function that is called as part of a query.'
Anybody have any link on explaining this part more? I looked around but, couldn't find any discussions on this.

I had same experience few days back.
First I dont think you need the funtion to call the exception.
You can directly implement your code in the EXCEPTION block, if theres a no_data_found excpetion.
This is my code..
PROCEDURE modify_req_det(
detail_id_in IN req_details.detail_id%TYPE,
type_id_in IN req_details.req_type_id%TYPE,
value_in IN VARCHAR2,
parent_in IN req_details.parent%TYPE,
sortorder_in IN req_details.sort_order%TYPE,
groupid_in IN req_details.group_id%TYPE,
errormsg OUT NOCOPY VARCHAR2) AS
BEGIN
SELECT DISTINCT lookup, col_name
INTO v_lookup, v_colname
FROM req_type t, req_details d
WHERE parent = parent_in
AND t.req_type_id = d.req_type_id;
EXCEPTION
WHEN no_data_found THEN
UPDATE req_details SET
req_type_id = type_id_in,
value_id = v_valueId,
parent = parent_in,
sort_order = sortorder_in,
group_id = groupid_in
WHERE detail_id = detail_id_in;
END modify_req_det;

Similar Messages

  • Which smart tv (SAMSUNG U46F7000 or SONY BRAVIA W8 46'') has the best communication and functionality with apple devices?

    Which SMARTTV (SAMSUNG U46F7000 or SONY BRAVIA W8 46'') has a better communication and functionality with apple devices (i pad- iphone).
    Since the above manufacturers do not give me a straight answer and it is very important reason for me to make a choice please advise!

    Sorry but I must correct about SONY!!!
    The question was for Bravia series W9 and not W8.

  • Older CUA version connectivity and functionality with ECC 6.0

    Our current Solution manager box, which is used for CUA, is on Netweaver 04 (sap basis 640 patch 16).  We are in the process of upgrading to ECC 6.0.
    Generally speaking I would recommend having a CUA box at the same level or higher than the child systems.  However I'm would like to know if anyone has experience with a similar version scenario as described above.  If so what issues did you run into and or other items should I be aware.
    Also, ECC has several new system parameters and other password related changes.  Can any of the newer password functionality be used if CUA is still on the older version?
    --B

    have a look at this thread
    Technical upgrade to ERP2005 6.0 and CRM2007 with CUA on 640?
    it should answer both your questions.

  • Policy-based Tunnel Selection and PBTS with Dynamic Tunnel Selection option

    Unfortunately I can't test this feature on GSR 12k platform.
    RP/0/0/CPU0:ios(config)#show config failed
    !! SEMANTIC ERRORS: This configuration was rejected by
    !! the system due to semantic errors. The individual
    !! errors with each failed configuration command can be
    !! found below.
    interface tunnel-te1
    policy-class 1
    !!% The requested operation is not supported: Feature not supported on this platform
    end
    What is the difference between Dynamic Tunnel Selection and ordinary PBTS? It would be nice to see some real-world example.

    PBTS with DTS is supported only on the Cisco XR 12000 Series Router... you should rather test it on 12K platform.

  • Select from function with named parameters doesn't work

    Hello,
    I'm trying to execute the next sql statement:
    SELECT mypack.getvalue(user_id => 231, status => 'closed') AS someAlias FROM DUAL;
    I'm getting the next Error:
    Error: ORA-00907: missing right parenthesis
    But the next works fine:
    SELECT mypack.getvalue(231,'closed') AS someAlias FROM DUAL;
    What I'm doing wrong?
    Is there a way to call a Function and return it's result as a single-row query?
    Thanks for any suggestions.

    Thanks for your answers.
    Just want to explain what I want to accomplish:
    I want to create PL/SQL statement which:
    1) Calls Function in named notation way;
    2) Returns a query which contains a single row - a Function result.
    I know in Transact-SQL I can accomplish this the next way:
    DECLARE @return_value INT
    EXEC[myproc]
    @id=2,
    @status='ok',
    @ret_param=@return_value OUTPUT
    SELECT @return_value AS my_return_value
    The last SELECT call returns a query with one row in it.
    How can I do the same in Oracle?
    Thanks a lot!

  • SELECT and ORDER with several indexes on a table

    Hi,
    I am looking for the best way to select rows from a table if they satisfy a condition depending on several indexes, or from a join.
    I am currently doing it with unions, like that:
    SELECT article_id, article_date, score(1) score
    FROM articles
    WHERE CONTAINS(article_body,'searchQuery',1) > 0
    UNION
    SELECT article_id, article_date, score(1) score
    FROM articles
    WHERE CONTAINS(article_title,'searchQuery',1) > 0
    UNION
    SELECT article_id, article_date, 100
    FROM articles
    WHERE article_id IN (SELECT article_id FROM article_keywords WHERE keyword = 'searchQuery')
    ORDER BY score DESC, article_date DESC
    But I was wondering whether it would be better performance-wise to do it with conditional expressions like
    SELECT article_id, article_date, score(1) scoreBody, score(2) scoreTitle
    FROM articles
    WHERE
    CONTAINS (article_body,'searchQuery',1) > 0
    OR CONTAINS (article_title,'searchQuery',2) > 0
    OR article_id IN (SELECT article_id FROM article_keywords WHERE keyword = 'searchQuery')
    ORDER BY scoreHeadline DESC, scoreBody DESC, article_date DESC;
    Also, if doing it with conditional expressions, I don't see how to avoir having to declare several "scores".
    In a more general way, I don't see exactly how to consider the results coming from the join with the article_keywords table in terms of score (right now I'm giving them 100, so they're coming up first).
    I am completely new to indexes, so my apologies if anything in this SQL is hurting just looking at it.
    Thanks for reading, and for any help you can bring.

    You can check out the explain plan for the two queries. I did a small test for employees table . The first query scans the table 3 times, while the second does only once.
    hr@XE> EXPLAIN PLAN FOR
      2  SELECT * FROM employees
      3  WHERE last_name like 'Joh%'
      4  UNION
      5  SELECT * FROM employees
      6  WHERE last_name like 'Pet%'
      7  UNION
      8  SELECT * FROM employees
      9  WHERE last_name like 'King%';
    Explained.
    Elapsed: 00:00:03.06
    hr@XE> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 1534505908
    | Id  | Operation                     | Name        | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT              |             |     3 |   204 |     9  (78)| 00:00:01 |
    |   1 |  SORT UNIQUE                  |             |     3 |   204 |     9  (78)| 00:00:01 |
    |   2 |   UNION-ALL                   |             |       |       |            |          |
    |   3 |    TABLE ACCESS BY INDEX ROWID| EMPLOYEES   |     1 |    68 |     2   (0)| 00:00:01 |
    |*  4 |     INDEX RANGE SCAN          | EMP_NAME_IX |     1 |       |     1   (0)| 00:00:01 |
    |   5 |    TABLE ACCESS BY INDEX ROWID| EMPLOYEES   |     1 |    68 |     2   (0)| 00:00:01 |
    |*  6 |     INDEX RANGE SCAN          | EMP_NAME_IX |     1 |       |     1   (0)| 00:00:01 |
    |   7 |    TABLE ACCESS BY INDEX ROWID| EMPLOYEES   |     1 |    68 |     2   (0)| 00:00:01 |
    |*  8 |     INDEX RANGE SCAN          | EMP_NAME_IX |     1 |       |     1   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       4 - access("LAST_NAME" LIKE 'Joh%')
           filter("LAST_NAME" LIKE 'Joh%')
       6 - access("LAST_NAME" LIKE 'Pet%')
           filter("LAST_NAME" LIKE 'Pet%')
       8 - access("LAST_NAME" LIKE 'King%')
           filter("LAST_NAME" LIKE 'King%')
    hr@XE> explain plan for
      2  select * from employees
      3  where last_name like 'Joh%' or last_name like 'Pet%' or last_name like 'King%';
    Explained.
    Elapsed: 00:00:00.01
    hr@XE> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 1445457117
    | Id  | Operation         | Name      | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |           |     3 |   204 |     3   (0)| 00:00:01 |
    |*  1 |  TABLE ACCESS FULL| EMPLOYEES |     3 |   204 |     3   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       1 - filter("LAST_NAME" LIKE 'Joh%' OR "LAST_NAME" LIKE 'Pet%' OR
                  "LAST_NAME" LIKE 'King%')

  • Select and update with lock exclusive

    Hello Everybody
    In our application we have a table autonum     to handle unique keys for all other tables.
    In Autonum we have a column "SUCHBEGRIFF" char(40) unique KEY and a column "WERT" fixed(10,0).
    Suchbegriff has values like Rechnungsnr,Auftragsnr,Bestellnr ...
    Example:
    Befor inserting a record into table rechnungen we do:
    Select wert from autonun where suchbegriff = "Rechnungsnr" with lock exclusive.
    l_rechnrneu = wert + 1 
    update autonum set wert = ?l_rechnrneu where suchbegriff = "Rechnungsnr"
    commit
    (then l_rechnrneu is used for an insert into rechnungen command)
    This technic works for all tables (250) in our application.
    We have about 400 concurrent users working with maxdb 7.6 via odbc 7.6
    No problems since 2 years!
    Now we start some backgroundjobs from an xp-workstation.
    We have scheduled 5 jobs, starting every 5 minutes, same time.(Same user,same odbc-connection)
    Each job inserts records into a table joblogs and therefore needs a unique JOBLOGNR from autonum.
    Now we run into problems 2 or 3 times a day?
    <Sometimes the backgound jobs are running (waiting?) without inserting a record into joblogs (deadlock?)
    And more worse:
    Sometimes the insert into joblogs failes with "duplicate key" ??
    We don't know where to begin? Maxdb Problem ? Workstation problem?
    Any help welcomed
    Best regards
    Albert

    > >Gosh - that's information overloading at it's best...
    > We call this needed information.
    > What does our SAP-System? We have 1 mandt,60 accounting areas and about 200 werks!
    > Of course SAP uses internal unique keys for all tables, but we configured different "number intervals" for each werks.
    With "information overloading" I was referring to the multiple meanings you encode in just one column (your "rechnungs-no").
    SAP tables do not have this.
    As you wrote, there is "MANDT", "BUKRS", "WERKS" ... and the primary key is defined over all relevant columns.
    There is no primary key column where all the different meanings are concatenated together.
    So there aren't any surrogate keys here (a.k.a. AUTOID) used here - (ok except the infamous DDLOG sequence...).
    > >What do you do, when the value of an invoice has to be changed? Update the primary key of the table?
    > Update rechnungen set amount = xyz,...... where rechnungnr = nnn
    > We never change rechnungsnr,if the invoice was wrong we produce a credit for it and then write a new invoice
    So, you could use a sequence here instead as well.
    > > We don't use rollback when fetching logids from autonum.
    > >So what do you do, when connection fails, the database crashes or the client application hits an error?
    > >You use rollback. There is no way to avoid it.
    > >Your application gets a "duplicate key" error - the database performs a rollback of your last action. What does your application do then? Commit?
    > Sorry, i meant that we do not do rollbacks over  2 or 3 inserts or updates in different tables.
    > SQL-Command,On error = messagebox,errorlog,quit
    You don't handle the fetching of the new number in the same transaction as the actual insert of your application data in the same transaction?
    > >What isolation level do you use?
    > We use DATABASE ISOLATION LEVEL 0
    Hmm... did you read the documentation on SQL Locks?
    [Internals Course - SQL Locks|http://maxdb.sap.com/training/internals_7.6/locking_EN_76.pdf] :
    "Isolation level 0 does not offer any protection against access anomalies."
    Basically it might have happened that the same number is read twice.
    Perhaps the application is not always requiring locks when reading data from this table?
    > After connecting to the database via odbc we do
    > =SQLSETPROP(verbindungsnr,"Transactions",2)
    > 2 = Transaction processing is handled manually through SQLCOMMIT( ) and SQLROLLBACK( ). Read/write.
    > =SQLSETPROP(verbindungsnr,"DisconnectRollback",.T.)
    >
    >
    > So normal select commands are fired without a following commit.
    > Insert and update commands are fired with a following commit command.
    > Selects from autonum are fired with "look exclusive"
    Please be more detailed here.
    What is the exact sequence of actions here?
    1. Fetch number from number table and update number table.
    2. COMMIT
    3. Insert new application data with the just fetched number.
    4. COMMIT
    or
    1. Fetch number from number table and update number table.
    2. Insert new application data with the just fetched number.
    3. COMMIT
    And what does your application do with its data when a rollback occurs?
    Is it guaranteed that all variables are reset?
    > Nevertheless you dislike our design, do you think it would be better (quicker,safer...) to use an internal databases procedure to get
    > the next speaking number for a given "suchbegriff" from our autonum table? (no translation of the sql-command every time)
    No, currently we don't know what is causing the problem, so we cannot tell whether such a change would help. In fact, right now it would make things more complicated because we would less understand, what's happening here.
    Concerning your design: it's not about "liking" or "not liking it".
    I just pointed out some problems that result from the design as it is.
    > select   wert into :neuerwert FROM "BWPROGI"."AUTONUM"  WHERE upper(suchbegriff)     = upper(:suchkey) WITH LOCK EXCLUSIVE;
    > update  "BWPROGI"."AUTONUM" set wert = wert + 1 WHERE upper(suchbegriff)     = upper(:suchkey) ;
    > SET neuerwert = neuerwert + 1;
    > end;
    1. The WHERE clause UPPER(suchbegriff) = UPPER(...) is the best way to disable the efficient use of any index structure. Better make sure that your data is in the right format in the table when you enter it and then look it up without the UPPER() conversion. 
    2. I wouldn't perform the increment two times.
    Get the current value into your variable, increment this variable, set the current value in the table to the variable.
    > A char(10) return value would be nice and i don't know wether this would be the quicker way.
    Why should it? You would have to convert it first - that's additional work.
    Anyhow, to move ahead with your duplicate keys problem, you may perform a vtrace with the "stop on error" option.
    As your error is a duplicate key on a primary key constraint you should set "stop on error" to the error code "200".
    The next time your application hits the error, the vtrace automatically stops and we could examine what happened before.
    See [MaxDB database trace|https://wiki.sdn.sap.com/wiki/x/2yg] for details on how to activate the trace.
    When the error occurs next time and you caught it in the vtrace we can take a look at it.
    regards,
    Lars

  • AddEventListener and Function with Parameters

    Hello guys
    I got this situation
    nameTxt.addEventListener(FocusEvent.FOCUS_IN,formTextHandler);
             private function formTextHandler(text:String):void{
    where i want to send some additional information too
    so how could i do that?
    Thanks

    hi,
       it seems like you will need to extend your text Component and Event class as well. Its not clear from your code that what component you are referring to . so generally you will extend your required component .
    you will need to addEvent Listener
    FocusEvent.FOCUS_IN
    in your custom extended component and in the handler of that focusEvent you will dispatch your new custom event with the parameters from this FocusEvent you received and as well as new parameters that are also required by your new extended Event.
    Method of extending events is straight forward. e.g this a sample for extending Events you will need to modify it with the paramaters you require in your event .
    package
        import flash.events.Event;
        public class AccountEvent extends Event
            public var accountObj:Object
            public static var NewAccount:String='newAccount'
            public function AccountEvent(type:String,newAccount:Object)
                super(type)
                this.accountObj=newAccount
    and here is the code how to use this event
    package
        import flash.events.Event;
        import flash.events.FocusEvent;
        import AccountEvent
        import mx.controls.TextInput
        public class customText extends TextInput
            public function customText()
                super();
                addEventListener(FocusEvent.FOCUS_IN,onFocus)
            private function onFocus(e:FocusEvent):void{
                dispatchEvent(new AccountEvent(paramaters.....///here you will add your custom paramerters and 
               //you will catch this event in your main application rather then catching the focus in event

  • OfficeJet 6310xi - recognized and functional with iOS ePrint app but not AIO app. Why?

    As noted - OJ 6310xi is on same netork as other printers and all computing devices.  The iOS app "HP ePrint" recognizes and allows printing to the 6310xi.
    The AIO Remote app will find all printers on the network except the 6310xi.  The 6310xi is not WiFi enabled and is not an "ePrint" printer, but it is networked to WiFi accessible network.  Works with one app, why not the other?  Am I overlooking a setting somewhere?

    Hi MedMarkCo
    I'm sorry to hear that you are encountering difficulties connecting your printer to different apps. 
    The HP ePrint app is designed to work with your home wireless network as well as with your mobile device's data access.  As you have your printer connected directly to your router via an ethernet cable is available on your wireless network for the app to "see" the printer.  For further information on the HP ePrint app I have included a link to the HP ePrint Mobile App FAQs document.
    I have done some research on the AIO Remove app you mentioned in your post.  I have included a link to their website and they have a way for you to contact them if you need assistance or have feedback.
    AIOR All In One Remote
    http://www.aioremote.net/home
    HP ePrint Mobile App FAQs
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&dlc=en&docname=c01923321
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • Commit in sp  having  globle table and function with autonomus transaction

    hi gurus,
    1)  i want to know if we populate a globle table in sp  then give  commit  then weather data will be present in globle table or not ..?
    globle table :-
    ON COMMIT delete  ROWS
    NOCACHE;
    2)  in same sp if we call a function having  autonomus transaction  and commit  then wath will happen ..

    1) i want to know if we populate a globle table in sp then give commit then weather data will be present in globle table or not ..?
    globle table :-
    ON COMMIT delete ROWS
    NOCACHE;Data will be deleted from the Global Temporary Table.
    2) in same sp if we call a function having autonomus transaction and commit then wath will happen ..Data Will not be deleted from the Global Temporary Table.

  • Sick of losing features and functionality with Apple "upgrades"

    So far with upgrading my IPad 1, my iPod touch1 and my Apple TV,  I have lost some features on everything and the iPad is slow and crashes all the time.
    really ****** off,  I have 7 Apple products and didn't think I would ever stray,  but if this keeps up I will be reconsidering.

    Ok, thanks for sharing - but do you actually have a technical question we can help with?
    Which features do you think you've lost? I'm not aware if any features Apple has actually removed. You also don't mention what you gave upgraded from and to.

  • When will the EOS Utility be compatible and function with the Mac OS X?!

    Solved!
    Go to Solution.

    Glad to have been of help, why there isn't an auto update on Canon software, godness knows!!

  • [solved] run dmenu with custom aliases and functions

    Is it possible to run my custom bash aliases and functions with dmenu?
    My aliases are placed in ~/.bash_aliases and my functions are in ~/.bash_functions.
    I source them in my ~/.bashrc through:
    Functions
    if [ -f ~/.bash_functions ]; then
    . ~/.bash_functions
    fi
    # Aliases
    if [ -f ~/.bash_aliases ]; then
    . ~/.bash_aliases
    fi
    Last edited by orschiro (2013-12-27 08:41:40)

    No problem!... sorry, I was about to post an "improved" version, but it breaks support for functions, doh!
    EDIT: finally got it to work as I wanted Sorry, zsh stuff is gone from mine, I don't use it -- feel free to borrow the improvements for your version though!
    v1.4 Changes:
    - removed unnecessary if statements
    - removed unnecessary 'source' command
    - added some logic to see if the command is a real program, or an alias/function - this saves spawning bash shells that aren't needed
    v1.5 TODO list:
    - add some "history" feature so that commonly used commands appear first in the list
    #!/bin/bash
    cachedir=${XDG_CACHE_HOME:-"$HOME/.cache"}
    if [ -d "$cachedir" ]; then
    cache=$cachedir/dmenu_run
    else
    cache=$HOME/.dmenu_cache # if no xdg dir, fall back to dotfile in ~
    fi
    cmd=`(
    IFS=:
    if [ -f ~/.bash_aliases ]; then
    aliases=( ~/.bash_aliases )
    fi
    if [ ~/.bash_functions ]; then
    functions=( ~/.bash_functions )
    fi
    if stest -dqr -n "$cache" $PATH || stest -fqr -n "$cache" "$aliases" || stest -fqr -n "$cache" "$functions"; then
    stest -flx $PATH
    source $aliases
    alias | awk -F '[ =]' '{print $2}'
    compgen -A function
    ) | sort -u | tee "$cache" | dmenu "$@"
    else
    dmenu "$@" < "$cache"
    fi
    )`
    if [ -f ~/.bash_aliases ]; then
    if [ ! -z $(which $cmd) ]; then
    exec $cmd &
    else
    echo -e "source ~/.bash_aliases \n $cmd" | bash -O expand_aliases &
    fi
    fi
    Last edited by dennis123123 (2014-04-21 10:09:39)

  • How to Remove "OLAP Functions with right-click" in Workbooks (By VBA?)

    Dear Experts:
    After we created workbooks, to prevent end users from using certain BEx functions, we greyed out some "icons"
    on SAP BEx Menu in the workbooks. But now we have one problems: because we also made "Setting" unable on the menu bar, now we are not able to remove one marked selection: "OLAP Functions with right-click". Is there any way we can disable "OLAP Functions with right-click", then users can only use the normal Excel functions in the workbooks??
    Thank you very much and BR
    SzuFen

    Hello,
    Go to Business Explorer Menu, Select Settings, Uncheck OLAP Function with Right Click and save it as existing workbook.
    I have tried it. It works, when you reopen, it will be still disable..
    Hope it helps.
    San.
    Message was edited by: SAN

  • How can I use the procedures and functions in my library

    hello, all
    I have a pl/sql library MYLIB.pld, MYLIB.pll and MYLIB.plx.
    How can I invoke procedures and functions there in JDeveloper?
    Thanks.
    Damon

    I am indeed using ADF BC to re-develop the oracle application.
    Here is my situation:
    We have an oracle form application.
    Our objective is to try to re-use the existing sources in the form application as much as possible:
    1. tons of procedures and functions in a pl/sql library(a file with extension name portfolioLib.pll or portfolioLib.plx);
    2. tons of form-level triggers, data-block triggers and item-triggers;
    3. tons of database stored procedures and triggers;
    After doing a research on JDeveloper, we decide to use ADF Swing+ADF BC to re-develop the application.
    My opinion for the above three kinds of sources in our form application is:
    for 1: we try to move most of procedures and functions into database(except Form build-in);
    for 2: we try to wrap those triggers in a SQLJ class;
    for 3: we try to call database procedures and functions with PreparedStatment or CallableStatement;
    I just do a test on a post-query trigger on a data-block:
    I created a sqlj file, named testSQLJ.sqlj in the test.view package;
    I tried to call it in createInstanceFromResultSet of testDeptVOImpl.java which is test.model package,
    I was told that testSQLJ cannot be found there. why?
    How can I call some classes from test.view package in some classes of test.model?
    I read some documents about how to deal with post-query trigger in JDeveloper: create a view with SQL statement, but it seems that it does not support pl/sql statement there.
    Can you give me some opinion about the above stuff?
    I really appreciate your help.
    Damon

Maybe you are looking for

  • Studio MX 2004 - How to I transfer my serial number from a PC that is broken to a new PC?

    My old PC has died and I have loaded my Studio MX 2004 software onto my new computer. When I try to activate the serial number Adobe sends me a message that I can only activate the serial number on one computer. How can I change the serial number reg

  • Usb issues on a215

    i downloaded the BIOS update to fix the screen going black issue, but now i'm having horrible USB issues. 1. a drive i've used for 3 years can't be recognized by the laptop, no matter what port i put it into. 2. i keep getting that "connection tone"

  • Customizing Payment term for vendors

    Hi, I'm looking for customizing related to vendor master Payment term. Could you please help me ? Yours truly

  • Best way to update through testing repo

    As I am finding out, there are certain limitations to pacman. I enabled the testing repo to try out xorg 1.7, and to see if this could help with my X delay at startup. I enabled the repo and installed xorg, gcc, and among other packages. My problem i

  • About Oracle Application Server 10.1.3.1

    Hi friends, I got a software and in its installation guide, it says the software supports Oracle Application Server +10.1.3.1+. How could I find where to download a pure Oracle Application Server 10.1.3.1 rather than the SOA suite. The suite is very