How to insert BLOB datatype image using PL/SQL Procedure and SQL Loader

Hi,
How to insert an image into database using PL/SQL Procedure and also how to insert using SQL Loader. Please help by giving sample code and process description.
Thanks,
Vijay V

http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:232814159006

Similar Messages

  • How to edit a datagridview/textboxes using tableadapters in c# and sql

    I am wondering what is the best way to edit a database that has multiple tables. 
    (Section 1) I have a Administration, Teacher and Student table that is linked up with the Person table which has a Primary Key. 
    The Person table consists of the general information of the person.
    The Student table consists of information about the student; student ID and qualification code.
    The Teacher table consists of information about the teacher; teacher ID, Reg No and password.
    The Administration table consists of information about the admin; admin ID, Role and password.
    As the Primary Key in the Person table is the ID, I have linked up with each of the other's table with their appropriate ID. 
    (Section 2) I have a Course and Qualification table that is linked up with the Student and Teacher table as well as each other. 
    The course table constists of the Course ID, Course Name ... and Teacher ID.
    The Qualifications table consists of Qualification Code, Qualification Name and Duration. 
    There is a section where I have to create a view which shows just the Student ID, Course ID and has the Student's Marks in it. 
    I have got a combobox which then links up with the dgv(datagridview).
    I have got insert and delete methods for both sections. Here is an example of the insert method into the Admin/Person table. 
    try
    personTableAdapter.Insert(aFirstName.Text, aSurname.Text, Convert.ToDateTime(aDoB.Text), aPhone.Text, aAdd1.Text, aAdd2.Text, aSuburb.Text, aState.Text, aPostcode.Text, AdminType.Text);
    administrationTableAdapter.Insert(Convert.ToInt32(aAID1.Text), aRole.Text, aPassword.Text);
    MessageBox.Show(aFirstName.Text + " " + aSurname.Text + " has been added. Your ID is " + aAID1.Text);
    this.personTableAdapter.Fill(this._30002195DataSet.Person);
    this.administrationTableAdapter.Fill(this._30002195DataSet.Administration);
    catch (Exception ex)
    MessageBox.Show(ex.Message);
    Here is an example of the delete method in the Admin/Person table.
    try
    personTableAdapter.Delete(Convert.ToInt32(aID.Text), aFirstName.Text, aSurname.Text, Convert.ToDateTime(aDoB.Text), aPhone.Text, aAdd1.Text, aAdd2.Text, aSuburb.Text, aState.Text, aPostcode.Text, AdminType.Text);
    administrationTableAdapter.Delete(Convert.ToInt32(aAID.Text), aRole.Text, aPassword.Text);
    MessageBox.Show("Person Deleted");
    this.personTableAdapter.Fill(this._30002195DataSet.Person);
    this.administrationTableAdapter.Fill(this._30002195DataSet.Administration);
    catch (Exception)
    MessageBox.Show("Cannot delete Person");
    Those methods above are working fine, what I'm having problems with, is with the editing/updating part. 
    I have tried a few things and haven't worked. 
    Here's an example of an edit, while trying to use textboxes. 
    personTableAdapter.Update(aFirstName.Text, aSurname.Text, Convert.ToDateTime(aDoB.Text), aPhone.Text, aAdd1.Text, aAdd2.Text, aSuburb.Text, aState.Text, aPostcode.Text, AdminType.Text, Convert.ToInt32(aID.Text), aFirstName.Text, aSurname.Text, Convert.ToDateTime(aDoB.Text), aPhone.Text, aAdd1.Text, aAdd2.Text, aSuburb.Text, aState.Text, aPostcode.Text, AdminType.Text);
    administrationTableAdapter.Update(aRole.Text, aPassword.Text, Convert.ToInt32(aAID.Text), aRole.Text, aPassword.Text);
    personBindingSource.EndEdit();
    administrationBindingSource.EndEdit();
    administrationTableAdapter.Update(_30002195DataSet.Administration);
    personTableAdapter.Update(_30002195DataSet.Person);
    MessageBox.Show("Person Updated");
    this.personTableAdapter.Fill(this._30002195DataSet.Person);
    this.administrationTableAdapter.Fill(this._30002195DataSet.Administration);
    Here I tried to do the new values/original values, while trying to use textboxes
    personTableAdapter.Update(aFirstName.Text, aSurname.Text, Convert.ToDateTime(aDoB.Text), aPhone.Text, aAdd1.Text, aAdd2.Text, aSuburb.Text, aState.Text, aPostcode.Text, AdminType.Text, Convert.ToInt32(aID.Text), aFirstName.Text, aSurname.Text, Convert.ToDateTime(aDoB.Text), aPhone.Text, aAdd1.Text, aAdd2.Text, aSuburb.Text, aState.Text, aPostcode.Text, AdminType.Text);
    administrationTableAdapter.Update(aRole.Text, aPassword.Text, Convert.ToInt32(aAID.Text), aRole.Text, aPassword.Text);
    Trying to use the example through the mdsn, this is trying to use the datagridview.
    this.Validate();
    personBindingSource.EndEdit();
    teacherBindingSource.EndEdit();
    _30002195DataSet.PersonDataTable deletedPerson = (_30002195DataSet.PersonDataTable)
    _30002195DataSet.Person.GetChanges(DataRowState.Deleted);
    _30002195DataSet.PersonDataTable newPerson = (_30002195DataSet.PersonDataTable)
    _30002195DataSet.Person.GetChanges(DataRowState.Added);
    _30002195DataSet.PersonDataTable modifiedPerson = (_30002195DataSet.PersonDataTable)
    _30002195DataSet.Person.GetChanges(DataRowState.Modified);
    try
    if (deletedPerson != null)
    personTableAdapter.Update(deletedPerson);
    teacherTableAdapter.Update(_30002195DataSet.Teacher);
    if (newPerson != null)
    personTableAdapter.Update(newPerson);
    if (modifiedPerson != null)
    personTableAdapter.Update(modifiedPerson);
    _30002195DataSet.AcceptChanges();
    catch (System.Exception ex)
    MessageBox.Show(ex.Message);
    finally
    if (deletedPerson != null)
    deletedPerson.Dispose();
    if (newPerson != null)
    newPerson.Dispose();
    if (modifiedPerson != null)
    modifiedPerson.Dispose();
    MessageBox.Show("Updated");
    this.personTableAdapter.Fill(this._30002195DataSet.Person);
    this.teacherTableAdapter.Fill(this._30002195DataSet.Teacher);
    Now because I am trying to edit a certain user which requires the Person table along with the other table, it just doesn't seem to work at all. 
    With the datagridview, I made a new view in the sql and it has both tables combined and shows when I bring it out from the datasource, but where I go into the dataset builder and try to create an update method, all I get is the "Update" not what
    I would get when I created the update method from just the person's table by itself. 
    Can someone provide me with an example or help me out someway because I am struggling with this, I can't seem to find much information at all. 
    Thanks. 

    I have used the designer to create a new datagridview, when using that dgv it doesn't want to update to the relevent tables in my database. So say you have the person and admin dgv together and you need to update it, how would you get it to work
    to the database? I did just end up using 2 seperate dgv's but it won't get accepted.
    try
    _30002195DataSetTableAdapters.PersonTableAdapter personTableAdapter = new _30002195DataSetTableAdapters.PersonTableAdapter();
    // person table
    _30002195DataSetTableAdapters.AdministrationTableAdapter administrationTableAdapter = new _30002195DataSetTableAdapters.AdministrationTableAdapter();
    // admin table
    ViewSetTableAdapters.AdminViewTableAdapter adminviewTableAdapter = new ViewSetTableAdapters.AdminViewTableAdapter();
    // tried using this for both the admin/person tables together but didn't work?
    this.Validate();
    adminViewBindingSource.EndEdit(); //both
    personBindingSource.EndEdit();
    administrationBindingSource.EndEdit();
    personTableAdapter.Update(_30002195DataSet.Person);
    administrationTableAdapter.Update(_30002195DataSet.Administration);
    MessageBox.Show("Updated");
    this.personTableAdapter.Fill(this._30002195DataSet.Person);
    this.administrationTableAdapter.Fill(this._30002195DataSet.Administration);
    catch (Exception ex)
    MessageBox.Show(ex.Message);
     So, how would I write the code so it edits both the tables from just the one dgv?
    Hello,
    Based on these words above, it seems that the key issue is that you want to display and edit the data of two tables with a single datagridview, right? If so, I am afraid that I would recommend you consider using code other than designer to get that done.
    Are these table store in the same database?
    If so, then you could consider getting that done with ADO.NET, we could getting the data of multiple table with sql query. You could consider
    using sql query to get all data from multiple tables
    of database, and then fill them to a single datatable.
    For query issue, you could consider getting help from
    Transact-SQL forum.
    If not, then we need to create update query for both table and execute these queries with sperate connection strings.
    Regards,
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to create dvd/cd image using super drive in MacBook Air

    I have MacBook Air and also Apple Supper drive for the same. can u help me to find dvd/cd burrning and copy software. and also guide me "how to create dvd/cd image using super drive in MacBook Air"

    First to create a video DVD you need to use DVD authoring software like iDVD.  You can purchase it from the online Apple Store while supplies last.
    For creating a disk image use Disk Utility.
    To burn items to a CD or data DVD just insert the disc in the optical drive and drag those items onto the disc icon on the Desktop.  Then drag the disc icon to the Trash icon in the Dock which changes to a Burn icon.
    OT

  • Image display - How do I display an image using an absolute path?

    How do I display an image using an absolute path in a compiled WebHelp?
    Our developers use RH8 map IDs within our in-house applications to display in a model window created using Telerik Rad Window.
    Unfortunately images disappear from these model windows because RoboHelp removes absolute links to [inserted] images and changes them to relative in the compiled WebHelp.
    How do we overcome this? Is there a solution in RH8?

    I have tried again and changed the path in the topic HTML
    from : ..\..\HelpTopics\Icon_Search.png
    to    :  \HowDoI\Help_CMS\WebHelp\HelpTopics\Icon_Search.png
    I am obviously unable to see it in RH8 as I have removed the relative link so it is "outside" of the project.
    This time, on compilation, it has not stripped out the absolute links. The developer was working with me on this last week and we did have any issue in that they did not hold the absolute link. Most odd!
    Checking the published help it appears to be working in the application, which is great.
    So my apologies for raising the issue but it really did not work last week.

  • How to print uspto patent images using Safari and Quicktime

    3/18/06
    Do you want to know how to print US patent images using Safari? Read on.
    When you access the "images" link of a specific patent on the www.uspto.gov/ website using Safari, the page you are viewing is only one small upper left tile of a huge patent image that is not sized to the screen. You can scroll and try to read the page but it's almost impossible. Try to print it out and you only print what's on the screen. Bummer.
    The fix:
    Place the cursor on the opened image (it may appear blank), hold down the CONTROL key on you keyboard and click on the image. Two instructions come up. Click on the "Save Image to the Desktop" instruction and a DImg.tiff file will be created on your desktop. Click on the .tiff file and it should open in the Preview program, then simply print out the image. Voila!!!!
    Click the yellow arrow in the left margin to access page 2 of the patent and repeat the previous instructions to create another .tiff file on your destop. Do every page and you'll have the patent available to print out one page at a time.
    You can then rename the files and create a folder for that specific patent so you can access it later without signing onto uspto site.
    It's odd that the ever compatible Apple does not provide seamless compatibility to view and print patent images on the US Patent and Trademark Office's website. Where would they be without protecting their own intellectal property? Let's hope the next version of Quicktime includes the appropriate ITU T.6 or CCITT Group 4 (G4) compression language.
    Even the "throw it out the Windows" operating system is up to speed on this issue for America's hard working inventors.
    Keep on inventing.
    Tommy K
    imac 400 DV   Mac OS X (10.3.9)   Cube 450
    imac 400 DV   Mac OS X (10.3.9)   Cube 450

    Another similar thread on this issue...
    http://discussions.apple.com/thread.jspa?messageID=1602391

  • How to get muliple teaser images using assetset:getmultiplevalues?

    1. I have created a template called sample and Names it as sample.jsp
    2. In the subTypes i selected a pageDefinition which i created alrady with the following page attributes
         1.teaserImager 2.teaserText
         Both attributes are Multiple
    3. I then created a asset HomePage of asset type Page.
    4. For that HomePage i applied a template sample which i created in Step 1.
    5.I added 4 teaser images and teser texts in the contributor interface
    6. In eclipse i am trying to modify sample.jsp to fetch the teaser images using assetset:getmultiplevalues. But no success?
    Could anybody tell me how to fetch the teaser images using getmultplevalues?
    Below is the code which is not working, just for ref.
    <render:logdep cid='<%=ics.GetVar("tid")%>' c="Template" />
    <assetset:setasset name="home" type="Page" id='<%=ics.GetVar("cid")%>' />
    <assetset:getattributevalues name="home" attribute="teaserImages" listvarname="teasersImg" typename="PageAttribute" />
    *<assetset:getmultiplevalues name="home" list="teasersImg" prefix="sample" />*
    *<ics:listloop listname="sample:value">*
                   *<insite:calltemplate tname="Detail" c="AVIImage"*
                        cid='<%=ics.GetVar("imageId")%>' assettype="Page"
                        assetid='<%=ics.GetVar("cid")%>' field="teasersImg" index="1" />
              *</ics:listloop>*
    Above code gives me the exception saying
    Exception in doEndTag() in tag com.openmarket.gator.jsp.assetset.Getmultiplevalues in page 'avisports/Page/InsiteLayout' in element 'Page/InsiteLayout' errno: -13102 errdetail: 0
    com.openmarket.basic.interfaces.AssetException: Can't find attribute type: 1330543072207
    thanks
    Sri
    Edited by: 987672 on Feb 12, 2013 12:15 PM

    Hi Nick, I do see information on creating a slideshow with Quicktime at: http://www.apple.com/quicktime/tutorials/slideshow.html
    however it appears Quicktime X removed that capability. There is no 'open image sequence' option from the File menu in Quicktime X.
    If I do end up sticking with Final Cut - would you recommend any codec and/or dimension size that would result in the best quality or the most crisp image? I also need a few fade in's and out's on various parts - I don't believe I would have the control without Final Cut.
    Would resizing the image files in Photoshop to 1920 pixels by 1280 before importing them into Final Cut result in crisper images? Thanks.

  • I would like to know how to stretch a background image using HTML

    Hello Seniors of Sun,
    I gota small doubt in HTML, can any one please help me in solving it,
    I would like to know how to stretch a background image using HTML? I have tried and tried to figure this out and cannot..
    so any one kindly help me in this...
    waiting for reply...

    Please note that this is not an HTML forum.
    You can use an image tag on a DIV positioned behind the rest of the page, so that could actually work. And if you want to use body:background, then look up an HTML/CSS reference and see if there are any other body attributes or CSS stuff that applies to the background image.

  • How do I change the image used on an movie project icon? iMovie seems to select an image at random from the images I imported.

    How do I change the image used on an movie project icon?
    iMovie seems to select an image at random from the images I imported.

    Not sure I understand how to use what you have posted. Here's what my init() looks like:
    public void init()
    setLayout(new BorderLayout());
    p=new Panel();
    p.setLayout(new GridLayout(1,1));
    callnowButtonURL = getURL(callnowButtonFilename);
    if (callnowButtonURL != null)
    callIcon = new ImageIcon(callnowButtonURL,"call");
    endcallButtonURL = getURL(endcallButtonFilename);
    if (endcallButtonURL != null)
    endIcon = new ImageIcon(endcallButtonURL);
    b=new JButton(callIcon);
    b.setBorder(new EmptyBorder(0,0,0,0));
    b.setBorderPainted(false);
    b.addActionListener(this);
    p.add(b);
    add(p,"Center");
    Now the ActionListener is basically:
    public void actionPerformed(ActionEvent e)
    if (mybool == false)
    <Perform actions here set mybool to true>
    Change JButton b to use EndIcon
    else
    <Perform actions here set mybool to false>
    Change JButton b to use CallIcon
    Can you clarify how to perform the action I require? You can have a couple of Dukes if you can help me sort this out.

  • How to Unpivot, Crosstab, or Pivot using Oracle 9i with PL/SQL?

    How to Unpivot, Crosstab, or Pivot using Oracle 9i with PL/SQL?
    Here is a fictional sample layout of the data I have from My_Source_Query:
    Customer | VIN | Year | Make | Odometer | ... followed by 350 more columns/fields
    123 | 321XYZ | 2012 | Honda | 1900 |
    123 | 432ABC | 2012 | Toyota | 2300 |
    456 | 999PDQ | 2000 | Ford | 45586 |
    876 | 888QWE | 2010 | Mercedes | 38332 |
    ... followed by up to 25 more rows of data from this query.
    The exact number of records returned by My_Source_Query is unknown ahead of time, but should be less than 25 even under extreme situations.
    Here is how I would like the data to be:
    Column1 |Column2 |Column3 |Column4 |Column5 |
    Customer | 123 | 123 | 456 | 876 |
    VIN | 321XYZ | 432ABC | 999PDQ | 888QWE |
    Year | 2012 | 2012 | 2000 | 2010 |
    Make | Honda | Toyota | Ford | Mercedes|
    Odometer | 1900 | 2300 | 45586 | 38332 |
    ... followed by 350 more rows with the names of the columns/fields from the My_Source_Query.
    From reading and trying many, many, many of the posting on this topic I understand that the unknown number or rows in My_Source_Query can be a problem and have considered working with one row at a time until each row has been converted to a column.
    If possible I'd like to find a way of doing this conversion from rows to columns using a query instead of scripts if that is possible. I am a novice at this so any help is welcome.
    This is a repost. I originally posted this question to the wrong forum. Sorry about that.

    The permission level that I have in the Oracle environment is 'read only'. This is also be the permission level of the users of the query I am trying to build.
    As requested, here is the 'create' SQL to build a simple table that has the type of data I am working with.
    My real select query will have more than 350 columns and the rows returned will be 25 rows of less, but for now I am prototyping with just seven columns that have the different data types noted in my sample data.
    NOTE: This SQL has been written and tested in MS Access since I do not have permission to create and populate a table in the Oracle environment and ODBC connections are not allowed.
    CREATE TABLE tbl_MyDataSource
    (Customer char(50),
    VIN char(50),
    Year char(50),
    Make char(50),
    Odometer long,
    InvDate date,
    Amount currency)
    Here is the 'insert into' to populate the tbl_MyDataSource table with four sample records.
    INSERT INTO tbl_MyDataSource ( Customer, VIN, [Year], Make, Odometer, InvDate, Amount )
    SELECT "123", "321XYZ", "2012", "Honda", "1900", "2/15/2012", "987";
    INSERT INTO tbl_MyDataSource ( Customer, VIN, [Year], Make, Odometer, InvDate, Amount )
    VALUES ("123", "432ABC", "2012", "Toyota", "2300", "1/10/2012", "6546");
    INSERT INTO tbl_MyDataSource ( Customer, VIN, [Year], Make, Odometer, InvDate, Amount )
    VALUES ("456", "999PDQ", "2000", "Ford", "45586", "4/25/2002", "456");
    INSERT INTO tbl_MyDataSource ( Customer, VIN, [Year], Make, Odometer, InvDate, Amount )
    VALUES ("876", "888QWE", "2010", "Mercedes", "38332", "10/13/2010", "15973");
    Which should produce a table containing these columns with these values:
    tbl_MyDataSource:
    Customer     VIN     Year     Make     Odometer     InvDate          Amount
    123 | 321XYZ | 2012 | Honda      | 1900          | 2/15/2012     | 987.00
    123 | 432ABC | 2012 | Toyota | 2300 | 1/10/2012     | 6,546.00
    456 | 999PDQ | 2000 | Ford     | 45586          | 4/25/2002     | 456.00
    876 | 888QWE | 2010 | Mercedes | 38332          | 10/13/2010     | 15,973.00
    The desired result is to use Oracle 9i to convert the columns into rows using sql without using any scripts if possible.
    qsel_MyResults:
    Column1          Column2          Column3          Column4          Column5
    Customer | 123 | 123 | 456 | 876
    VIN | 321XYZ | 432ABC | 999PDQ | 888QWE
    Year | 2012 | 2012 | 2000 | 2010
    Make | Honda | Toyota | Ford | Mercedes
    Odometer | 1900 | 2300 | 45586 | 38332
    InvDate | 2/15/2012 | 1/10/2012 | 4/25/2002 | 10/13/2010
    Amount | 987.00 | 6,546.00 | 456.00 | 15,973.00
    The syntax in SQL is something I am not yet sure of.
    You said:
    >
    "Don't use the same name or alias for two different things. if you have a table called t, then don't use t as an alais for an in-line view. Pick a different name, like ordered_t, instead.">
    but I'm not clear on which part of the SQL you are suggesting I change. The code I posted is something I pieced together from some of the other postings and is not something I full understand the syntax of.
    Here is my latest (failed) attempt at this.
    select *
      from (select * from tbl_MyDataSource) t;
    with data as
    (select rownum rnum, t.* from (select * from t order by c1) ordered_t), -- changed 't' to 'ordered_t'
    rows_to_have as
    (select level rr from dual connect by level <= 7 -- number of columns in T
    select rnum,
           max(decode(rr, 1, c1)),
           max(decode(rr, 2, c2)),
           max(decode(rr, 3, c3)),
           max(decode(rr, 4, c3)),      
           max(decode(rr, 5, c3)),      
           max(decode(rr, 6, c3)),      
           max(decode(rr, 7, c3)),       
      from data, rows_to_have
    group by rnumIn the above code the "select * from tbl_MyDataSource" is a place holder for my select query which runs without error and has these exact number of fields and data types as order shown in the tbl_MyDataSource above.
    This code produces the error 'ORA-00936: missing expression'. The error appears to be starting with the 'with data as' line if I am reading my PL/Sql window correctly. Everything above that row runs without error.
    Thank you for your great patients and for sharing your considerable depth of knowledge. Any help is gratefully welcomed.

  • How can I make an image appear partially in front and partially behind another layer in Adobe Illustrator?

    How can I make an image appear partially in front and partially behind another layer in Adobe Illustrator?

    Put the image behind the layer (at the back of it or on a layer below). With it still selected, Copy.
    Now Paste in Front (Ctrl+F). Depending on your Paste Remembers Layers setting, you may have to bring the newly pasted copy to the front, or to the upper layer.
    Draw a shape over the image to define the portion of it you want to appear "in front."
    With the shape and the image selected, clip the image using the shape. (Object > Clipping Mask > Make)

  • I edit movies onMac OS X using Final Cut Express and down load to desk top in .mov format. How do I load finished movie to i pad 2? i tunes will not transfer it.

    I edit movies onMac OS X using Final Cut Express and down load to desk top in .mov format. How do I load finished movie to i pad 2? i tunes will not transfer it. Thanks, stevefromnorthfreo

    Try outputting it as a MP4 or M4V
    If Final Cut won't output it, Mpegstreamclip will convert it. So will Quicktime if you have the pro version.

  • How to insert PO details in an ADF based form and initiate the process flow

    Hi All,
    Could any one let me know how to insert PO details in an ADF based form and initiate the process flow in oracle BPM. This ADF form will be custom one....How to create a ADF custom based form.Please let me know the step by step process..Am new to BPM
    Thanks in advance,
    sreevani

    Hi All,
    Could any one let me know how to insert PO details in an ADF based form and initiate the process flow in oracle BPM. This ADF form will be custom one....How to create a ADF custom based form.Please let me know the step by step process..Am new to BPM
    Thanks in advance,
    sreevani

  • How to find which datasource are using  tables AFRU ,CAUFV and AUFM

    *how to find which datasource are using  tables AFRU ,CAUFV and AUFM*

    Hi,
    You can enter your table names in SE11 transaction and click "Display" and again click "Where -Used-List". Then it will show all the places where these tables are used(Datasources)
    Hope this helps.....
    Regards,
    SUman

  • I need to create a image using some numeric values and i want to display values in image,

    I need to create a image using some numeric values and i want to display values in image, Numeric values be enterd by text file, excel file or user input by dialog box,
    this is the sample if image.
    http://s17.postimg.org/5xvtzbztn/5_01_03_I.png
    128 x 16 Pixels , Back ground Black, Numbers in Red, Should be same as above picture.
    Because i have hundreds of images to create like this.
    If any one can make a script for this it is very good.
    Sorry about my English.
    Thank you.

    Have you checked out data driven graphics?
    https://helpx.adobe.com/photoshop/using/creating-data-driven-graphics.html

  • How can I blur a image with two variables : degree and radius?

    how can I blur a image with two variables : degree and radius?
    a lot of thanks !

    What are the values of these variables supposed to represent?

Maybe you are looking for

  • Aggregates on Non-cumulative InfoCubes, stock key figures, stock, stocks,

    Hi..Guru's Please let me know if  anybody has created aggregates on Non-Cumulative Cubes or key figure (i.e. 0IC_C03 Inventory Management.) I am facing the problem of performance related at the time of execution of query in 0IC_C03.( runtime dump ) I

  • Any solution for having daily screen flicker on my 2.13GHz 13" 2011 Macbook Air (running 10.6.8)???

    well, the title says it all...I see on the Macbook Pro support threads that this is a continuing issue for that model and people seem frustrated that repeated replacements of motherboard and/or displays are not solving the problem. I can still use th

  • Screen wobbles and unsatisfactory rendering after last update

    After the last automatic update (which upgraded QT to 7.2 and a couple of other things), the screen rendering has deteriorated markedly. Moving the mouse around causes the screen to wobble by a pixel or two vertically and horizontally and the renderi

  • RunBooks vs. Autosys - which is preferable?

    Hey folks, I am currently using Autosys as an automation tool for JOB scheduling. It was suggested that Run Book Automation (RBA) be used instead of Autosys. Has anybody used RunBooks? If so, please advice if it a better alternative? I would also rea

  • Insert Statement with Where Clause

    I m using this but giving error "Encounter the Symbol "Where" when expecting one of the following. Code is :- insert into dum (cost_no, c_size, cmt1, cmt2, cmt3) values (:sizecost.cost_no, :sizecost.c_size, :bottomcost.cmt1, :bottomcost.cmt2, :bottom