Retrieving information from Source-target of the OWB repository

Hi, I am trying to find a SQL script that I can run against the OWB repository in order to give me a 2 column (Source / target) output for all mappings in a Module of Oracle. My goal is to help developers report, who are most familiar with the system tables and having a bit of trouble understanding how I standardized data.
Someone at - it something like that I can use?

(OWB 10.2)

Thank you!

Something like this:

Select
separate "TARGET."
COMP.map_name,
COMP.data_entity_name,
COMP.operator_type
Of
model of the all_iv_xform_map_components,
all_iv_xform_map_parameters param
where
Lower (operator_type)
in ('table', 'view', 'dimension', 'cube')
and param.map_component_id = comp.map_component_id
and param.source_parameter_id is not null
UNION
Select
separate "SOURCE."
T1. C1,
T1. C2,
T1. C3
Of
(select
COMP.map_name c1,
COMP.data_entity_name c2,
C3 COMP.operator_type,
Max (param.source_parameter_id) c4
Of
model of the all_iv_xform_map_components,
all_iv_xform_map_parameters param
where
Lower (operator_type) in
('table', 'view', 'dimension', "cube")
and param.map_component_id = comp.map_component_id
Group
COMP.map_name, comp.data_entity_name, comp.operator_type) t1
where t1.c4 is null
2.1 order

Tags: Business Intelligence

