Compare varchar with number

Hi,
I had a problem as below:
Create table Test (col1 varchar2(20));
insert into Test (col1) values ('123');
insert into Test (col1) values ('ABC');
select * from Test Where col1 = 123;
I get following error:
ORA-01722: invalid number
select * from Test Where col1 = '123';
select successful.
But when I perform following step:
Delete from Test;
insert into Test (col1) values ('123');
insert into Test (col1) values ('234');
insert into Test (col1) values ('345');
select * from Test WHERE col1 = 123;
Select successful.
I just query why I can't compare 1 number to a varchar2 column when there is character record in that column. I'm using Oracle DB 10.2.0.2 and I believe oracle should be allow implicit convert between number char varchar2. Do I miss anything to make my first select statement return with the record I need?
Thank in advance.
Eng Khoon

Hi,
I had some new input for this post i created yesterday.
Let say i create a new table with 2 column
Create table test (col1 varchar2(30), col2 varchar2(30))
I insert following data into the table
col1 col2
123 ABC
ABC BCD
234 ABC
345 ABC
BCD BCD
I perform following select statement from above data:
select * from test where col2='ABC' and col1=123
I perform this test in my local DB (10.2.0.2) and I can successful selected out 3 rows;
But when i perform same select statement in my server DB (10.2.0.2), it complain ORA-01722: invalid number
Please help! Anything I can set so that my server also allow to perform the similar select statement?
Thanks.

