Simple BI tool

I am trying to create a tool to create reports from my database, a simple business intelligence tool, but don't know how to design the tables to store the reports. Does anyone have any ideas on how to determine table relations and such just to point me in the right direction :-)

SQL Developer comes with Reports section containing some predefined reports the user can modify and add his own reports to. I never took time to explore it, but you might take a look at to see how things are handled there.
SQL Developer has it's own forum too {forum:id=260}
Regards
Etbin
Edited by: Etbin on 9.2.2013 17:47
forum info added

Similar Messages

  • Mixing Color with a simple Brush Tool

    Ok, I know this i probably a very rookie mistake, and the solution might be around the corner, but I really can get it.
    I would like to use two colors to create a new one (like using a real color palette, on a real painting), using only the Brush tool, finding a middle tone between them. I've seen this simple procedure on Youtube, but I can't replicate it.
    So I have two colors:
    I sample from the bright-blu to lighten up the dark-blu and starting to find the first shade.
    But as you can see below, it does not merge the two colors, creating a gradation, it only paint the bright-blu OVER the dark-one.
    The same happens in reverse (if I paint with the dark-blu over the bright-one).
    No matter how many time I paint over, in shorts I can only replace one color with the other one.
    As shown on the video, I use a Hard Round Brush (not the Mixer Brush Tool), with 100% opacity and 50% flow.
    Any idea?
    Hanks in advance,
    Franz

    Thank you, Sudarshan.
    Actually the first video explain what I'm trying to achive, but not how to do it.
    As you can see, he doesn't use the Mixer Brush (widely covered in the second video), he uses a simple Brush tool. Painting with some yellow over red, he blends the two color and comes out with an orange. As simple as that.
    In my case, when I paint with the bright-blue over the dark-blu, (as in the picture), bright-blu totally cover the dark-blu. Doesn't merge with it.
    So you can get a middle tone of blu (as he got the orange)
    So, I'm thinking I've might accidentaly selected (or de-selected) 'something' in one of the billions menus of Photoshop.

  • HT2506 How do I drag an image around in the view, once it's magnified larger than the viewing area? I can imagine a simple "hand" tool like in Adobe PDF Reader doing this, but it's oddly missing in this application, quite a shame.

    How do I drag an image around in the view, once it's magnified larger than the viewing area? I can imagine a simple "hand" tool like in Adobe PDF Reader doing this, but it's oddly missing in this application, quite a shame.

    @Csound1 how is my mac relevant? I'm talking about software not hardware.
    @Kurt Lang sorry, I composed the message when looking at "Preview" application help on this site, the fact that it missed the context here, is another issue I have with Apple's "famous" UI/UX design...
    So for the record, I'm talking about the "Preview" app that comes bundles with Max OSX.

  • Simple Crop tool question... how do I save the crop section?

    Hi,
    I have a very simple crop tool question. I'm a photoshop girl usually... so Illustrator is new to me. When I select the crop section I want... how do I save it?... if I select another tool in the tool panel, the crop section disappears and I can't get it back when I re-select Crop tool. If I select Save as... it saves the whole document...and not just my crop section.
    Like I said, simple question...but I just don't know the secret to the Illustrator crop tool.
    Thanks!
    Yzza

    Either press the Tab key or F key.

  • Looking for a simple discussion tool for my portal

    i don't want to use the collaboration server since it is added way to many extra nobs and configuration. Also Collaboration Server 4.0 will expose my list of users to everyone which i do not want to happen.
    So i am looking for a portlet or set of portlet that will allow me to host discussions on my portal. I want something simple for the users to use and something with good security.
    Has anyone implemeneted such a portlet?

    Hi Michael,
    If your issues with collaboration or simply issues with the collaboration UI, I'd encourage you to look at using the new EDK PRC Collaboration APIs. You can use these APIs along with Collaboration 4.0.1 to make you own portlets leveraging the Collab Service. As a result you can built your own portlets powered by the collaboration discussion enginer. Some developer docs here:
    [url[/url]http://www.plumtree.com/edoc/index.asp?pagename=UsefulToolsObjects/PRC/Collab/DevDoc_PRC_collab_intro.htm

  • Making a simple drawing tool, help appreciated

    hi, i'm trying to make a simple drawing program, but the graphics line are quite dotted if i'm not taking it really slow. FPS is set at 120 (max), but this doesn't seem to help me. I have a button to erase, and one to draw, all I need is template for one of them. down below are the code necessary for executing the operation:
    stage.addEventListener(MouseEvent.MOUSE_MOVE, moveLine);
    drawButton.addEventListener(MouseEvent.CLICK, clickPencil);
    graphics.lineStyle(2, 0x000000, 1);//linecolor = black
    function moveLine(evt:MouseEvent) {
        if (mouseX<670) {//this will make it stop functioning before hitting sidepanel
            graphics.moveTo(mouseX, mouseY);
            graphics.lineTo(mouseX-1, mouseY+1);//makes the lines appear
    function clickPencil(evt:MouseEvent) {
        graphics.lineStyle(2, 0x000000, 1);
    But the second problem is that it keeps drawing when I go to the eraser. Tried using MouseEvent.MOUSE_DOWN, to make it only draw when I held down the mousebutton, either that, or I want it to draw only when combined with some KeyboardEvent...is this possible?
    I also wonder if it'd be possible to make smoother lines, almost like the ones drawing in Flash itself....

    Looks like you heed to change it to something like this:
    drawButton.addEventListener(MouseEvent.MOUSE_DOWN, clickPencil);
    graphics.lineStyle(2, 0x000000, 1);
    function moveLine(evt:MouseEvent):void {
        if (mouseX < 670) {
            graphics.lineTo(mouseX-1, mouseY+1);
    function clickPencil(evt:MouseEvent):void {
         graphics.moveTo(mouseX, mouseY);
         stage.addEventListener(MouseEvent.MOUSE_UP, stopDrawing);
         stage.addEventListener(MouseEvent.MOUSE_MOVE, moveLine);
    function stopDrawing(evt:MouseEvent):void{ 
         stage.removeEventListener(MouseEvent.MOUSE_MOVE, moveLine);
         stage.removeEventListener(MouseEvent.MOUSE_UP, stopDrawing);
    As for smoothness, you probably need to come up with some trigonometric algorithm that takes into account mouse move direction and make curveTo() call. I am not sure it is worth it though.

  • Looking for simpler ide tools

    i am currently using the netbeans and find it too complicated for me and it takes a lot of resources.
    Could somebody please suggest me what ide i should use?
    I need the function of displaying a drop-down list of all the methods available for the object that I am referring to.....
    for example.....
    String s="abcde";
    System.out.println(s. <<the moment that i type the dot, i want the ide to display a list of all methods available for the String s.....
    Any suggestions?
    Thanks~~~~~~!

    Eclipse is a full blown IDE..it supports many features (mos of which you probably don't use), and other stuff you probably didn't noticed...like writing a Class..and not needing to compile it (cause it does this while you're writing the code..and checking for error as well.)
    JCreator is small..because it's a lightweight editor..it supports very few basic features (which most developers uses). noticed that they don't have a debugger (at run time)..auto-complete, code generation (well..some of these features are in their PRO version)
    Also, Eclipse was designed to supports pluggin, different programing languages

  • Simple xmp query tool

    I'm looking for a simple query tool which I could use to explore XMP files, for Windos with GUI. I have been experimenting with SparqlGUI, but it doesn't seem to recognize the XMP language. Any ideas?

    Hi Pantau,
        Could you please elaborate what do you mean by query too?
        From your post/question it seems you need metadata in some format which can be used with SparqlGUI. if so, it is not a big deal. RDF file can be used with SparqlGUI AND  With a few lines of code you can generate RDF file having metadata ofa file. To do so, please do similar to below lines  ( I am skipping checks, syntaxes etc.)
    1. SXMPFiles myFile;
    2. myFile.OpenFile(filename, kXMP_UnknownFile, opts);
    3. SXMPMeta meta;
    4. myFile.GetXMP(&meta);
    5. string metaBuffer;
    6. meta.SerializeToBuffer(&metaBuffer, 0, 0, "", "", 0);
    for more detail have a look on ModifyingXMP sample of XMP SDK.

  • Are there any uml tools on linux ?

    I'm looking for a simple uml tool in linux.Because I'm doing my excercise from school and I want to do it in linux instead of switching to windows. And at least, it can import and export uml file from staruml.
    Thanks guys

    I'd suggest Umbrello from KDE SC. It is outstanding tool. The only issue — it is not very stable, so you should save your progress frequently.
    From it's advantages I'd like to mention
    1. UML is virtually backed by code (dunno, how to explain correctly), this is not only a graphic editor. You can create, f.ex. custom datatypes, make all possible relations, and all your actions will be then represented as graphics.
    2. It supports usecase diagrams, class, component, deployment and relation diagrams. Moreover, for the last type it can generate a valid SQL code.
    Ideally, it should generate code for class diagrams too, but the last time I used it, this feature was only declared, but not implemented. At least, for Java.
    Also there are Java ArgoUML and Violet.
    The first one is also a real UML editor and is even better than Umbrello, it has no relation diagrams, but supports flowcharts, sequence diagrams and some more.
    And the other is just a graphic editor, like DIA.
    Last edited by eDio (2010-11-29 17:57:21)

  • Custom jQuery overlay tool in Interactive Reports not rendering

    As the subject says, I got a problem in rendering jQuery on an Interactive Report. It is working on a non-paginated pages, like forms, and also in Interactive Reports, but whenever the data is getting paginated, after you go to the next page, the jQuery won't work.
    Here is the scenario:
    I have an Interactive Reports page that displays the Files in my table (all of it are images.)
    SELECT
    ('<img src="#OWNER#.DISPLAY_IMAGE_PROC?image_id='
    ||f.image_id
    ||'" width="64" height="48" rel="#img'||f.image_ID||'" />') AS IMAGE
    FROM TABLE_NAME
    The rel attribute of the image is the one that I am using to get the jQuery to work.
    The src of the image is a procedure to get the path of the image. (Based in Denes Demo Application)
    On the Interactive Reports Page, it displays the image correctly.
    When you click the Image it will display an overlay image with the size of 640x480.
    But when you go to the next page, the function will not work, and there are no errors given (javascript / oracle error / any other).
    If you don't know how to implement a simple overlay tool in jQuery go here: http://jquerytools.org/demos/overlay/index.html
    anybody experience something like this?
    -Philip
    Edited by: 942717 on Jun 25, 2012 2:44 PM

    You need to enable overlay on after refresh event of the report
    Create a dynamic action
    Event: After Refresh
    Selection Type: Region > and select your IR region
    Action: Execute JavaScript Code
    Code: add your overlay code something like below
    $("img[rel]").overlay();

  • How do I turn off the One-Click Shape Tool Popup?

    This has been frustrating me since I upgraded....
    So lately I've been having to make faux pixel art for work. I've been using the shape tool and a grid to achieve the look.The process used to be painless, but with this new One-Click Shape Tool popup, it's driving me nuts!!!!
    I'm using a simple rectangle tool which in the settings I set to a FIXED SIZE of 18px by 18 px, so every time I draw a square it snaps to that size. Great! The issue is with this new PS6/CC "improvement" if I don't drag the mouse and instead click while making the shape, I get this ANNOYING popup. It asks to input the height and width and has a check box to draw the shape from the center.
    Now, since I'm making pixel art, I'm dropping several 18 by 18 shapes a second... you can imagine how often this STUPID popup interrupts my flow. PLEASE tell me there is a way to turn this off. WHY would it ask for dimensions when I already locked the size in the shape options. *sob* Please help me....

    It's not a bug though. This was a feature added to Photoshop 6/CC, I'm just wondering if there is a way to turn it off.
    It's very easy to reproduce this feature. Have any shape tool selected (rectangle, ellipse, polygon, etc) and click on the canvas without moving the mouse. That's it.
    It's just frustrating to get this popup when I already have it set to fixed size.

  • How do I create a quick tool button for a specific preflight profile to flatten the document?

    Hi all,
    I'm using Acrobat XI on a Mac.
    So I've done my googling and searching of the forum, and figured out how to flatten a document (I apply my signature with a stamp) using preflight. However, I'd like to create a simple, quick tool (or otherwise) button to click and flatten a document. How do I go about doing that?

    I don't think you can create a button to run a Preflight Profile. But you can create a Preflight Droplet from the Preflight Options menu. This lets you drag and drop PDF files onto the droplet (essentially an alias to run the profile). You choose a Success folder and Failure folder location to direct files which pass or fail the preflight. (Read more in Acrobat Help.)

  • Is there a good GUI tool on linux for backups? What do YOU use?

    Hi all,
    I feel Linux lacks a good and simple graphical tool to do desktop backups for regular users. I'm thinking of writing one myself (probably a front-end to a good command line tool), but before I get started, I want to make sure I'm not reinventing the wheel.
    So:
    - Is there a good graphical tool available already? It should be: simple (minimalist interface, sane defaults), fast and incremental.
    - What do YOU currently use for your desktop backups?
    EDIT: rsync alone is not great, because a good backup solution keeps multiple snapshots. Imagine you deleted a file by accident 15 days ago, and realize only today: rsync won't save you.
    EDIT2 : I have tried backintime, I think it's a step in the right direction, but it's not that great. Maybe I should improve on it instead of starting something new, though.
    EDIT3 : Has anyone tried PyBackPack (http://andrewprice.me.uk/projects/pybackpack/) ? I'm trying it at the moment and it seems to be getting it right. I'd like to hear some success stories before getting my hopes to high
    Last edited by lardon (2010-05-11 13:33:55)

    It doesn't snapshot -- I occasionally back-up my back-ups and don't need that -- but it does its job well.
    #!/bin/bash
    ### System Backup ##############
    # Version 0.5 by Scott Garrett #
    # Wintervenom [(at)] gmail.com #
    backup_label="demonpit"
    exclude="/dev/shm/rsync-excludes.rc"
    excludes=(
    'tmp/*' # Temp files.
    'tmp/.*' # Hidden temp files.
    '.mozilla/firefox/*/Cache' # Firefox caches...
    'cookies.sqlite' # Mozilla-based cookies.
    'formhistory.sqlite' # Mozilla-based form history.
    '.thumbnails' # Thumbnail cache.
    '.recently-used.xbel' # Recent-open history.
    '.ccache' # Compiler caches
    'sessionstore.js' # Firefox session-saves.
    '.gvfs' # GNOME virtual filesystem.
    '.local/share/Trash' # XDG trash.
    '.local/share/user-places*' # Recent-open history.
    '.purple/logs' # Pidgin/Finch logs.
    '.cache/Thunar/thumbnailers.cache' # Thumbnailer cache.
    '.cache/chromium' # Chrome cache.
    '*~' # Backup/temp files.
    out () {
    echo ">> $*"
    stat_done () {
    echo ">> ...done."
    stat_fail () {
    echo ">> ...failed!"
    if [ $UID != '0' ]; then
    echo "Must be executed as root user."
    exit 1
    fi
    out "Mouting backup device ('$backup_label')..."
    backup_dev=`readlink -f "/dev/disk/by-label/$backup_label"`
    if mount | grep -qF "$backup_dev on"; then
    backup_root=`mount | grep -F "$backup_dev on" | cut -d' ' -f3`
    echo " - This device seems to already be mounted at '$backup_root'."
    echo ' Do you want to use this, instead (y/N)?'
    echo -n ' << '
    read -n1 confirm
    echo
    [ "$confirm" != 'y' ] && exit 1
    else
    backup_root="/mnt/$backup_label"
    mkdir -p "$backup_root"
    if ! mount -o noatime,user "$backup_dev" "$backup_root"; then
    echo ' - Failed to mount device.'
    exit 1
    fi
    echo ' - Device mounted successfully.'
    fi
    out "Backing up system..."
    echo > /tmp/rsync-excludes.rc
    for file in ${excludes[@]}; do
    echo "$file" >> "$exclude"
    done
    rsync -axl -h --progress --delete --delete-excluded --exclude-from="$exclude" /{home,usr,opt,var,*bin,lib*,etc,boot,root,srv} "$backup_root/$HOSTNAME"
    mkdir -p "$backup_root/$HOSTNAME/"{dev,sys,proc,tmp,mnt,media}
    mkdir -p "$backup_root/$HOSTNAME/var/"{tmp,lock}
    chmod 1777 "$backup_root/$HOSTNAME/tmp" "$backup_root/$HOSTNAME/var/"{tmp,lock}
    stat_done
    out "Backing up package list..."
    pacman -Qqe | grep -v "$(pacman -Qmq)" > "$backup_root/$HOSTNAME/pacman.list"
    pacman -Qmq > "$backup_root/$HOSTNAME/aur.list"
    stat_done
    out "Unmouting backup partition..."
    if umount "$backup_dev"; then
    rmdir "$backup_root/$HOSTNAME"
    rmdir "$backup_root"
    else
    echo ' - Could not unmount.';
    fi

  • Want a Simple Way to Insert a Simple Picture

    I'm having trouble inserting a simple picture into a pages document. I don't care about anything fancy, the document is an academic paper and I just want a simple diagram with a few boxes and arrows. No colors, animation, bitmaps, etc. I created the diagram in Keynote first. Then I grouped all the boxes and arrows into one object and copied the object. Then I pasted the object into the Pages document. What I expected is the text would wrap around it and i might have to tweak that a bit. My preference is just to have text above and below the picture, no fancy text wrapping, the picture is wide enough it takes up the width of most of the page anyway. But the text and image seem to blur together.
    Just to be clear, what I want should have the following layout shown in quotes below:
    "Blah, blah, blah...as we can see in the diagram 1 below:
    BOXES AND ARROW PICTURE GOES HERE
    As we can see in diagram 1 above..."
    I've tried anchoring the text with "below:" or "As we can see" but I can't figure out how to change the anchor. I position the cursor where I want the image to be (in the blank space that says BOXES above) but it seems to want to place it higher up (the little blue anchor thing isn't where I expect but further up in the paragraph) and I can't figure out how to change it and I've even -- and this just shows how desperate I am -- looked at the documentation and still can't figure it out.
    I also tried various hacks like inserting a bunch of line breaks or even a new page all on it's own and the picture still ends up getting displayed strange. The picture takes up about .75 the width and .25 the height of a single page.
    I know I must be doing something stupid and am probably missing something very basic. Any help would be greatly appreciated.

    Yes, Pages 5.2.
    Thanks I'll try that.
    Regarding where I draw the picture, are you saying it would be easier with Pages or should the behavior be pretty much equivalent either way?
    I've always preferred using some simple graphics tool like Powerpoint or now Keynote for diagrams because I usually have lots of diagrams and I like to have them in a separate tool, sort of a repository for the pictures. Also, as in this case, the picture started out as part of a presentation and I think will migrate back to a presentation. For consistency and because at least with previous tools you could do more with graphics in a presentation tool I always have done it that way. But if the drawing tool in Pages works better I could use that.

  • Why did Adobe remove the Site Map Tool in CS4?

    Is there a better, faster way to wireframe? I could wireframe a prototype 20 page website for testing in about 5 minutes using this tool. I doubt there is a faster way but there is probably a better way. What are some of the best practices on wireframing. Obviously, I am out-of-date if Adobe drops my main tool for wireframing.

    iroot wrote:
    Obviously, I am out-of-date if Adobe drops my main tool for wireframing.
    The original announcement that the Site Map was going to be dropped was made in August 2007, and had this to say:
    there are many features in the application that require significant
    resources to maintain release to release, but aren't being used with
    significant frequency.
    That's obviously not much comfort to you, and I'm sorry that I don't have an answer regarding an alternative wireframing tool. However, if you have need for a particular feature in Dreamweaver, it's always a good idea to submit a formal request through the feature request/bug report form at http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform. "Bring back Site Map" is likely to fall on deaf ears, but "provide a simple wireframing tool for site development", with an explanation of how you envisage it working and the benefits it would offer other users, could bring a completely different response.
    Good luck in your search for an alternative wireframing tool. If you find one, post the details back here for the benefit of others in a similar position to yourself.

Maybe you are looking for

  • Credit block SAP inbox message

    Hello All, This is my actual requirement: When the sales order goes into a credit block, KRML output triggers SAP inbox message to the credit manager/credit representative as per the output records maintained. In standard SAP, the inbox message is re

  • Suddenly my iTunes will no longer sync video taken on the iPhone. Why?

    Suddenly my iTunes will no longer sync video taken on the iPhone. Why?

  • Verifying BAPI posting in SAP R/3

    Hi experts,                 I am using async RFC (BAPI)  in my scenario. The message has left XI sucessfully, but I do not know whether my BAPI has been posted in SAP. Is there any way to find out whether a RFC call has been made in SAP R/3. Thanks i

  • File Content Conversion for complex structure

    Hi I have a requirement to repeat a structure consisting of three lines i.e the segment  containing these 3 lines will have occurrence 0....unbounded and will be repeated in the File multiple times , What is the level that can be handled in File Cont

  • How to add a 2nd ipod to PC

    I just purchased my second ipod, an 80G classic video pod. When I try to add it to ITunes, I get the Software Agreement but does not allow me to continue to register it to the same PC where my older ipod is installed. Help please.