What's the usage of the associated columns?

In business model, logical columns are associated to a level of dimension. But the columns are nether primary key nor used for display. What's the purpose of these associated columns?

To flesh out our example a little more.
You have a Day Dim, and a Month Dim table. Your month name logical column is mapped to both tables via different Logical table sources. Your content levels are set accordingly for those LTS's.
You have a fact table at grain Day and an aggregated fact table at grain Month. You have a measure (dollars, quantity, whatever) mapped to both physical tables through two LTS's with content levels set (like the Time Dimension).
So when you query Month Name and Dollars, the BI Server uses the aggregate table as it can serve up both the dimension attribute and the measure from the aggregate table. It knows its more efficient because the ratio of the number of elements you defined in the hierarchy tells it that there is approx 30 times less data in the month aggregate, by the ratio of 12 months to 365 days.
So far so good.
Lets introduce more dimensions, a.n.other dimension is joined to the base fact table but is NOT in the Month aggregate. You model it all as per normal, when you drop this extra dimension into your report, the BI Server recognises that there are no aggregate sources that can give the correct answer across all required fields in the report so drops to the next best fit at the grain requested in the report, in this simple case it would default back to the base fact table as that is the only fact table capable of serving up the month and any attributes from the other dimension. In more complex models you might have a few aggregate tables with both higher grain (higher levels) or less dimensionality (less rows). The existance of physical layer joins tell the BI Server what can be joined for the correct dimensionality, the setting of LTS levels tells it which aggregate tables would be more efficient.
Dont get confused with setting a level on a measure - thats something different (level based totals, % of Year etc. etc)
Got it?
These might help :
http://gerardnico.com/wiki/dat/obiee/fragmentation_level_based
http://www.rittmanmead.com/2006/11/aggregate-navigation-using-oracle-bi-server/
http://obiee101.blogspot.com/2008/11/obiee-making-it-aggregate-aware.html
let us know if any more Q's.

