Add physical column in advance in the physical layer without using import

Hi Experts,

Is it possible to add new physical column in the physical layer in advance if you already knew that this new physical column is added to the OLAP table in the future?


Thank you

Hello
Yes you can do it. Make sure you use the same column in the report once you add the column to the OLAP table.

check if useful/correct...

Thank you
prassu

Tags: Business Intelligence

Similar Questions

  • When I connect my Ipad or Iphone to my computer via a USB cable, I can open the storage folder without using a password. How can I avoid someone else do the same?

    When I connect my Ipad or Iphone to my computer via a USB cable, I can open the storage folder without using a password. How can I avoid someone else do the same?

    This storage folder are you referring? If you are referring to the film, what happens because you have accepted a trust between the iOS device and the computer. If the device has been connected to another computer, it must be unlocked and establish a relationship of trust as well. If you are referring to something different, please explain.

  • Is there a way to recover the deleted files without using any software?

    Is there a way to recover the deleted files without using any software?

    Is there a way to recover the deleted files without using any software?

    # Software is necessary.

    First check the recylcl tray. If she isn't here, read the following:

    "Deleting" a file does not delete actually it brand just space be used. There are third-party programs that can sometimes recover deleted files. The problem is that the space used by the file is likely to be replaced very quickly, and this makes the unrecoverable file.

    So your chances of successfully recover this file are decent, if you try it again immediately after deleting it and quickly down. If you have used the computer since then (for example to read this answer and write that question), your chances may be very weak now.

    But if the file is large enough, it's still worth a try. Stop using the computer in question immediately, if you haven't done so already. Download an undelete program (in here is one: http://www3.telus.net/mikebike/RESTORATION.html but there are many other choice; do a search) on a friend's computer and bring it to you on a diskette, CD, or drive to the thumb.

    If that fails, your only recourse is to bring or send the drive to a professional file recovery company. This kind of service is very expensive and may or may not work in your case.

  • Adobe CS5 uninstall - reinstall on the same computer without using the last instructions of activation code?

    I'm on a MacBook Pro with OS X Yosemite.  Computer has been completely cleaned, stored, updated, no problem other than my Adobe CS5 software will not work.  Photoshop, if I'm lucky that it will download, but a few minutes of the crash using.  InDesign won't open at all.  Illustrator, does not open.  Flash, none open - help from Adobe will not update because it says a file is corrupted etc etc etc etc.  I have my original disks with serial numbers to reinstall the software.  All I want to know is how to properly uninstall all the software on my computer and reinstall on the same computer without using my second activation code.  I can't seem to find clear, concise, simple instructions for this process.  "Disable" something before I have uninstall?  Where should I go for it?  What should I do once I have disabled everything I'm supposed to deactivate and uninstall the software, then reinstall?  I must return to some site to reactivate whatever it is I'm reactive?  I don't want to use my second activation code.  That's all.  Why customer comes from say the quick simple solution by phone beggars belief.  Yes.  I am quite aware that it is old software.  But it's your Adobe software.  Support me.  Because when you do not have, I have to post negative passive-aggressive messages like that on a forum online so that everyone can see.  I'm sure that you have all of the embarrassment of opportunity as you read this.  But I just want to assure that I do what I'm supposed to do without screwing anything other than it already is.  Any help is greatly appreciated!

    Uninstall using the own uninstaller from adobe by the use of the Adobe Creative Cloud cleaning tool to solve installation problems, restart your computer and reinstall.

    p.s. I'm not an adobe employee and these forums are user forums.

  • I need to disable my Creative Suite license on another computer in order to activate it on a new computer, but the old computer crashed and I can't use it. Is it possible to disable the other computer without using this computer?

    I need to disable my Creative Suite license on another computer in order to activate it on a new computer, but the old computer crashed and I can't use it. Is it possible to deactivate the license on the old computer without using it?

    you are allowed two facilities, activations, you should may not disable before activating on your new computer.

    But if you don't, contact adobe for hourly pst support by clicking here and, when available, click on "still need help," https://helpx.adobe.com/contact.html.  Ask a county of activation reset.

  • Add a column in addition to the existing view

    Hello
    I need to add a column to the existing view.
    How I do tht?
    Thank you

    Hello

    A view is as simple as a SQL query stored in the database with a name server in the system tablespace. Data for a view are built in a table created by the database engine in the TEMP tablespace. Views is not part of the physical schema.
    So whenever we want to execute the query us use SELECT * from View_Name. View is as a table for the user, but actually not in house. If you cannot add a column in the existing view. You crush the exsiting using view "create or replace the View ' or create a new view.

    Kind regards
    Rajesh.

  • How to add a column to a specific location within a table using Sql developer.

    Hello

    I need to add a column to a table in a specific location, how to proceed?
    I tried following
    clicked on a right-> Edit table then I got a screen with all the columns in the table
    where move column up and down column options are disabled.
    can someone help me with this.


    Thank you
    Harry

    Its not supported. In the database to insert a column in a specific location, you must re-create the table and SQL Developer team have, decided quite rightly, it is a step away.

    Remember in connection with the database column order is not serious.

  • How to read the .txt adfLib pot file to the model layer by using the relative path

    Hello

    In my application, I use the ExtendedDynamicFldTbl (extends weblogic.wtc.jatmi.DynamicFldTbl), which the manufacturer requires the field file path table as a parameter.

    In the API, it is said that this name of path can be an absolute path, a relative path to the directory where Java has started, or a relative path that can be found as a resource on the classpath.

    I have created this ExtendedDynamicFldTbl to the model layer project, placed the fild_tbl.txt in a separate package and pass the path relative to the DynamicFldTbl constructor.

    Given my code below to get the instance of ExtendedDynamicFldTbl
    package model.tuxedo;
    
    public class ExtendedFldTbl  extends DynamicFldTbl
    {
    
        private static ExtendedFldTbl extendedFldTblinstance = null;
        
        public ExtendedFldTbl(String tablePath, boolean flag)
        {
            super(tablePath, flag);
        }
        
        public static ExtendedFldTbl getInstance()
        {
            if (extendedFldTblInstance == null)
            {
                URL url = extendedFldTblInstance.class.getResource("resource/fldtbl.txt");
                if (url == null)
                {
                    throw new RuntimeException("Tuxedo Service : fldtbl.txt is not found in the path 'model.tuxedo.resource' ");
                }
                extendedFldTblInstance = new ExtendedFldTbl (url.getPath(), true);
                String[] list = extendedFldTblInstance .getFldNames();
                System.err.println("fldtbl loaded. Total FML entries loaded = " + list.length);
            }
            return extendedFldTblInstance ;
        }
    }
    I just added the output of the build of the layer model to view the project of the layer and tested. It works fine and I am able to get the ExtendedFldTbl instance with all loaded fields. But rather than add dependencies, if I create an adfLibJar for the layer model project and you add to view the project of the layer, it does not work. It is not ablt to read the file of adf lib jar file.

    Issues related to the:

    1. How can I solve this?
    2. Although I have kept the field text file table in the source of the project itself, when I read the url, it is
    "C:/Documents and Settings/raguramanv/Application Data/JDeveloper/system11.1.1.4.37.59.23/DefaultDomain/servers/DefaultServer/tmp/_WL_user/SampleWtc/3gkmt9/war/WEB-INF/lib/SampleWtc_Model_adflibSampleWtc1.jar!/model/tuxedo/resource/fldtbl.txt"
    Instead of the physical directory, how can I use application in model layer context?


    Thanks in advance

    Rambeau

    Hello

    Try /adf/ or /afr/ in the URL. Then includes the ADF resource loader which is used to get the contents of a lib of the ADF. Take a look at the structure of ADF library where the file is located in. It should be in a directory with /adf in the folder structure

    Frank

  • Cannot isolate the first layer without the second layer: Ai CS4

    I add the second layer and draw randomly of the paths, I then use curvilinear tool selection but it always activates the first layer, even if it is not highlighted.

    The only method that seems to work is if I turn off the first complete layer using "eye" icon, which is very time consuming.

    I just found that CS5 will be released April 12: he will address the issues that I am experiancing and qualify free update (I bought it a month ago, but have not yet registered)?

    function() {return A.apply (null, [this] .concat ($A (arguments)))}

    The only method that seems to work is if I turn off the first complete layer using "eye" icon, which is very time consuming.

    Do not hide the layer; You can only lock it. Alternatively, you can select the Mode of insulation enter the context menu of the layers.

    But your feature request is legitimate. Other programs provide a framework to activate only the active layer.

    JET

  • When I try to import the Favorites of IE using "Import Data from Other Browser" it is grayed out. Why is this?

    I'm trying to follow the instructions of the Firefox Help. Step 2 to import bookmarks is to select the option "Import data from another browser" in history-library-import and backup. However, this option is grayed out for me and I can't select it. Why is this grayed out? How can I make this?

    Make sure that you do not use Firefox mode of private - browsing using Firefox without saving history .

    • To view the history settings and cookies, choose: Firefox > Options > privacy, choose the setting Firefox will: use the custom settings for the story of
    • : Uncheck the [] "always use the private browsing mode.

    Now do-> Import Favorites to Internet Explorer

    Check and tell if its working.

    Not related to your problem, but your Plugins are out of date

    • Update all of your Firefox Plugins-> https://www.mozilla.org/en-US/plugincheck/
    • During the installation of the Plugins download files hotfix, remove the check mark to download any other software options with your Plugins (for example, toolbars, McAfee, Google Chrome, etc.)
  • How to import pictures in the excel worksheet without using the generation of reports

    Dear friends

    I want to know how to import the image or the image file in excel worksheet without using the generation of reports...

    Please come with suggestions or the code example

    Concerning

    Knani

    Please go through the link below

    http://zone.NI.com/DevZone/CDA/EPD/p/ID/3638

    Even if a Subvi is absent I think it will be useful for you.

    Concerning

    Rajesh nawal

  • a way to talk to the command prompt without using exec.vi system

    I had used exec.vi system in recent weeks to send commands to the command prompt and then bring back the exit in labview. All of a sudden this week the vi does not work and I can not even an exec.vi system output when I send the same commands that I sent before. I was wondering if there was another way to send & receive orders from the cmd prompt in labview without using exec system?


  • How to record what is happening by the sound card without using the microphone to avoid loss of quality.

    I tried, but there is no "Stereo mix" available options. There is only the (Conexant High Definition Audio) Microphone. It did not work. What I'll do is to buy a DVD for TV (tv Record program) burner and plug the hdmi cable from my computer to the DVD recorder and record what I want. After that, I just rip the audio from the file. I see no other option to do. I use windows vista Home premium.

    I would like to know how I can record the sound that is played by the soundcard using Vista without using the microphone as a source. Let's say the audio is played (audio stream) and I want to record this stream. There are many software that we can download that record what is happening in the microphone. The sound bounces off the speakers to the microphone. But when this happens, you lose a lot of the quality of the audio. So my question is if it is possible to record what is happening to the right of the sound card, before being sent to the sound card in order to avoid the loss of audio quality.

    ==============================
    Movie Maker has an option to record Narration...
    (Tools / tell the chronology). If you select stereo mix
    as the "Audio Input Source", you can save the
    Audio online. Your speakers and microphone are
    not required.

    And... maybe this link will help:

    How to record Internet radio stations on Windows Vista (using Audacity)
    http://www.ehow.com/how_4604071_record-Internet-radio-Windows-Vista.html John Inzer - MS - MVP - digital media experience

  • How to set the title panel without using the Manifest.xml

    Hello guys,.

    I would like to know how to the the title of the Panel without using the manifest file.

    A C++ plugin is responsible for the creation of a menu entry. .

    He is also responsible of loading-unloading the extension basic HTML code.

    So in my extension manifest file, the following line has been deleted:

    < menu > my Panel Extension 1 < / Menu >

    After doing this, my extension Panel has more no title.

    What I would do, it is programmatically set, she don't know how to do!

    Any help would be appreciated.

    THX,

    Thomas.

    I found the solution to my problem!

    To find out how, follow this link: https://forums.adobe.com/thread/1731552?sr=inbox

    Thomas.

  • How to find the list of the patches applied without using the inventory?

    Hello

    I asked this question once.
    How you will find the list of the patches applied to the House of Oracle database without using commands like opatch lsinventory - detal etc...
    I think that registry$ story is a view from where you can find the list of the applied patches.
    But I think that he understands all the bug fixes, stand alone or one-off patches. It will mainly list on the CPU patches applied (correct me if I'm wrong).

    Thank you
    Fany

    Salvation;

    Please read
    You can delete $ORACLE_HOME/.patch_storage Directory? [403218.1 ID]

    Respect of
    HELIOS

Maybe you are looking for