C$ I$ etc prefixed with "."

Hello,
When I execute my interface I get an error. The temporary files get prefixed with a ".",
for example:
drop table .I$_VERLOF_Y
which should be:
drop table I$_VERLOF_Y
What is the origin of this problem?
I use the knowledge modules as provided by oracle.
Kind regards,
Frans.

Sorry... ;o)
Can you describe your project?DBs,KMs,...
The ODI standard in KMs is to prefix all table access by schema (data schema or work schema). Standards KMs take those information from topology description. if you use a standard KM, data schema or work schema have to be precised.
In fact a way is to change mask access...but I think it's a dangerous way, because ODI could make many DBs, schemas access...No prefix transfer access mather to DBs security management...hard to maintain.
Let's describe your project...
kind regards,
MA

Similar Messages

  • DatabaseProcedure with return type prefixed with schema name

    Hi (Paco)
    I have a question about the DatabaseProcedure class. We are using Oracle proxy users for our database connections.
    Everything is accessed via a database role that are granted to the logged on user. All our database objects, tables etc are protected with this database role.
    When I want to call a database function/procedure I need to add the schema name as a prefix to the custom database object that we uses for parameters/return types.
    So far so good. I can also define a parameter prefixed with schema name via the DatabaseProcedure.registerArrayType ...
    But when I try to define a function call that uses this parameter I get an error saying "Declaration is not valid".
    The problem is located to the PROCEDURE_DEFINITION regular pattern:
    private static final Pattern PROCEDURE_DEFINITION = Pattern.compile("\\s* (FUNCTION|PROCEDURE) \\s+ ([\\w.$]+) \\s* (?:\\((.*?)\\))? \\s* (?:RETURN\\s+(\\w+))? \\s* ;? \\s*", CASE_INSENSITIVE | COMMENTS | DOTALL); The return type cannot be prefixed with the schema name.
    Any good suggestions or workarounds?!
    I actually did change the pattern runtime via reflection to make it work - but I really don't like this solution in the long run!
    /Torben
    Edited by: Zonic on 2013-05-07 10:52

    Hi Torben,
    I think I have a workaround for the issue that might work for you. If you look at the source of <font face="courier">DatabaseProcedure.registerArrayType</font> you find that it actually calls <font face="courier">DatabaseProcedure.registerCustomParamType</font>.
    public static void registerArrayType(String name)
      registerCustomParamType(name, Types.ARRAY, Array.getORADataFactory(), name);
    }As a workaround you could replace your calls to <font face="courier">DatabaseProcedure.registerArrayType</font> with calls to <font face="courier">DatabaseProcedure.registerCustomParamType</font> as follows.
    // Instead of DatabaseProcedure.registerArrayType("NAME.WITH.DOTS") call:
    DatabaseProcedure.registerCustomParamType("anyNameWithoutDots", Types.ARRAY, Array.getORADataFactory(), "NAME.WITH.DOTS"); // Don't forget to use uppercase here.
    DatabaseProcedure dp = DatabaseProcedure.define("procedure my.procedure(param1 in out anyNameWithoutDots)");
    DatabaseProcedure.ParamType type = dp.getParamDef(0).getType();
    System.out.println(type.getName() + " is " + type.getTypeName()); // ANYNAMEWITHOUTDOTS is NAME.WITH.DOTSThis way you don't have to use the "illegal" name in the DatabaseProcedure definition.
    Regards,
    Paco van der Linden

  • My wife and I share an iCloud account for photo library and iCloud drive mainly for our family photo management, but we use different accounts for iMessage/facetime/calendar/etc. With Yosemite, I can't use continuity/handoff without dumping the photo

    my wife and I share an iCloud account for photo library and iCloud drive mainly for our family photo management, but we use different accounts for iMessage/facetime/calendar/etc. With Yosemite, I can't use continuity/handoff without dumping the primary photo iCloud account and thus our shared photo system. We are running yosemite OS X 10.10 and iOS 8.0.2... Is there any way to do this?

    my wife and I share an iCloud account for photo library and iCloud drive mainly for our family photo management, but we use different accounts for iMessage/facetime/calendar/etc. With Yosemite, I can't use continuity/handoff without dumping the primary photo iCloud account and thus our shared photo system. We are running yosemite OS X 10.10 and iOS 8.0.2... Is there any way to do this?

  • Table are not prefixed with Schema in  SQL request - Unable to get Data

    I began this new thread because I closed the [previous one|Unable to get data (DSN connection); a little bit early, I believed it was OK but no the problem still here.
    First my architecture :
    Oracle 9g
    +500 Reports made under CR developper 8.5 or 9.0
    Report opened in VB .net application, framework 2.0 using CR runtime 8.5 and 9.0
    We want to upgrade CR version to 2008, so modification of reports will be done with CR 2008 Developper, and we want to
    use only CR 2008 runtime.
    The problem :
    Everything works fine in CR Developer, but the same report with the same parameters failed when called inside .net.
    The error is "Unable to get data", the database connection is OK but the queries mades from inside the report are wrong :
    The tables/views in the from statement are not prefixed with the Schema, so Oracle don't find them.
    Example (SQL monitoring done with TOAD)
    Execution of postes.rpt report directly in CR :
    Timestamp: 10:30:03.881
    Successful logon attempt (session tag: 0x6464CB8)
    username: 'APPLI_HUET'; database: 'DEV'
    SELECT ...
    FROM  "COMMUN"."ETAB" "ETAB" INNER JOIN "GESTION_DES_TEMPS"."POSTES" "POSTES"
    ON "ETAB"."N_ETAB"="POSTES"."N_ETAB"
    WHERE  "POSTES"."N_ETAB"=2 ORDER BY "POSTES"."N_POSTE"
    Timestamp: 10:50:29.178
    Logoff (session tag: 0x6464CB8).
    Same report, same authentication but throught .net program :
    Timestamp: 11:01:24.569
    Successful logon attempt (session tag: 0xA93FC38)
    username: 'APPLI_HUET'; database: 'DEV'
    SELECT ...
    FROM   "ETAB" "ETAB" INNER JOIN "POSTES" "POSTES"
    ON "ETAB"."N_ETAB"="POSTES"."N_ETAB" WHERE  "POSTES"."N_ETAB"=2 ORDER
    BY "POSTES"."N_POSTE"
    Runtime error occurred: 942 (ORA-00942: Table ou vue inexistante)
    The .net code :
    Dim _report As New ReportDocument()
    _report.Load("report.rpt", OpenReportMethod.OpenReportByDefault)
    Dim myConnectionInfo As ConnectionInfo = New ConnectionInfo()
    myConnectionInfo.ServerName = "DSN_file"
    myConnectionInfo.UserID = p_Userid
    myConnectionInfo.Password = p_Password
    ' to see code in this method se my original post
    SetDBLogonForReport(myConnectionInfo, _report)
    SetDBLogonForSubreports(myConnectionInfo, _report)
    Dim frmViewer As New CrystalReportViewer
    frmViewer.CrystalReportViewer1.ReportSource = _report
    frmViewer.Show()
    Any ideas ?

    Thanks for the and sorry but I don't understand.
    I've made a research of Location on this forum the more intersting thread I've found is rpt-files do not function anymore after deploying to a different database, but I still don't understand.
    I take a look at all code sample and I can't found anything.
    You say that .Location need to be set, indeed Location property of CrystalDecisions.CrystalReports.Engine.Table object only contains table name.
    I tried to overrides this value by the fully qualified table name (ie Schema.Table, for example GESTION_DES_TEMPS.POSTES), and it work  BUT it wouldn't be the solution, my code is designed to be generic, I can't have a database to know wich schema add before differents table name.
    Why when we execute the report directly in CR 2008 developper we don't have to redefine the table location ?
    Another test :
    I've made a new report directly in CR 2008 with a DSN, launch it in .net with the same DSN (server) : OK
    Then I launch it in .net with another DSN, it work also.
    Why report done with Crystal 8.5 or 9.0 have this problem ?
    I'me gonna be mad....
    Edited by: Yoann DAVID on Jan 8, 2010 3:32 PM

  • Bug or feature? Button images prefixed with /i/

    Dear all -
    Several people have noticed that button images get prefixed with /i/, so that if you use #IMAGE_PREFIX#image.gif then the source reads /i//i/image.gif (and of course the image isn't displayed). Admittedly I can't prove that right now because, oddly, IE refuses to show source at all and FF always shows the P101 source when I use #IMAGE_PREFIX#.
    We were hoping to use a substitution string for the path so that we can pick up a file from the filesystem, but all we get is /i/&MY_IMAGES.image.gif. The substitution string works fine in the templates and elsewhere.
    #WORKSPACE_IMAGES# still works.
    However, my question is: is this intended behaviour or a bug?
    Many thanks,
    John.

    Hi Carl -
    Button Image Attributes:
    Style = Image
    Image = <our substitution string>image.gif
    (well, that's what we'd like anyway - currently we have:
    Image = #WORKSPACE_IMAGES#image.gif)
    Many thanks.
    And, incidentally, many thanks for fixing that DHTML sublist bug in 2.2 - much appreciated.
    Regards,
    John.

  • Remove namespace prefix with the XMLAnonymizerBean is possible at SOAP Adap

    Hello,
    I am wondering is it possible Remove namespace prefix with the XMLAnonymizerBean at SOAP Receiver Adaptor?
    Thanks

    Hi Rajiv,
    Pl. go through this blog:
    /people/stefan.grube/blog/2007/02/02/remove-namespace-prefix-or-change-xml-encoding-with-the-xmlanonymizerbean
    Also if you want to use this at sender side, SOAP adapter will not support. Please check stefans reply in this thread:
    XMLAnonymizerBean doesnt work
    Regards,
    ---Satish

  • BOXIR2: Object name not prefixed with class

    While creating Webintelligence report from a universe having more than one Dimension object with same name in different classes, the Object name is not prefixed with Class Name.
    1. The issue occurs after migration to XIR2 Webintelligence.
    2. 6.5 version of WebIntelligence and XI Desktop intelligence is prefixing class name in above scenario.
    REPRODUCTION STEPS:
    Create a universe with 2 classes (C1 & C2), Create a dimension object D1, D2 under class C1 and D2 & D3 under class C2. Export the universe.
    Create a webi report from the published universe, In Java Query panel , Drag all 4 Dimension Objects to Query Filter Section.
    Perform the above in Webintelligence of BO 6.5 & BO XI. Note that in BOXI Class name is not prefixed.
    Please let me know weather its change in the product or bug.

    Yes this is a bug...

  • Pound (£) sign prefixed with Â

    Hi,
    I've setup a form which processes/emails the data using PHP.
    The form gathers data including price (in GBP). When the form
    results come in by email, the £ sign is prefixed with a
    Â. Is there a way I can change the php script to remove this
    character?
    The form calculates the price using javascript so the 'total'
    field uses:
    document.getElementById('total1').value="\u00A3"+total1.toFixed(2);
    I've got this in the PHP doc: $total1 = $_POST['total1'];
    I'm quite new to this so any help would be appreciated.
    Thanks

    drennan_uk wrote:
    > I've setup a form which processes/emails the data using
    PHP. The form gathers
    > data including price (in GBP). When the form results
    come in by email, the ?
    > sign is prefixed with a ?. Is there a way I can change
    the php script to remove
    > this character?
    The question mark is caused by mixing different encoding
    (Latin-1 and
    UTF-8).
    > The form calculates the price using javascript so the
    'total' field uses:
    >
    >
    document.getElementById('total1').value="\u00A3"+total1.toFixed(2);
    Change this to:
    document.getElementById('total1').value=total1.toFixed(2);
    > I've got this in the PHP doc: $total1 =
    $_POST['total1'];
    Change this to:
    $total1 = '&pound;' . $_POST['total1'];
    I haven't tested it, but I think it should solve your
    problem.
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • If user opens a query he shd get vendor numbers which are prefixed with SS

    Dear All,
    When user opens a query  and say (f4) for vendor, only list of vendors which are prefixed with source sustem id shd appear  and old vendor numbers with out prefix shd not appear
    in master data we have old data and new data (prefix with source system id)
    we cannot do any changes to master data in BI bcoz they are being used by other applications.
    Please help
    Thanks in advance
    Nitya

    Hi
    thanks for your inputs
    but as per the settings values are read from master data (vendor )
    but in (f4) in query is it possible to show only vendors with prefix and exclude vendors without prefix
    Also need to change maximum no of hits is 200 by default and it has to be changed to 3000 by default
    please help
    thanks in advace

  • Creative Suite Design standard version is no longer loading plug-ins, fonts, etc., Crashing with every use..How do I reload my software ? I have the Design CS4 package.

    Creative Suite Design standard version is no longer loading plug-ins, fonts, etc., Crashing with every use..How do I reload my software ? I have the Design CS4 package.

    Thank you Jeff. Great questions.
    I was opening Illustrator in CS4 design standard. Odd too, because the error comes up with it showing missing plugins from Photoshop. I opened Photoshop first, then Illustrator to see if it changed anything. Yes, One of the two error messages for a plugin was gone.  
    To remove apps I went to the Adobe website to redownload my standard CS4 and chose "uninstall".. So I did. Restarts x 2 . Then Reopening illustrator...same thing again. Restarted, then went to Disky Utlity and cleaned up something off of it as per a internet suggestion...Sorry, it's been a long day alreay. Not me removing anything, just allowing it to do that with repairing.
    The version of Mac OS is YOSEMITE 10.10.2 .
    I recently updated!!! oooh nooooo! (every watch Mr. Bill on SNL?) so if the updated OS is the culprit, do I have to go back to older version for my apps to work?   I never realized how very much I use Illustrator. I know there are extensions I could go through one at a time....seriously I am overwhelmed with some life events that make this computer dilema  almost too much of a challenge for me at this time..I am truly grateful for your help. Thank you Jeff.

  • Cost center creation prefix with 0000000(zeros)

    Hi All
    Is there any way to creat cost center prefix with 0000(Zeros).I have created cost center called 0000012345 and when i saved this data 0000 were discapperd.Is there any way to create cost center with prefix Zeros(0000000)

    Hi Praneeth
    Thanks for your reply, i agree with you, but once i have done with above step which is explained from your screen, and i pressed enter,by defeault 0000 got disappered.Please see below screens
    Screen 1:
    Scree 2

  • Concatenation of constant charecter as prefix with charecteristics IO value

    Hi Experts,
    I have a infocube with huge data,in which material number is one of the characteristic infoobject namely 'zmatnr'  holds values like 123456789.
    I want to display the material number values in a format like MN123456789 where MN(constant charecter) used as prefix with the material number.
    We cannot do anything at update rule as the cube is being used in other applicaton areas.One option left with us to do the change at query level(Bex designer).
    Kindy give us your valuable inputs on this.
    Proper solution provider will be awarded points.
    Regards........

    Hi,
    One option is generate a export datasource out of the current cube and have another cube on top of it for reporting. You can update its Matnumber per ur req. Since the data is very huge, i dont think this a preferred solution.
    Other thing you can do is, add a characteristic to the exisiting cube and dont update it (set it to no update in the update rules). You can use this new Charateristic added in the Virtual char/KF exit to populate per ur req. This solution would need you to recollect the update rules and cube.
    I am not very sure, but you can also try using a formula variable with customer exit. This might be helpful.
    Hope this helps.
    Kalyan

  • ITF code prefix with ZERO

    Hi All,
    Cani use "0" as a prefix for an ITF code? I tried transaction W4ES like nw said, but i can't see what should i configure to allow leading "0" as a prefix for ITF codes.
    When ITF code is input with a 14 digit code input with zero, it ignores zero prefix to it and stores it as a 13 digit EAN number.
    Regards,
    Deepak

    ITF code cannot be prefixed with zero. You need to have a character pre-fixed to distinguish between units of measure or packagings.

  • I have to re-install itunes, how can I get all my songs, apps etc back, with no access to my old itunes??

    Itines was deleted from my computer and I need to re-install it but dont want to lose all my songs, apps etc. How can I get all this back onto itunes with no access to my old itunes??

    Itunes was deleted?  Or your itunes library was deleted?
    If it was just itunes, then your music should still be there.  Just reinstall itunes.
    Otherwise just use your backup copy of your comuter to put everything back.

  • Open google maps, youtube, video etc links with app instead of browser?

    According to the search maps and youtube won't ask if you want to use an app to open the links because google doesn't see firefox as a mobile browser (which is weird given that it will always load the mobile youtube site...)
    But the same thing happens when I want to watch streams from other websites. Instead of asking me if I want to open media files using an app it will automatically use the built in player. But I want to open media with a different player (mx player) as I don't really like the firefox player.
    How can I have firefox ask me to pick an app/browser to open certain things like google map links, youtube links, media file link (mp4 etc)?

    My biggest bugbear with the Play Store opening in the browser is that it's slower than the native app, so waiting for the page to load before given the option to launch the app isn't a lot of help. Would it be possible to have an option to automatically load such pages in the associated app? Perhaps when using the address bar icon it could ask "Do you want to do this automatically in future? Yes/No/No and don't ask again".
    Jon

Maybe you are looking for

  • Batch Rename based on Content, is this possible????

    Hello all, I have a large amount of PDF files that I need to rename. The PDF files are contracts relating to individual companies and I need to place the company in the title. right now they are saved with numbers at the end: Contract_1, Contract_2,

  • Apple tv app ?

    I know it says you can watch via your pc or mac but mac apps and appletv apps are different is bt going to work with the apple tv ? I do not want yet another box under my tv just for a couple of channels the youveiw box is useless in my area as signa

  • I want to change my payment information

    I need to change my payment information

  • Queues, not processed automatically they are status Ready

    Hi Experts , Queues in outbound(smq2), not processed automatically they are status Ready from long time, RFC is working fine i tried to process maually one by one ,but they are many. how can i execute this , need your inputs. thanks in advance vamsi

  • Pages will not save unless iWork purchased?

    I purchased Pages and Keynote back in January (its now June) yet, I did not need Numbers so I did not just simply purchase iWork. I randomly updated my computer (none of the updates had anything to do with Pages/Keynote), and then all of the sudden P