Similar Questions

  • If my phone was stolen while it was unlocked, would get a remote delete all information from my phone so the assailant was actively digging through my phone?

    If my phone was stolen while it was unlocked, would get a remote delete all information from my phone so the assailant was actively digging through my phone? I'm afraid that the author would look through all my personal stuff that I have on it.

    You can clear your phone remotely while it is unlocked.  Everything will be removed.

  • Processflow executing after changing the OWB repository owner PW

    Hello world

    last week, we changed the pw of the owner of the owb repository.
    Now, we wanted to run a process flow. This process flow was never a problem, now change the password for the repository of the flow of the process owner failed with
    ORA-01017: name of user and password invalid. connection refused

    Can Anyboby you tell me why this happens? We changed nothing other than the password of the repository owner.

    Any help would be appreciated.

    Greetings

    If error ORA-01017 occurred during the execution of MAP_xyz_01 mapping.

    I guess that in your environment has also changed password for user (owner of mapping MAP_xyz_01) target.
    Try to sign up Datacenter control corresponding to this target user location (right click here and choose registry, enter the new password, click on the OK button)

    Kind regards
    Oleg

  • How to retrieve information from the account of a user of Windows Messaging live

    Hello

    For Windows live mail under Windows8 can retrieve us account information, emails and contacts from a backup of the user if it has not exported before information.

    Try asking in the Forum Windows Live Mail:
    http://answers.Microsoft.com/en-us/windowslive/Forum/LIVEmail?tab=threads

  • Media Player play error "unable to retrieve information from server, UPnP media."

    I have a Denon AVR 1912 receiver and a PC running Windows 7 w/WMP12.  When I try to use the ' play to ' I can select the receiver but get an error "Unable to retrieve media information from media server."

    I tried to re - install WMP 12 and tried to disable my firewall without success.  AirPlay works very well, but I prefer WMP I-Tunes.

    The content is on the same computer.  Streaming is enabled and that the receiver is "allowed".

    I don't know if it's fixed or not... but I found the solution last night after I spent the most frustrating 5 hours of my life! It is probably a windows problem. I recently replaced my HP laptop with a Dell Vostro 3450 and all of a sudden, I found that this "Play To" feature did not work with my Samsung LED TV UA55C8000. To confirm that this was not a firewall or format related issue I even used the Samsung PC Share software on my PC to act as a DLNA server... With PC share the WMP12 server found no problem 'Contacting the media server' as... but with its own library, it's just stuck there, with a possible failure message. [Point to note is that, even when he could not contact the media server, I could control the TV volume using the same window!]

    This is what did the trick for me:

    1 closed WMP12.

    2. go into [Control Panel-> system] Services and safety-> administration-> Services tools

    3. Locate the service named "Windows Media Player Network Sharing Service"

    4. stop the Service manually.

    5 locate the "UpnP device host" service Stop the service and restart it.

    6. start 'Windows Media Player Network Sharing Service' now.

    7. close the control panel and all the windows. Open Windows Media Player... make a right click on a playlist and see if the Play option lists the TV. Try to play now... He started playing for me at this point!

  • trying to export information from my phone to the pc, but it's prob givin

    OK nono help for export of blackberr info to pc

    Hello

    ·         What exactly happens when you try to export the phone info?

    ·         You get the error message?

    ·         You use any application when you export information from your phone?

    ·         What info are you trying to transfer from the phone to the computer?

    ·         Have you installed the BlackBerry Desktop Software?

    If you are trying to transfer pictures from phone to computer, you can check the link below:

    Import photos from your BlackBerry to your PC

    http://my.BlackBerry.com/tips/8172

    Also I suggest you to contact the Blackberry Support for assistance.

    http://us.BlackBerry.com/support/

  • I am trying to export information from one site to the other; i.e. doba products to sell on ebay. I get an error telling me to "set associations"?

    I'm trying to export information from one site to another, i.e. the products to sell from doba to ebay.  I get an error telling me to "set associations"?

    Looks like a command prompt to set the default program for opening a certain type of file.

    This can be done in two contexts > Apps or right click on the Start button to open the Control Panel, choose the command display by: icons, then default programs.

  • Retrieving information from a table of embedded hash

    I know it should be more simple, but I don't know the syntax to retrieve specific keys and entries of the subkey.  My hope is to display the information in to a table or any other required format hash tables.

    Here's the current code snippet.

    $Disk = @{}
    
    ForEach ($vSCSIController in ($vmView.Config.Hardware.Device | Where {$_.DeviceInfo.Label -match "SCSI Controller"})){
        #'Unit Number: ' + $vSCSIController | %{$_.UnitNumber} 
        ForEach ($vDiskDevice  in ($vmView.Config.Hardware.Device | Where {$_.ControllerKey -eq $vSCSIController.Key}))
            {
            $Label = $vDiskDevice.DeviceInfo | %{$_.Label}
            [string]$BusNum = $vSCSIController | %{$_.BusNumber}
            [string]$DiskDev = $vDiskDevice | %{$_.UnitNumber}
            [string]$SCSIid = $BusNum + ":" + $DiskDev
            $HD = Get-VM $VM | get-harddisk | where {$_.Name -eq $Label}
            $ID = @{    
                "Label" = $Label
                "CapGB" = [System.Math]::Round($HD.CapacityKB / 1MB, 2)
                "Filename" = $HD.Filename
                "StorageFormat" = $HD.StorageFormat
                "ScsiID" = $SCSIID
                }
            $Disk.Add([string]($HD.Name),$ID)
            }
        }
    #
    #"Disk Name" + "`t" + "SCSI Bus" + "`t" + "Capacity in GB" + "`t" + "Filename" + "`t" + "StorageFormat"
    #'==============================================================================================================='
    
    
    
    $Disk.keys
    

    The $Disk.Keys is where I need help.  How I would display all values if the label is "Hard Disk 10"? and in the order listed near the end of the excerpt?

    Try something like this

    $hd = $disk.GetEnumerator() | where {$_.Value.Label -eq "Hard disk 10"} | Select -ExpandProperty Value
    

    Via $hd you can now access the properties.

    $hd. Label / $hd. CapGB /...

  • With the help of the socket object to retrieve data from web application without the html files

    I tried to use the socket object to retrieve data from a web application (I just control script version vs version online). So all I want to do is access http://hyle.io/version that returns me the current version of the application (such as a simple string) in order to compare it in my script and then notifies the user accordingly. I have just a few problems using the socket object. I used this code from the Adobe Javascript Tools Guide:


    reply = "";
    conn = new Socket;
    // access Adobe’s home page
    if (conn.open ("www.adobe.com:80")) {
    // send a HTTP GET request
    conn.write ("GET /index.html HTTP/1.0\n\n");
    // and read the server’s reply
    reply = conn.read(999999);
    conn.close();
    }
    

    ... that I then adapted as:

    reply = "";
    conn = new Socket;
    if (conn.open ("hyle.io:80")) {
      conn.write ("GET /version HTTP/1.0\n\n");
      reply = conn.read(999999); 
      conn.close();
    }
    

    And here is what I get:

    HTTP/1.1 400 Bad Request
    Content-Length: 225
    Content-Type: text/html
    Server: Pagodabox-Routing-Mesh
    
    

    Bad Request

    Your browser sent a request that this server could not understand.

    Résultat : true

    I don't know a lot about HTTP requests, but I wondered if it was related to the fact that I am not pointing to a specific HTML file and the type of request was wrong or if I should rather check if there is something wrong with my host?

    The site/app is PHP and is hosted on PagodaBox if it helps.

    Thanks in advance!

    Hi Sebastien Lavoie,

    It should work

    var HTTPFile = function (url, port) {}

    If (arguments.length == 1) {}

    URL = arguments [0];

    port = 80;

    };

    This.url = url;

    This.port = port;

    this.httpPrefix = this.url.match(/http:\/\//);

    This.Domain = this.httpPrefix is nothing? This.URL.Split("/") [0] + ":" + this.port: this .url .split ("/") [2] +":" + this.port;

    This.Call = ' GET ' + (this.httpPrefix == null? ' "). " http://" (+ this.url: this.url) + "HTTP/1.0\r\nHost: ' + (this.httpPrefix is nothing? "This.URL.Split("/ ") [0]: this .url .split (" / ") [2]) +" \r\nConnection: close\r\n\r\n ";

    This.Reply = new String();

    This.Conn = new Socket();

    This.Conn.Encoding = "binary";

    HTTPFile.prototype.getFile = {function (f)}

    var typeMatch = this.url.match(/(\.) (\w{3,4}\b)/g);

    If (this.conn.open (this.domain, "binary")) {}

    This.Conn.Write (this.) Call);

    This.Reply = this.conn.read (9999999999);

    This.Conn.Close ();

    } else {}

    This.Reply = "";

    }

    (Return this.reply.substr(this.reply.indexOf("\r\n\r\n")+4);

    };

    }

    Hyle var = new HTTPFile ("http://hyle.io/version");

    Alert (hyle. GetFile());

    And by the way, I like the idea of 'http://hyle.io'. Can you give me your email address, I want to learn more about this Web site.

    Please send me an email to [email protected]

  • Information from two databases in the same query

    How can I get information from the "of" in addition to a db in a cfquery? for example, say in a db I have their name and in another PB I have their last name..., for example are my DB something like this: name FirstDB db and db I memberNumber, the first name and the name of the comic is SecondDB and in this PB I memberNumber, lastName.
    How can I run a query to collect the name of FirstDB and the name of SecondDB by the memberNumber?

    FirstDB:
    memberNumber 1
    First name Tom
    memberNumber 2
    firstName Patty

    SecondDB:
    memberNumber 1
    lastName Smith
    memberNumber 2
    lastName Dell

    then when I exit the query I could get Tom Smith and Patty Dell

    Thanks in advance for the help...


    SELECT count (*) 2 albums like County, name, city<---city is="" in="" the="" town="">
    Cities of people
    WHERE type = 1
    GROUP BY name

    There are several syntax errors in this example, but I assume that
    It is any example of code written in the message not copied no actual
    running the code. Knowing which becomes a SQL error help know
    where the problem may lie in the actual code.

    You may need to fully qualify your fields in the select clause for that
    the DBMS knows which database table, you want the field to come.

    SELECT page 2 of count (*) County, people.name, towns.city
    People, cities
    WHERE type = 1
    GROUP BY name, city

    OR with aliases:

    SELECT top 2 count (*) AS COUNT, p.name, t.city
    PEOPLE p, t of cities
    WHERE type = 1
    GROUP BY name, city

    You add all the new fields to your GROUP BY clause, correct? He
    It requires that all fields that are not used in aggregate function [such as
    Count()] be included in the GROUP BY clause.

  • How to retrieve information from the appellant in BPEL

    I have a SOA - BPEL process that is consumed by the different systems. Purposes of registration, I need to retrieve the host name of the appellant for each request.

    Consumers are not cross any additional headers or special settings of WS-addressing.

    Since the BPEL process knows how to call back in an asynchronous call, I believe firmly that the caller information should be stored somewhere on the server.

    So please let me know if anyone has any idea on this.

    Thank you

    Helene.

    Hi Helen,

    you could try this - get the value of the header property transport.http.remoteAddress and assign it to a variable. To do this, in your activity. More details on how get/set header values can be found here - https://docs.oracle.com/middleware/1213/soasuite/develop-soa/GUID-33A38C1A-38A6-473B-9FEA-D3164AD7A118.htm#SOASE20757. Double click on your activity and go to the 'Properties' tab add the transport.http.remoteAddress and assign it to the existing variable.

    HTH,

    A.

  • Need to retrieve information from the user who blocked the account

    Hi all

    As we had forced her, we changed the password of our schema.

    The same pattern has been locked up in the next day morning.

    We have required to generate the information to senior management who has blocked the account by giving the wrong password.

    Kindly guide / help me to retrieve the USER information.

    Thanks in advance.
    Orahar

    Hello

    SQL> show parameter audit
    ORA-00942: table or view does not exist
    

    you're trying the foregoing to the privileged user not DBA.

    Try your user SYS or SYSTEM.

    Kind regards
    Delphine K

  • Retrieving information from a CD may be damaged

    I have a CD with a WMV file that I've not used for years I thought I had lost.  I just found it (it is not in the best conditions) and my computer does not read it.  The drive sounds like it is reading and then nothing happens.  I understand that this is probably because the drive is old and not been greatly neat but is it possible to get me the information about it?  I also tried to go into 'My computer' and try to open it manually but it tells me that there is no disc and promplty opens the drive for me to insert a disk.

    Hello

    Is the CD/DVD drive read other CD?

    I suggest you to try the CD on another computer and check if it helps.

    If you encounter a problem with only this old disc, then the disc may be damaged and there is no way to retrieve the data from disk. You will need to get a third party using your favorite search engine software.

    Warning: using third-party software, including hardware drivers can cause serious problems that may prevent your computer from starting properly. Microsoft cannot guarantee that problems resulting from the use of third-party software can be solved. Software using third party is at your own risk.

    Hope the information is useful.

  • Get information from my computer about the details of the graphics card and so on, in order to install games.

    From the control panel > Performance and tools > can't view and print details of the basis of the normal English Windows experience index. See below. This is what is displayed in Notepad.  The reason why I'm doing this is because I was not able to install Games 2/2, I bought. The guy at EB Games says print a list of information on the computer so that I could buy the appropriate game. I would like to have a game on my computer. My friend recommended to Doom 3. Is there something that exists and why I receive this report not readable?


    Check this similar thread:

    Printing performance information

    In the end, make sure that HKEY_CLASSES_ROOT\htafile\Shell\Open\Command is set to one of the following values, depending on the architecture of the operating system:

    x 64:
    c:\windows\syswow64\mshta.exe "%1" % *.

    x 86:
    c:\windows\system32\mshta.exe "%1" % *.

  • Which service API should I use to retrieve data from Eloqua 'Integration of the internal queue'?

    In my Eloqua Sandbox environment, I managed to create several "external Test calls complete" that appear on the tab 'Reports of the integration of queue internally'. Can someone tell me what Eloqua API or services are required to recover the data of this "Internal queue" Eloqua? I guess that's the way to connect the dots of data updates occurring in Eloqua to an external system. My ultimate goal is personalized with a non-native CRM integration.

    Thank you

    Heath

    Hi Heath,

    The post following (How to recover data from activity through the API) describes how to extract data from the queue inside.

    Hope this helps and please let me know if you need more information.

    Thank you

    Fred

Maybe you are looking for

  • Sony DCR-SX85 memory

    This camcorder has 16 GB internal memory and a slot for an additional memory card. By inserting a card, the total memory increase for shooting video?

  • 152TX HP - AC: I need all the drivers for my laptop hp 8.1 windows

    Hi guys,. Can some1 please help me get all the drivers for my system. I installed windows 8.1 in my laptop. Thank you! Kind regards Prashant

  • BB10 listen swype_down

    Hello! I had a playbook application, where I listened to the SWYPE_DOWN event, to call the menu. I see on my alpha dev B, that there is always a menu appearing on swype_down, e.g. in the calendar. How can I listen to it? The Playbook, I used QNXAppli

  • How to get a Windows 7 Cd/Image

    I have a computer with windows 7 installed above and I have a serial number on the bottom of the laptop but did not come with a cd or anything. Is there anywhere to get the cd from the microsoft Web site?

  • HDMI has stopped working after the upgrade to windows 8 Pro

    Hi all After upgrading my laptop to Windows 7 Ultimate for Windows 8 Pro (upgrade of the place) my HDMI output not working anymore. I use a nvidia Geforce 8200 M G graphics card, went to their website and downloaded the drivers of windows 8, but this