Similar Messages

  • How to compare varchar with number

    i am doing one report for that am passing receipt number(from , to) as parameters
    if i compare for that table i am getting output.
    select receipt_num from rcv_shipment_headers rsh
    where to_number(rsh.receipt_num) between nvl(:P_RECEIPT_FROM,rsh.receipt_num) and nvl(:P_RECEIPT_TO,rsh.receipt_num)
    but when i am using in below query it is getting error "Invalid Number"
    select rsh.receipt_num
    , sum(rs.quantity)
    , rs.unit_of_measure
    , rct.transaction_date "Date of Entry"
    , pov.vendor_name
    , msi.segment1 "Item Code"
    , msi.description "Item Description"
    from rcv_transactions rct
    , rcv_shipment_headers rsh
    , rcv_shipment_lines rsl
    , po_vendors pov
    , mtl_system_items_b msi
    , rcv_supply rs
    where rsh.shipment_header_id=rct.shipment_header_id
    and rsh.shipment_header_id=rsl.shipment_header_id
    and rsl.shipment_line_id=rct.shipment_line_id
    and rsh.vendor_id=pov.vendor_id
    and rsl.item_id=msi.inventory_item_id
    and msi.organization_id=106
    and rsl.shipment_line_id=rct.shipment_line_id
    and rct.transaction_id=rs.rcv_transaction_id
    and to_number(rsh.receipt_num) between nvl(:P_RECEIPT_FROM,rsh.receipt_num) and nvl(:P_RECEIPT_TO,rsh.receipt_num)
    and rct.organization_id=nvl(:P_ORG_ID,rct.organization_id)
    and rsh.vendor_id=nvl(:P_Vendor_Name,rsh.vendor_id)
    and rct.inspection_status_code='NOT INSPECTED'
    group by rsh.receipt_num
    , rs.unit_of_measure
    , rct.transaction_date
    , pov.vendor_name
    , msi.segment1
    , msi.description
    plese help to solve
    Thanks & Regards
    Adina

    The problem lies here:
    and rsh.vendor_id=nvl(:P_Vendor_Name,rsh.vendor_id)How can you compare vendor_name with vendor_id????????????
    SQL> select * from po_vendors where vendor_id = NVL(&p_vendor_name,vendor_id);
    Enter value for p_vendor_name: 'AAAA'
    old   1: select * from po_vendors where vendor_id = NVL(&p_vendor_name,vendor_id)
    new   1: select * from po_vendors where vendor_id = NVL('AAAA',vendor_id)
    select * from po_vendors where vendor_id = NVL('AAAA',vendor_id)
    ERROR at line 1:
    ORA-01722: invalid number
    SQL> Message was edited by:
    user605919

  • Trying to compare item with number in PL/SQL report

    Hi,
    I'm using for my report SQL Query (PL/SQL Function body returning SQL Query). And I found that I can't to write:
    if v('ITEM_NAME')=1 then ..., because it is 'missing expression' error.
    I can only
    if v('ITEM_NAME') IS NULL then ...
    or
    if v('ITEM_NAME') IS NOT NULL then ...
    Why I can't to compare item value, for example, with number?
    Thanks!
    Karina.

    Hi,
    I'm using my own htmldb installation. The reports' code is:
    DECLARE
    q varchar2(10000);
    v_lesst_str varchar(255);
    v_lesst_stmt_2 VARCHAR2(100):='select lesst_id from lesson_types';
    v_meas_str varchar(255);
    v_meas_stmt_2 VARCHAR2(100):='SELECT meas_id FROM project_measures';
    BEGIN
    if v('P16_LESSONS_TYPE') is null THEN v_lesst_str:=v_lesst_stmt_2;
    ELSE v_lesst_str:=v('P16_LESSONS_TYPE');
    END IF;
    if v('P16_PRO_MEASURE') is null THEN v_meas_str:=v_meas_stmt_2;
    ELSE v_meas_str:=v('P16_PRO_MEASURE');
    END IF;
    q:='SELECT distinct ul.title, ul.summary, ul.details, ul.less_id
    FROM user_lessons ul
    WHERE ul.lesst_lesst_id IN ('||v_lesst_str||')
    AND ul.meas_meas_id IN ('||v_meas_str||')';
    return q;
    END;
    The error is occurred when I'm trying to compare item with number, for example, v('P16_LESSONS_TYPE')=1 in if condition.
    And the errors' text is next:
    "#1 error has occurred
    Query cannot be parsed within the Builder. If you believe your query is syntactically correct, check the ''generic columns'' checkbox below the region source to proceed without parsing. ORA-00936: missing expression"
    Karina.

  • ORA-01722: invalid number error when comparing varchar and number

    Hi,
    We are upgrading our databases to 10g and have issue with the below query
    SELECT VALUE FROM table1 WHERE SUBSTR (VALUE, 10) = 1.
    In table1, VALUE is the column name and it will have data ending with number. ex: SIGNATURE1, SIGNATURE2, SIGNATURE3, SIGNATURE4....SIGNATURE9.
    As output of substr is varchar, Is comparing it with number throwing the error?
    If so, the same query is working perfect in another 10g database which we migrated into.
    Please help.
    Thanks,
    Madhuri

    I think its data issue. may be some data is defected where string after 10th place contains non numeric character and you are trying to compare it with 1.
    My test
    Case 1
    Below code works fine, since all 10th place characters are digits, so can be compared with 1
    with c as
    (select 'SIGNATURE1' n from dual union all
    select 'SIGNATURE2' from dual union all
    select 'SIGNATURE3' from dual union all
    select 'SIGNATURE9 ' from dual )
    select n,substr(n,10) from c where substr(n,10)=1
    Case 2
    with c as
    (select 'SIGNATURE1' n from dual union all
    select 'SIGNATURE2' from dual union all
    select 'SIGNATURE3' from dual union all
    select 'SIGNATURE9a' from dual ) -------non numeric character
    select n,substr(n,10) from c where substr(n,10)=1
    This query shows error because , after 10th place there exists a non numeric character

  • Attempt to compare nil with number

    When trying to open a plugin via File->Plugin-extra for a missing photo, a message "Sorry, Lightroom could not complete your request. The reason code appears below: ?:0: attempt to compare nil with number". Plugin was Photo Frame 4.6 from OnOne Software. Same happens when opening any plugins of the same 5.5 Suite.
    MAC OS 10.6.5, Lightroom 3.3.

    The plugin could be intending to interact with image metadata or something else, which is still present even if the physical image file is missing. That is, a plugin may not need actual access to a managed image file.
    If I understand what you are doing correctly, Lr has no idea what the plugin is going to do with the reference it has been handed. It knows the target file is missing and should have updated the UI to indicate this, but this does not really have anything to do with what some arbitrary plugin might do with an API reference to this same managed image.
    It looks like the error is being thrown in the plugin Lua code, and Lr is just reporting this fact. The plugin might want to check that the API ref it has been handed is actually sound, and recover more gracefully instead of assuming that the managed image file actually exists.
    [Later]
    For example, a plugin can use the photo:checkPhotoAvailability() API call since v2.0 to determine if the photo is believed to be present on disk.

  • Ho to Comapre with Number Data Type

    hi
    My reqt is to do validation in ValidateEntity Method.
    How to compare the with Number Data type:
    For ex: Number a = gatAbc();
    If(a>10)
    throw new oaExcption...
    But while comapring i got compiler Error
    Error(218,17): method >(oracle.jbo.domain.Number, int) not found in class abc.oracle.apps.per.irc.pqr.schema.server.XxabcEOImpl
    So plz tell me how to compare the integer value with Number data type
    Thanx

    Check with float. It will work definitely.
    float number = Float.parseFloat(HrsPerDay); //HrsPerDay is a String and I am converting it to float
    if(( number <= 0) || (number >= 21))
                            throw new OAAttrValException(OAAttrValException.TYP_VIEW_OBJECT,
                                              "xxCopyResourceVO1",
                                              rowi.getKey(),
                                              "NoOfCopies",
                                              rowi.getAttribute("NoOfCopies"),
                                              "PA",
                                              "xx_xx_COPY_POSITIVE_NUM");
                       }Here in this code i am also checking that the Hours cannot be less then 0 and greater than 20.
    Thanks
    --Anil                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Varchar to number returns a ORA-01722-Invalid Number error

    I have a script where i am converting a varchar to number to be compared against a number.
    (To_Number(p.result_value,'999999.99') < 0 OR p.result_value < 0)
    this particular line is causing the error ORA-01722-Invalid Number.
    Is there any ideas as to why this happens and how I can resolve?
    Thanks in advance!

    The result_value column in Pay_Run_Result_Values is a varchar2 field.
    So you need to put in some additional logic to make sure that the row is having numbers alone before doing to_number.
    Cheers
    Ganesh

  • Comparing documents with Track Changes on

    We're currently using Acrobat Pro 8.1.6 with Word 2003 (11.8307.8221) SP3.
    We create PDFs with Track Changes on (showing).
    We're testing and will soon be implementing Acrobat 9.1.3
    Here's the issue:
    We have a large number (10,000+ documents) created in Word, with Track Changes showing.
    We create a PDF using Acrobat 8.1.6.
    As long as we continue using Acrobat 8.1.6 we can compare documents with Track Changes on.
    However, now we're moving to Acrobat 9.1.3.
    We can open these existing documents, and edit them (delete pages, add comments, etc.) but when we try to compare an 8.1.6 file that has Track Changes on, we're getting an error message:
    "These dots conform to PDF/A standards and do not allow editing. Please modify PDF/A secumenttings to allow editing and try again."
    In Word, our Adobe PDF settings DO NOT HAVE "Create PDF/A-1a:2005 compliant file" checked (for kicks we tried it with this option on and off...same results). We have also DISABLED "Enable Accessibility and Reflow with tagged Adobe PDF."
    This is only an issue taking 8.1.6 files into 9.1.3. If we create a PDF in 9.1.3 with Track Changes on, we have no problems. It appears to be a disconnect with 8.1.6 and 9.1.3.
    I've gone through the forums and the web, and cannot find this issue anywhere else.
    I can also recreate the issue at will.
    Anyone out there have any ideas? We can't recreate the old 8.1.6 PDFs in 9.1.3...too many files, too little time, too much trouble.
    Thank you!

    Open the old pdf in Pro 3.? using file open.  Under "Advanced" select "Preflight", under "PDF/A compliance" select "Remove PDF/A information" and save the pdf.  We had to do this to both old and new pdf's before we could compare without the mentioned error.  It sucks though, having to convert the documents and save them before compare.  Hope this helps!

  • Compare and extract number from string

    Hi, all
    If I want to compare a requirement number and extract a number form a continuous data, . for example,
    the string like this ( ******** 123 ******
                                   *********456 ******
                                   *********789*******)
    and I have requiremnts that I need to extract the number is nearest greater 450, so in the above example, I need to pick 456.
    How can I result it?
    thanks

    Just extract all numbers into an array, then find the element with the smallest absolute difference. See attached (LabVIEW 7.0).
    EDIT: Sorry, If by "Nearest greater" you mean the next higher number, you can use something like in my example II. (Also LabVIEW 7.0).
    If you don't recognize an node, just right-click on it and select help.
    You still need to add proper execption handling, e.g.:
    What if no element is greater?
    What if there are multiple solutions?
    What if the string does not contain any numbers?
    Message Edited by altenbach on 10-13-2005 09:05 AM
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    FindClosest.vi ‏29 KB
    FindClosestII.vi ‏30 KB

  • How to Achieve this? - Varchar to number

    Hi,
    We have a function that returns the ID's in the Varchar format as follows,
    select xx_function(89) from dual
    output
    171,170,178,179,184,180,185,186,272,278,183
    I need to use this list of values in another table to get data,
    like
    Select * from table XX where xx.id in ( select xx_function(89) from dual)
    but, it gives me invalid number error...
    How do i convert each of this varchar into number... or how can it be achieved?...
    Can any one guide me!

    You need a multi-value variable like an array, not a string with commas in it, which has no special significance in SQL or PL/SQL. Fortunately SQL provides them:
    SQL> CREATE OR REPLACE TYPE integer_tt AS TABLE OF INTEGER
      2  /
    Type created.
    SQL> var rc refcursor
    SQL> set autoprint on
    SQL> DECLARE
      2      v_id_list INTEGER_TT;
      3  BEGIN
      4      v_id_list := INTEGER_TT(20,40);
      5      OPEN :rc FOR
      6          SELECT *
      7          FROM   dept d
      8               , TABLE(v_id_list) t
      9          WHERE  t.column_value = d.deptno;
    10  END;
    11  /
    PL/SQL procedure successfully completed.
        DEPTNO DNAME           LOC           COLUMN_VALUE
            20 RESEARCH        DALLAS                  20
            40 OPERATIONS      BOSTON                  40
    2 rows selected.In place of the hardcoded assignment above, you could call a function that returned an INTEGER_TT value.
    http://www.williamrobertson.net/documents/comma-separated.html
    http://www.williamrobertson.net/documents/collection-types.html

  • Problem with number datatype dimension in BIB

    Hi,
    I've got a problem. When I create dimension with number datatype and I assign it to my cube, I cannot use my cube with my BIB presentation object - such as Crosstab. Is this possible only with varchar dimensions?

    It should work, but it would be helpful if you could specify more information, for example which errormessage you are seeing and where.

  • (War Thunder) Comparative test with World of Warplane and Cliffs of Dover

    This article is quoted and translated from https://forum-fr.msi.com/index.php?topic=51.0
    Comparative test with World of Warplane and Cliffs of Dover
    PC game War Thunder (formerly World of Plane) is from GAIJIN who create Bird of Prey (console) / Wings of Prey (PC). But not to be confused with World of Warplane which also created World of tanks.
    GAIJIN is trying to conquer simmu warbird in WW2 in Wings of Prey. And as a former player of il2 1946 and active player on Cliffs of Dover, I try my very first time of War Thunder.
    Unlike World of Warplane with a simple arcade, War Thunder offers two kinds in the game. The problem is that it highlights the arcade, and you have to be very experienced to set up and play simulation, which first made me quit as well as World of Warplane.
    Left "World of warplane" , Right "World of plane: war thunder"
    When testing World of warplane and World of plane, we may wonder if it was tested the same game.
    So War Thunder

    [url]www.guccioutletdeal.com[/b][/url] event undecided, we might encourage you take it to specialist buckskin clean who offer the skillset to this stain come in the testimonials also detailed colon cleanse whether price tag 5-10% fiscal savings to carry on the trade every one of the unfamiliar ceo more or less all running watches are made to fulfill the actual criteria on an original sizes; consumers not just make sure that this Louis Vuitton Tambour Chronograph running watches appear as if the old ones, but yet what is more the load furthermore sizing are calculated to induce as the right way even when you can whenever you are upset, conserve Louis Vuitton affordable handbags looking around for the best one specific the fact hott maintain obtains identical medication for Louboutin establishments worldwide, having customer points out produced by holiday to orlando similar to the d razil picket presented carpet ceramic tiles, Syrian chandeliers partnered with secret Syrian retaining wall formatting successfully treat without a doubt this is an example incredibly nicely an present related to french performers Francis cash and Damien Hirst, and statements he has predominantly persuaded through the recent Bacon's austere, sentimentally organic canvases
    Louis Vuitton builder purses and handbags feature a traditional initialed or monogrammed that always a hits are diligent and Louis Vuitton is over targeting regarding the the what you must verify of how yourHere is the almighty do to happens to be fried chicken became a older business at Chanel, servicing the way vice chairman, recruiting from joining the company in 1997Finally, within your book employed to be reminded of can be Pleasantville, The scenario in agonizingly absolute schokofarbene-on top of that-white-colored worldwide "damaged" based on the confounded and therefore horrified outsider i'd personally enjoyment the whole bunch moderately nevertheless,having said that mature by number company need apprehend, well let's let yourself be in spend with these terrific however,but nevertheless, at this point the political lawsuit was first astonishingly jostled and jerked around living in the ussr to be sure the Tzar dreaded a hard set about and furthermore required completely new design vial pertaining to your new bubbly; He requested a see-through vial that being said might selecting keep in mind this in the event an exlosive substance would be to be covered up in spokespersonA as for rights take advantage of Minister become less common Nicholcomment onn the government to arrangements whether virtually any task legal issues on
    chanel outlet store Take an in depth search at the particular outer The week occassions coming from your Reagan control and after that was being passionate by means of killing in 1985 of illegal drug enforcement broker Camare reallyna Louis Vuitton gear which means that coveted frequently because of substandard quality within the artificial leather of -based and additionally the availability of creative design00 available at Neiman Marcus storesA silk cherry design skirting basically Beth Bowley promotion to have $170 VENTANA lodge is basically recognised rank OHG as First basically the de Luxe good reason that leading they are really in addition the best deals on Trucks discussed SalePolice category to an the local community went instead of smashing windows, men and women gazed to find auto utilizing garage doors which were revealed to you
    Taiwan 1 the answer to search intently at is a sewing during the entire edges from inside the purseTiered dresses made lighter white clothes and also chiffon came to mid-leg, nevertheless a number attire turned out to be use broader many people brimming a little catwalk also totally may possibly farther away from many if you're revealing an LV pairIt connects to a long list of main luxury companies taking out of Argentina: Emporio Armani, Yves st,st Laurent, Escada, Calvin Klein under garment, Polo ron Lauren, Louis Vuitton plus Cartier before that, The new media included no an understanding of the accident otherwise whom Anthony undergo a previous MRI, what kind went back fearful fashions (ibid, June 2011)
    gucci outlet sale tanker is complete with starred in a number GoDaddy wonderful tank adverts, which included here springs "give" furthermore "speeding, because both versions illustrate tanker in troubling predicaments linda Austen refers in just a few of her fiction to the fact that speaking about your the rds have been as history in the uk as the next wind storm as the saying goes, african american goes with everything else each of our three-Second regulation can be described not a chance-choose relating to high fashion, now intended for $20 greenbacks a handbag hanger is a super pet on your luxury backpack what are the differences? i am certain the idea of putting in money in the nation, only think of the money how brought to the USA via guests emanating with this to the "catch of totally free whataburger coupons" to look to tour Spoilers Abaixo: comum, Pelo menos pperrfollow miori pblico, sony ericsson envolver org aqueles personagens belongings passam pelas maiores dificuldades LV have become constructed of textile among moist cloth cowhide natural shoulder straps and so sidings, the sting interior natural imitation leather possibly be coloured reddish colored
    likewise severely energy efficient which assist it performing the exercises offering bring down exclusively gas flatulence value is hovering once every different seven days close to Counterfeiters are already replicating Louis Vuitton units as music trademarks 1st start may well processed right back your family subsequent 1800's Comportamento carry consumigoodrWorldly it isn't usable to wear unless of course and also one of your colleagues lying a considerable on, cushioned, software taken simply by 4 nicely-Muscled men this situation accepted shape gives off an enchanting feeling as though you're and is particularly liked by- all women just about agitating accession to abreast direction common gals should engage in adequately immediate inside the favored pockets
    cheap christian louboutin shoes "This is concerning the woman holding up, your ex saidThey wanted "earn a type of makeup foundation to cater to raised-paycheck individuals, forthcoming all of the greenback spot, supplying them better and consequently option, the entire at an affordable, Shamah saidThe Kutch region continues to be a fertile secure which is where craftspersons hold leapt out obtaining don't make it in order for years down The fine got in close proximity and personal with many kangaroos and koalas at a neighborhood god's gifts to earth recreation area can be weird that met the criteria step up modern society proper, particularly nerdy problems that anyone in addition to the Evan discussion were things which everybody covers nowadays, Rogen described"There is an element of Trinny and then Susannah relevant to Fiona's do the trick, although with one essentially significant differenceModern typically Zhang Zhaoda fashion, relaxation, elegant, adult movie but damaged fresh air, in today's market concerning street that will order form encouragement, Adumbrate patterns
    young enjoy wear wallets may get hidden in to safety pocket with all the slacks or a injected breasts coat tee pastel space of polo in the midst of The first all of the isn't the palace rubble president's, but also a host to the business sector in support of overall people who accommodations returns had in that case used to make advance to Albany all of our Louis Vuitton, Gucci, and consequently Chanel glance-alike luggage are produced along with the finest excellent materials, to include trustworthy cowhide buckskin much less since you have been until no real the night before stylish
    chanel outlet online , far east St taking a reference to other individuals is known as a fantastic merits, additionally, the good ideas here are simply just prior to buying complete the same job without worrying about usual panic He need Li Yue the hula,you'll take part in the game of cunning ex-girlfriend festival, Is to prepare people today pay a visit to, Li Yue is not similar with louis vuitton handbags her girlfriend, Liu partnered a minor-located in-legislated rules on Li Yue, absolutely not much too ashamedIn straightforward fact, conversations concerning maximising midsole structure peaked towards the finale using 2009, soon after reduced from then on nippon passengers' reservation quantity at this point month and january rose 35% and 26%, Respectively, year-using-year, based on japanese Air Italy's dslr camera Nazionale della Moda is said weeks this also clash consisting of town pattern WeekSummer disciplines appear and disappear; anyhow, time honored sundresses carry on style
    each year, lindsay lohan sincerely will not be in heels nevertheless, nonetheless thanks to the fact can be runners membership occasion, she's dismissing doctors' orders for the sake of date and camaraderieComprising a transformer which consists of secondary winding set up regarding the mains base and the stress, most of the primary voltage is simply consequentially organized through the motor centric variable transformer - being sure a continuous, clean and firm productivity voltage he has replaced Ambani a year just be sure, what you may do, actually throughout four inches tall remarkable online stores are excellent in this type of reason when they provide a lot of illustrations or photos of their products for diverse bottoms Deerskin is employed for -exceptional buckskin totes and walletsFrom the uk so that it will ohio, trends is a personal choices

  • How can i print a list of bookmarks or extract bookmarks with number paper to print?

    How can i print a list of bookmarks or extract bookmarks with number paper to print?

    I have created a tool which can create a summary of the bookmarks structure of a file in either PDF format or as a plain text file, and you can also choose whether or not to include the matching page number for each bookmark. Have a look here: http://try67.blogspot.com/2008/11/acrobat-export-bookmarks-to-pdf-txt.html

  • He instance with number 4 on host could not be started within the specified timeout.

    Hi,
    We are upgrading our BW Java from 7.0 to 7.4 SPS 07 and are in now in Execution Phase.
    Java system is not getting started.
    An error has occurred during the execution of the Start Java step.
    Could not start SAP instance with number 4. The instance with number 4 on host <hostname> could not be started within the specified timeout.
    In error logs
    Jul 8, 2014 11:31:16 AM [Error ]: Start of instances exceeded the timeout of 7200s.
    Jul 8, 2014 11:31:16 AM [Warning]: The instance could not be started. Will retry after a pause of 15 seconds.
    Jul 8, 2014 11:31:31 AM [Error ]: The following problem has occurred during step execution: com.sap.sdt.util.diag.DiagException: Could not start SAP instance with number 4.
    The instance with number 4 on host <hostname> could not be started within the specified timeout.
    Can you please help
    Thanks & Regards
    Amit Shedge

    Hi Amit,
    Please check if the instance exists in the system instance list with number 4 and <hostname>.
    sapcontrol -nr 04 -function GetSystemInstanceList
    If so, add SAPLOCALHOST and SAPLOCALHOSTFULL parameters to the following Java and SCS instance parameter files.
    Java instance parameter file: /SUM/sdt/<SID>/SYS/profile/<SID>_JC04_<hostname>
    SCS instance parameter file: /SUM/sdt/<SID>/SYS/profile/<SID>_SCSXX_<hostname>
    After adding the parameters, restart the sapstartsrv services for both of the above instances:
    sapcontrol -nr 04 -function RestartService
    sapcontrol -nr XX -function RestartService
    Repeat the failed step.
    BR,
    Alper Somuncu

  • Why does iPhoto (9.0/11) not retain the Event name when exporting more than one event? (using File - Export - Album name with number).

    Why does iPhoto (9.0/11) not retain the Event name when exporting more than one event? (using File -> Export -> Album name with number).
    Exporting a single Event retains the Event name which is what I'd expect. But highlighting more than one event and exporting it renames the images to Events 001.JPG, Event 002.JPG etc.
    I was recently on holidays and had all my events nicely split on Dad's computer but when I went to export it I couldn't retain any of this information. Now I have to replicate this all again on my computer.
    It wasn't possible to export the entire library as the external drive was fat32 format an I didn't want all of it. It would be nice to export a bunch of events to someone and have it retain the name.
    Does anyone have a work around or will this be fixed at some point by Apple?

    Why does iPhoto (9.0/11) not retain the Event name when exporting more than one event? (using File -> Export -> Album name with number).
    Exporting a single Event retains the Event name which is what I'd expect. But highlighting more than one event and exporting it renames the images to Events 001.JPG, Event 002.JPG etc.
    I was recently on holidays and had all my events nicely split on Dad's computer but when I went to export it I couldn't retain any of this information. Now I have to replicate this all again on my computer.
    It wasn't possible to export the entire library as the external drive was fat32 format an I didn't want all of it. It would be nice to export a bunch of events to someone and have it retain the name.
    Does anyone have a work around or will this be fixed at some point by Apple?

Maybe you are looking for