Similar Messages

  • Is there any commercial support for LCCS services? What are the associated SLAs

    Hi,
    Following are some queries regarding LCCS.
    Is there any commercial support for LCCS services? What are the associated SLAs of the support and the cost?
    Can I Using applications developed using LCCS for commercial purpose?
    Does Adobe allows its LCCS service customers to offer applications developed using LCCS API for 3rd party commercial usage.
    Thanks & Regards
    Amit

    Hi,
    We were selling LCCS to enterprise customer under a different licensing program, but have since stopped the sale of that.
    You should check out this thread - http://forums.adobe.com/message/4110049#4110049 for a discussion on this.
    Jeff

  • What is the key column name and value column name in JDBC Adapter parameter

    Hi
    Can any one please tell me what is the Key Column Name and Key Column Value in JDBC adatper parameters. If i dont mention those parameters i am getting the following error
    <b> Value missing for mandatory configuration attribute tableEOColumnNameId</b>
    Please help me
    Best Regards
    Ravi Shankar B

    Hi
    I am doing DataBase Lookup in XI
    First i have created a  Table in Database( CheckUser) which has two fields UserName and PhoneNumber and then i have created
    I have created one Communication Channel For Reciever Adapter .
    I have given the parameters like this
    JDBC Driver : com.microsoft.jdbc.sqlserver.SQLServerDriver
    Connection : jdbc:microsoft:sqlserver://10.7.1.43:1433;DatabaseName=Ravi;
    UserName.... sa
    password.... sa
    persistence : Database
    Database Table Name : CheckUser
    Key column name and Value column name i left blank and activated
    and then
    I have created
    Data Types : Source ...... UserName
                      Destination.... PhoneNumber
    Message Types
    Message Interfaces
    In Message Mapping
                  I have created one User Defined function DBProcessing_SpecialAPI().This method will get the data from the database....
    In this function i have written the following code
       //write your code here
    String query = " ";
    Channel channel = null;
    DataBaseAccessor accessor = null;
    DataBaseResult resultSet = null;
    query = "select Password from CheckUser where UserName = ' " +UserName[0]+ " '  ";
    try {
         channel = LookupService.getChannel("Ravi","CC_JDBC");
         accessor = LookupService.getDataBaseAccessor(channel);
         resultSet = accessor.execute(query);
         for(Iterator rows = resultSet.getRows();rows.hasNext();){
              Map  rowMap = (Map)rows.next();
              result.addValue((String)rowMap.get("Password"));
    catch(Exception e){
         result.addValue(e.getMessage());
    finally{
         try{
              if(accessor != null)
                   accessor.close();
         }catch(Exception e){
              result.addValue(e.getMessage());
    And the i have mapped like this
    UserName -
    > DBProcessing_SpecialAPI----
    >PhoneNumber
    when i am testing this mapping i am getting the following error
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Dest_JDBC_MT xmlns:ns0="http://filetofilescenario.com/ilg"><phoneNumber>Plain exception:Problem when calling an adapter by using communication channel CC_JDBC (Party: , Service: Ravi, Object ID: c360bc139a403293afbc49d5c46e4478) Check whether the communication channel exists in the Integration Directory; also check the cache notifications for the instance Integration Server (central Adapter-Engine) Channel object with Id Channel:c360bc139a403293afbc49d5c46e4478 not available in CPA Cache.
    com.sap.aii.mapping.lookup.LookupException: Problem when calling an adapter by using communication channel CC_JDBC (Party: , Service: Ravi, Object ID: c360bc139a403293afbc49d5c46e4478) Check whether the communication channel exists in the Integration Directory; also check the cache notifications for the instance Integration Server (central Adapter-Engine) Channel object with Id Channel:c360bc139a403293afbc49d5c46e4478 not available in CPA Cache.
         at com.sap.aii.ibrun.server.lookup.AdapterProxyLocal.<init>(AdapterProxyLocal.java:61)
         at com.sap.aii.ibrun.server.lookup.SystemAccessorInternal.getProxy(SystemAccessorInternal.java:98)
         at com.sap.aii.ibrun.server.lookup.SystemAccessorInternal.<init>(SystemAccessorInternal.java:38)
         at com.sap.aii.ibrun.server.lookup.SystemAccessorHmiServer.getConnection(SystemAccessorHmiServer.java:270)
         at com.sap.aii.ibrun.server.lookup.SystemAccessorHmiServer.process(SystemAccessorHmiServer.java:70)
         at com.sap.aii.utilxi.hmis.server.HmisServiceImpl.invokeMethod(HmisServiceImpl.java:169)
         at com.sap.aii.utilxi.hmis.server.HmisServer.process(HmisServer.java:178)
         at com.sap.aii.utilxi.hmis.web.HmisServletImpl.processRequestByHmiServer(HmisServletImpl.java:296)
         at com.sap.aii.utilxi.hmis.web.HmisServletImpl.processRequestByHmiServer(HmisServletImpl.java:211)
         at com.sap.aii.utilxi.hmis.web.workers.HmisInternalClient.doWork(HmisInternalClient.java:70)
         at com.sap.aii.utilxi.hmis.web.HmisServletImpl.doWork(HmisServletImpl.java:496)
         at com.sap.aii.utilxi.hmis.web.HmisServletImpl.doPost(HmisServletImpl.java:634)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    </phoneNumber></ns0:Dest_JDBC_MT>
    In RWB i have checked the status of JDBC driver its showing the following error
    <b>Value missing for mandatory configuration attribute tableEOColumnNameId</b>
    Best Regards
    Ravi Shankar B
    Message was edited by:
            RaviShankar B

  • What is the best column width & font size for an ipad magazine

    I'm creating a magazine that will be shown on the ipad I was wondering what is the best column width and font size to use. If someone has any suggestions I'd love the help.
    thanks,

    You should know how you publish it and what the technical limitations of each type are.
    No one can or will give you any advise to use this or that font. Make several drafts, try it, pass on several drafts to testers and get response.
    If you work with styles, it is then easy for you to change it to the best result with a few clicks.
    Normally a column width with 37 to 45 letters I would personally suggest to be the best width, but opinions are very different on it. The more letters in a line the less readability is given, the less letters the more difficulty you will have to get an even grey factor. (I mean that through space between words some lines become bright others dark, which does not look so fine, I don't know the English technical term for that.)

  • Is there anyway to tell what is the database column behind the form field (

    Is there anyway to tell what is the database column behind the form field (in Oracle financials).

    If you are lucky, it can be simple, but if you are unlucky, it can be very complicated.
    Using Help > Diagnostics > Examine when in the field will give you the name of the field.
    Help > Diagnostics > Examine (Block: SYSTEM / Field: LAST_QUERY) will give you the query for the last block queried, which may or may not be the block you want, depending on how the form is defined (ie Master Detail relationships). If this is for the correct block and the field name is one of the columns returned by the query, then that is probably your answer.
    If the Last Query is not for the correct block, using Help > Record History will give you the table or view that the block is based on (only where there is already a record in the block).
    If the field name matches a column name in the table or view, then that is probably where it comes from. If there is no matching column name in the table or view, then the field is probably not queried directly from the database as part of the main query - it is probably populated by logic in the form, like the POST-QUERY trigger on the block. This means you need to open the form in Forms Builder to find what is populating your field (Program > Find and Replace PL/SQL is very handy for this).

  • What sets the 'Kind' column in Finder windows?

    Since installing Snow leopard, I have been finding that just inserting a flash card containing Olympus raw image files into a USB card reader and displaying the contents, shows a strange phrase in the Kind column: "Lightzone transform format".
    Lightzone is one of several photo processing applications in my Applications folder, but the same column used to show the more general "Olympus raw file" in the Kind column.
    This is causing me trouble when I set iPhoto to use an external editor.

    I tried this, and first I was encouraged, and then I was disappointed.
    I shut down all running programs and then did the terminal operation you recommended. Then I restarted.
    I then put a flash card in a reader abnd opened it in the Finder. I was relieved to see that the Kind column read "Olympus raw file" as it should. I then set up iPhoto to use Olympus Stdio 2 as the external editor. I imported this set of image files (all of them on the card) into iPhoto, and then double-clicked one.
    I saw a message window with the following: The document P1234.ORF could not be opened. Olympus Studio 2 cannot open files in the "Preview.app Document" format.
    This turn of events was the whole reason that I needed to correct this symptom (the wrong label in the Kind column, I thought). Note that I had in the past used the Information panel on a .ORF file to change 'Open with' to preview.app. but I had hoped that this Terminal operation would have kept this from propagating to these new files, that had never been opened in Preview, but only imported ointo iPhoto.

  • What is the Location column in Thunderbird?

    What I *want* it to be is the folder the e-mail is currently stored in, when I am looking at my search folders, like _All Mail_ or _With Attachments_. As it is, it seems to *always* be empty. What is it?

    Well, I would *like* it to do something useful, but currently it just shows as empty. It isn't enabled by default - I enabled it to see if it will serve my needs. If someone could tell me what its purpose is, and under what circumstances it contains any data at all, then I would know if I could make it serve my purpose.
    What I *need* is a column that tells me where the e-mail is located (or, in the case of GMail, what tags are associated with the e-mail, which Thunderbird treats as "Folders")

  • What is the association between JMS Server and JMS Module in weblogic 10?

    Hi,
    I have a created a ConnectionFactory, Queue, Topic under JMS Modules in Weblogic Server 10 using admin console.
    And I have created a JMS Server and Targetted to the current running server (Admin Server).
    But when I run the Queue Sender program it is unable to LookUP the jndi which I gave for Queue.
    queue = (Queue) initialContext.lookup("jndi_queue");
    Exception:
    javax.naming.NameNotFoundException: Unable to resolve 'jndi_queue'.
    But I configured this jndi name when I create the Queue in JMS Module in Weblogic Server 10.
    How JMS Module and JMS server are associated.
    My Doubt is if i have several JMS Modules and only one JMS Server created then how does the JMS Server identifies which Queue/Topic belongs to which JMS Module????
    Please advice.
    Thanks....

    Hi,
    Once you have JMS servers configured:
    Step 1: Target the JMS configuration module to the cluster that will host the destination, or, if not using clustering, target the module to the individual WL server that will host the JMS server.
    Step 2: Configure a "subdeployment" for the module and set it to reference the exact JMS server(s) that will host the destination. If you're using a distributed desitnation, you can specify multiple JMS servers, if you're using a regular destination, only specify a single destination.
    Step 3: Create a destination resource in the module, and set its subdeployment to the subdeployment you specified in step 1 (the console calls this "advanced targeting"). As a best practice avoid the "default targeting" option for the resource - always choose subdeployment (advanced) targeting.
    For more information, reference the "best practices" chapter of the JMS configuration guide:
    http://download.oracle.com/docs/cd/E14571_01/web.1111/e13738/best_practice.htm#CACJCGHG
    I also I highly recommend the JMS chapter of the book "Professional Oracle WebLogic".
    Hope this helps,
    Tom

  • What does the ASH column TOP_LEVEL_SQL_OPCODE decode to?

    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production running on Linux x64
    Does anyone have the decoding for the TOP_LEVEL_SQL_OPCODE in V$ACTIVE_SESSION_HISTORY ?
    The server reference says "Indicates what phase of operation the top level SQL statement was in"
    Does anyone know if this is meaningful data?
    Here is an example from my system:
    SQL>select ash.TOP_LEVEL_SQL_OPCODE, count(
      2  from v$active_session_history ash
      3  group by ash.TOP_LEVEL_SQL_OPCODE
      4  order by 2 desc;
    TOP_LEVEL_SQL_OPCODE   COUNT(*)
                       3      23981
                      47       9191
                     189       7840
                       0       6450
                       6       5937
                       2        278
                       7        144
                     170         71
                      97         70
                      96         11
                      55         10
                      94          9
                       1          7
                       9          4
                      85          1
                     174          1
                      15          1
                      12          1

    is this making sense?
    SQL> select action, name from audit_actions
      2  where action in ( 3,47,189,0,6,2,7,170,97,96,55,94,1,9,85,174,15,12);
        ACTION NAME
             0 UNKNOWN
             1 CREATE TABLE
             2 INSERT
             3 SELECT
             6 UPDATE
             7 DELETE
             9 CREATE INDEX
            12 DROP TABLE
            15 ALTER TABLE
            47 PL/SQL EXECUTE
            55 SET ROLE
        ACTION NAME
            85 TRUNCATE TABLE
            94 CREATE PACKAGE
            96 DROP PACKAGE
            97 CREATE PACKAGE BODY
           170 CALL METHOD
           174 CREATE DIMENSION
    17 rows selected.Amiel

  • What is the ReplacesDialogIDTime column used for in the CDR database?

    I have been writing some reports using SQL aganist the Lync CDR database - looking mainly at the SessionDetails and VoipDetails tables.
    I have come across some instances where the duration of the call (session start - session end) is not acurrate, but I can see other records in the sessiondetails table with the replacesdialogidTime is the same as the SessionIDTime in the original record. 
    Does anyone know why Lync does this and why ?
     

    There is no HashCode class in Coherence (at least I cannot find one in the 3.5.2 jar).
    I can only assume you actually mean the hashCode method, which is part of standard Java and is declared on the Object class that every class inherits from. It is actually quite important to understand how to implement it properly if you are going to override this method in your classes (which you probably should in domain objects). Try reading this which I pulled at random from Google: http://www.ibm.com/developerworks/java/library/j-jtp05273.html
    JK.

  • On the main window, what is the column to the left of client status icon?

    on the main window (ARD version 3), what is the narrow column immediately to the left of the column with client status icon? (The columns to the right of the client status icon are Name, IP address, DNS name, ARD version, and so on)? I can't find this mentioned anywhere in the Remote Desktop manual.
    That column is blank next to all the computers except one, which has a blue (aqua) circle.
    PowerMacG5dual1.8GHz   Mac OS X (10.4.8)  

    I have now managed to reproduce the blue (aqua-looking) ball. Just as I had at work, I installed ARD v. 3. on a machine on my home LAN, once again setting it up as the administrator machine. To install the client on another machine in the LAN, I then chose the "Upgrade Client Software" option. I entered the username and password of an admin user on that machine, hit "Upgrade" and the installation appeared to go successfully. Upon returning to the Scanner (main) window on my administrator machine, I noticed the blue ball in that first column next to the name of the machine with the newly updated client software.
    Was there anything in common between the one machine at work with a blue ball in that column and the one machine at home with the blue ball? The only thing I can think of is that on neither of those 2 machines had I ever manually installed ARD 2.2 client previously. Does that make any sense?

  • Association columns in DocumentSet

    There are two content types - 'DocSets' for the document set and 'Docs' for the documents inside it. 'Docs' content type consists of two columns: 'Title' and 'Document Type' (Choice)
    I created a reusable workflow and associated it with 'DocSets' content type. Then I created association column 'Document Type' from the 'Docs' content type to use it further in workflow.
    When I try to use command 'Wait for Document Type to equal Agreement' nothing happens. Only the following record in history: 'Waiting on Document Type'
    What I'm doing wrong? How can I use results of the association column?
    Thanks

    Hi,
    I try to add the “Document Type 3” column to the “Docs” document content type, and then use the “Docs” content type in the “Test DocSet”.
    However, if we open the Library Setting, under Columns, we can see that the “Document Type 3” column is used in “Docs”.
    We can create Reusable Workflow associated with the 'Test DocSet' Content Type as below:
    The result is as below:
    We can see that the value of the “Document Type 3” column in current item is blank.
    However, we cannot change its value because it is only used in “Docs”.
    In the other word, no matter how we can the value of the “Document Type 3” column in the “Docs”, the “Document Type 3” column in current item remain blank.
    So the status of workflow will be “In Progress” to wait on Document Type 3 and it cannot log the message.
    Thank you for your understanding.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Association Columns in Sharepoint 2013 Reusable Workflow

    at http://msdn.microsoft.com/en-us/library/jj728659.aspx it says Association columns are not available in Sharepoint 2013 Workflow 
    But http://msdn.microsoft.com/en-us/library/dn292551.aspx#bkm_07 is suggesting to use Association columns in Sharepoint Server 2013. Doesn't Sharepoint Server 2013 uses Sharepoint 2013
    Workflows?
    Cheers, IXI solution

    Hi,
    According to your description, my understanding is that you want to know if the Association Columns can be used in SharePoint 2013 workflow.
    Per my knowledge, the Association Columns feature is available only on the SharePoint 2010 Workflow platform.
    The article in the link
    http://msdn.microsoft.com/en-us/library/dn292551.aspx#bkm_07 introduces the best practices for developers using Visual Studio to create workflows in SharePoint 2013.
    We can create 2010 workflows in SharePoint 2013 and we can use the
    Association Columns feature in SharePoint 2010 workflows.
    We can also integrate features from the SharePoint 2010 Workflow platform into the new SharePoint 2013 Workflow platform.
    To do this, create a SharePoint 2010 Workflow by choosing the SharePoint 2010 Workflow platform; create a SharePoint 2013 Workflow by choosing the SharePoint 2013 Workflow platform; and then use the
    Start a list workflow and Start a site workflow actions in the SharePoint 2013 Workflow to call the SharePoint 2010 Workflow.
    If you have any questions, please feel free to reply.
    Thanks
    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.

  • SPD 2010 Workflow: Issue with Associated Column

    We have a SP2010 Workflow that is attached to a Content Type and mapped in the Retention Policy settings. This workflow uses a DateTime column which is used within the Workflow and hence the DateTime column is used within the Workflow as an Associated Column.
    The issue being faced is that when we manually run the workflow, it runs successfully and is able to get the value of the associated column. When the Retention Timer job starts the workflow, we find that the Workflow is not able to get the value of the Associated
    Column (this we realized by logging messages to a List).
    Any pointers/guidance on how to overcome this issue is much appreciated.
    Blog: http://dotnetupdate.blogspot.com |

    Thanks for the suggestions. 
    From the debugging there is no issue from a functionality perspective or the date calculations. It works perfectly well when we manually run the workflow or if I set the workflow to start when an item is uploaded.
    The behavior is different when the same workflow is getting triggered from a Retention Policy as a Stage. Is this something to do with access permissions or security context when a SPD 2010 Workflow gets triggered by a Timer Job/Retention Policy? 
    Regards,
    Vikram
    Blog: http://dotnetupdate.blogspot.com |

  • What is the significance of "cost" column in explain plan

    Hi,
    Can anyone explain what is the meaning of the values which we get in the cost column in the explain plan..For Ex : Cost : 4500 . What does this value mean...and is it measured in which form of units...i mean seconds,nanoseconds etc

    kingfisher,
    Ok one more link for you but I shall quote the text also here,
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14211/optimops.htm#i82005
    The cost is an estimated value proportional to the expected resource use needed to execute the statement with a particular plan. The optimizer calculates the cost of access paths and join orders based on the estimated computer resources, which includes I/O, CPU, and memory.
    And few paragraphs down,
    13.4.1.3.3 Cost
    The cost represents units of work or resource used. The query optimizer uses disk I/O, CPU usage, and memory usage as units of work. So, the cost used by the query optimizer represents an estimate of the number of disk I/Os and the amount of CPU and memory used in performing an operation. The operation can be scanning a table, accessing rows from a table by using an index, joining two tables together, or sorting a row set. The cost of a query plan is the number of work units that are expected to be incurred when the query is executed and its result produced.
    The access path determines the number of units of work required to get data from a base table. The access path can be a table scan, a fast full index scan, or an index scan. During table scan or fast full index scan, multiple blocks are read from the disk in a single I/O operation. Therefore, the cost of a table scan or a fast full index scan depends on the number of blocks to be scanned and the multiblock read count value. The cost of an index scan depends on the levels in the B-tree, the number of index leaf blocks to be scanned, and the number of rows to be fetched using the rowid in the index keys. The cost of fetching rows using rowids depends on the index clustering factor. See "Assessing I/O for Blocks, not Rows".
    The join cost represents the combination of the individual access costs of the two row sets being joined, plus the cost of the join operation.
    Now I guess if you read this part, it should be pretty clear what cost is.Cost is an evlaution of the resource that is estimated by Oracle for every step incurred in the uery execution.There are no of steps and each may involve doing IO,consuming CPU and/or using memory.Cost is a factor which oracle uses combining all of these 3 (depending on the version) together to propose the work done or expected to be done in exeuting a query.So this actualy should represent the time spent exactly on each and every step.That's what the objective frm cost is.But at the moment,this is not there.There amy be a situation that cost is shown as very high but query is working fine.There are woraround which can bring the cost down for example using and tweaking optimizer_index_cost_adj parameter , we can propose oracle regarding our indexes and it may pick up lesser cost evaluation.What is mentioned is that this model is becoming more and more mature and in the next releases, we may see that cost is representing exactly the time that we would spend inthe query.At the moment,its not there.So as Chris mentioned,Tuning for low cost only is not a good way.
    I suggest you grab a copy of JL's book.He has explained it much better in his book.
    Hope I said some thing useful.
    Aman....

Maybe you are looking for

  • Can't view my data on my table in EM

    Can anyone tell me why I am getting the error below after executing my control file and also why I can't view that data which was loaded. SQL*Loader: Release 10.2.0.1.0 - Production on Thu Jul 12 16:28:57 2007 Copyright (c) 1982, 2005, Oracle. All ri

  • Getting runtime error in ALV ...

    Hi, I am calling function REUSE_ALV_GRID_DISPLAY to display my data in an ALV grid... this code was working fine and so I used it for a different set of data but now it is throwing a runtime error saying .. GETWA_NOT_ASSIGNED Field symbol has not yet

  • VdBench "thread=" parameter in SNIA hband workload

    Hi, Could anyone help me understand how VdBench interprets configuration file parameters within hband RunDefinition (from SNIA specifications for Energy Efficient Storages)? More precisely, I can't understand how VdBench creates IO threads for slaves

  • File Adapter determining file size

    I have added a Header Variable to my Receive activity so that I can capture the size of the file coming in. I've also added a "size" element to the InboundFileHeader.wsdl. I can't figure out how to populate that header variable! I was hoping it would

  • Cant download creative cloud or other apps

    I tried to download the trial of Illustrator and it states "You are running an operating system that Illustrator no longer supports. Refer to the system requirements for a full list of supported platforms".  So I tried to download creative cloud and