MDX queries that used to work on SSAS 2008 not working on 2012

Hello,
We are still using the old PerformancePoint planning server which is writing MDX queries against a SSAS 2012 at this time.   What used to work against SSAS 2008 is now having issues.   I captured a profile and the part of the query which
generates the error is this error:  The '' calculated member cannot be created because a calculated member with the same name already exists.    What has changed in SSAS 2012 where this would not work anymore?;  is there anyway to
make the 2012 environment work with this code again?.   The code generation is out of my control so I need to find a way to enable backwards compatibility with the way the tool generates the MDX statements.
WITH
  MEMBER [Account].[Staffing_V3].[] AS ""
  MEMBER [Account].[Staffing_V3].[] AS ""
  MEMBER [Account].[Staffing_V3].[] AS ""
  MEMBER [Account].[Staffing_V3].[] AS ""
  MEMBER [Account].[Staffing_V3].[] AS ""
  MEMBER [Account].[Staffing_V3].[] AS ""
  MEMBER [Account].[Staffing_V3].[] AS ""
  MEMBER [Account].[Staffing_V3].[] AS ""
  MEMBER [Account].[Staffing_V3].[] AS ""
  MEMBER [Account].[Staffing_V3].[] AS ""
  MEMBER [Account].[Staffing_V3].[] AS ""
  MEMBER [Account].[Staffing_V3].[] AS ""
  MEMBER [Account].[Staffing_V3].[] AS ""
  MEMBER [Account].[Staffing_V3].[] AS ""
Thanks,
Matt

Hi Matt,
According to your description, the MDX query which has the duplicate calculated member name can run success with out any problems in SSAS 2008, however the same query cannot work in SSAS2012 with the error below, right?
The '' calculated member cannot be created because a calculated member with the same name already exists.
I have tested it on my local environment, and the result turn out that this is the default change by Microsoft from SSAS 2008 R2 version. And I am afraid there is no any workarounds run this similar query in SSAS 2012. So in your scenario, you
need to remove the duplicate members in the query.
Thank you for your understanding.
Regards,
Charlie Liao
TechNet Community Support

Similar Messages

  • My MacBook used to play DVDs. I've tried several that used to work on this computer but none work now.

    My MacBook used to play DVDs. I've tried several that used to work on this computer, but none work now. How can I get my MacBook to play DVDs?

    You might need to update the remote application. i know there was a bug when the 5.2 update was released that caused an issue with the remote app. Apple released an update the following day for the remote app.
    Jesse

  • .SWF that used to work on Captivate 4 not working on 5!

    Hi,
    I have two .sfw files that used to work fine on Captivate 4 but won't work on Captivate 5.
    One is a pause button, and the other is a video.
    I only have the .swf files for both.
    Please help!
    Andressa

    Captivate 5 does handle certain SWF files differently to Captivate 4.  These SWF files are usually ones that use nested symbols rather than having all animation on the main timeline.  The only way to fix the issue (that I know of) is to have access to the original source files used to create the SWFs and make changes there.  Sorry.

  • I have a canon multifunction printer that used to work with snow leopard but since I updated to mountain lion my printer stop working, How do I make it work again?

    I have a canon multifunction printer that used to work with snow leopard but since I updated to mountain lion it stoped working. How do I make it work again?

    This problem is not unheard of when upgrading from Snow Leopard. It is usually solved by completely deleting the existing printer in System Preferences > Print & Scan, and adding it again.

  • Can I share queries that use Web.Contents() need ApiKeyName at Power BI ?

    Can I share queries that use Web.Contents() need ApiKeyName at Power BI ?
    I want to share queries at Power BI.
    These queries include Web.Contents function.
    And Web.Contents function have ApiKeyName for Web API authentication.
    Ex:
    Web.Contents("http://jlp.yahooapis.jp/KeyphraseService/V1/extract", [ Query=[ #"sentence"=t2 ], ApiKeyName="appid" ])
    I try share this queries to Power BI.
    But I cannot use this query at the other excel workbook.
    Regards,
    Yoshihiro Kawabata

    Ok that makes sense. Thank you for the translation! That error isn't specific to your use of an API key. It is hitting our privacy firewall feature. There is more information here:
    http://office.microsoft.com/en-us/excel-help/privacy-levels-HA104009800.aspx
    I encourage you to read that help document to get the full information, but basically it's saying that you're trying to combine two datasources and Power Query doesn't know the relative privacy level of each source. We need that info so we can make sure
    that we don't leak private data out to the world.
    The error message suggests that you build the query from scratch. When you do that, you'll get prompted for the privacy levels of each source and you won't have this problem. If you want to reuse this query without rebuilding it and you're absolutely sure
    that none of the data involved is private, you can disable the privacy firewall by clicking the Fast Combine button. That's located in the Power Query ribbon in Excel in the Workbook Settings group. (Sorry I don't know what that is called in Japanese.)

  • How to improve speed of queries that use ORM one table per concrete class

    Hi,
    Many tools that make ORM (Object Relational Mapping) like Castor, Hibernate, Toplink, JPOX, etc.., have the one table per concrete class feature that maps objects to follow structure:
    CREATE TABLE ABSTRACTPRODUCT (
        ID VARCHAR(8) NOT NULL,
        DESCRIPTION VARCHAR(60) NOT NULL,
        PRIMARY KEY(ID)
    CREATE TABLE PRODUCT (
        ID VARCHAR(8) NOT NULL REFERENCES ABSTRACTPRODUCT(ID),
        CODE VARCHAR(10) NOT NULL,
        PRICE DECIMAL(12,2),
        PRIMARY KEY(ID)
    CREATE UNIQUE INDEX iProduct ON Product(code)
    CREATE TABLE BOOK (
        ID VARCHAR(8) NOT NULL REFERENCES PRODUCT(ID),
        AUTHOR VARCHAR(60) NOT NULL,
        PRIMARY KEY (ID)
    CREATE TABLE COMPACTDISK (
        ID VARCHAR(8) NOT NULL REFERENCES PRODUCT(ID),
        ARTIST VARCHAR(60) NOT NULL,
        PRIMARY KEY(ID)
    there is a way to improve queries like
    SELECT
        pd.code CODE,   
        abpd.description DESCRIPTION,
        DECODE(bk.id,NULL,cd.artist,bk.author) PERSON
    FROM
        ABSTRACTPRODUCT abpd,
        PRODUCT pd,
        BOOK bk,
        COMPACTDISK cd
    WHERE
        pd.id = abpd.id AND
        bk.id(+) = abpd.id AND
        cd.id(+) = abpd.id AND
        pd.code like '101%'
    or like this:
    SELECT
        pd.code CODE,   
        abpd.description DESCRIPTION,
        DECODE(bk.id,NULL,cd.artist,bk.author) PERSON
    FROM
        ABSTRACTPRODUCT abpd,
        PRODUCT pd,
        BOOK bk,
        COMPACTDISK cd
    WHERE
        pd.id = abpd.id AND
        bk.id(+) = abpd.id AND
        cd.id(+) = abpd.id AND
        abpd.description like '%STARS%' AND
        pd.price BETWEEN 1 AND 10
    think in a table with many rows, then exists something inside MaxDB to improve this type of queries? like some anotations on SQL? or declare tables that extends another by PK? on other databases i managed this using Materialized Views, but i think that this can be faster just using PK, i'm wrong? the better is to consolidate all tables in one table? what is the impact on database size with this consolidation?
    note: with consolidation i will miss NOT NULL constraint at database side.
    thanks for any insight.
    Clóvis

    Hi Lars,
    i dont understand because the optimizer get that Index for TM at execution plan, and because dont use the join via KEY column, note the WHERE clause is "TM.OID = MF.MY_TIPO_MOVIMENTO" by the key column, and the optimizer uses an INDEX that the indexed column is ID_SYS, that isnt and cant be a primary key, because its not UNIQUE, follow the index columns:
    indexes of TipoMovimento
    INDEXNAME     COLUMNNAME          SORT     COLUMNNO     DATATYPE     LEN     INDEX_USED     FILESTATE     DISABLED
    ITIPOMOVIMENTO     TIPO               ASC     1          VARCHAR          2     220546          OK          NO
    ITIPOMOVIMENTO     ID_SYS               ASC     2          CHAR          6     220546          OK          NO
    ITIPOMOVIMENTO     MY_CONTA_DEBITO          ASC     3          CHAR          8     220546          OK          NO
    ITIPOMOVIMENTO     MY_CONTA_CREDITO     ASC     4          CHAR          8     220546          OK          NO
    ITIPOMOVIMENTO1     ID_SYS               ASC     1          CHAR          6     567358          OK          NO
    ITIPOMOVIMENTO2     DESCRICAO          ASC     1          VARCHAR          60     94692          OK          NO
    after i create the index iTituloCobrancaX7 on TituloCobranca(OID,DATA_VENCIMENTO) in a backup instance and get surprised with the follow explain:
    OWNER     TABLENAME     COLUMN_OR_INDEX          STRATEGY                    PAGECOUNT     
         TC          ITITULOCOBRANCA1     RANGE CONDITION FOR INDEX          5368     
                   DATA_VENCIMENTO               (USED INDEX COLUMN)          
         MF          OID               JOIN VIA KEY COLUMN               9427     
         TM          OID               JOIN VIA KEY COLUMN               22     
                                  TABLE HASHED          
         PS          OID               JOIN VIA KEY COLUMN               1350     
         BOL          OID               JOIN VIA KEY COLUMN               497     
                                       NO TEMPORARY RESULTS CREATED          
         JDBC_CURSOR_19                    RESULT IS COPIED   , COSTVALUE IS     988
    note that now the optimizer gets the index ITITULOCOBRANCA1 as i expected, if i drop the new index iTituloCobrancaX7 the optimizer still getting this execution plan, with this the query executes at 110 ms, with that great news i do same thing in the production system, but the execution plan dont changes, and i still getting a long execution time this time at 413516 ms. maybe the problem is how optimizer measure my tables.
    i checked in DBAnalyser that the problem is catalog cache hit rate (we discussed this at [catalog cache hit rate, how to increase?|;
    ) and the low selectivity of this SQL command, then its because of this that to achieve a better selectivity i must have an index with, MF.MY_SACADO, MF.TIPO and TC.DATA_VENCIMENTO, as explained in previous posts, since this type of index inside MaxDB isnt possible, i have no choice to speed this type of query without changing tables structure.
    MaxDB developers can develop this type of index? or a feature like this dont have any plans to be made?
    if no, i must create another schema, to consolidate tables to speed queries on my system, but with this consolidation i will get more overhead, i must solve the less selectivity because i think if the data on tables increase, the query becomes impossible, i see that CREATE INDEX supports FUNCTION, maybe a   FUNCTION that join data of two tables can solve this?
    about instance configuration it is:
    Machine:
    Version:       '64BIT Kernel'
    Version:       'X64/LIX86 7.6.03   Build 007-123-157-515'
    Version:       'FAST'
    Machine:       'x86_64'
    Processors:    2 ( logical: 8, cores: 8 )
    data volumes:
    ID     MODE     CONFIGUREDSIZE     USABLESIZE     USEDSIZE     USEDSIZEPERCENTAGE     DROPVOLUME     TOTALCLUSTERAREASIZE     RESERVEDCLUSTERAREASIZE     USEDCLUSTERAREASIZE     PATH     
    1     NORMAL     4194304          4194288          379464          9               NO          0               0               0               /db/SPDT/data/data01.dat     
    2     NORMAL     4194304          4194288          380432          9               NO          0               0               0               /db/SPDT/data/data02.dat     
    3     NORMAL     4194304          4194288          379184          9               NO          0               0               0               /db/SPDT/data/data03.dat     
    4     NORMAL     4194304          4194288          379624          9               NO          0               0               0               /db/SPDT/data/data04.dat     
    5     NORMAL     4194304          4194288          380024          9               NO          0               0               0               /db/SPDT/data/data05.dat
    log volumes:
    ID     CONFIGUREDSIZE     USABLESIZE     PATH               MIRRORPATH
    1     51200          51176          /db/SPDT/log/log01.dat     ?
    parameters:
    KERNELVERSION                         KERNEL    7.6.03   BUILD 007-123-157-515
    INSTANCE_TYPE                         OLTP
    MCOD                                  NO
    _SERVERDB_FOR_SAP                     YES
    _UNICODE                              NO
    DEFAULT_CODE                          ASCII
    DATE_TIME_FORMAT                      ISO
    CONTROLUSERID                         DBM
    CONTROLPASSWORD                       
    MAXLOGVOLUMES                         2
    MAXDATAVOLUMES                        11
    LOG_VOLUME_NAME_001                   /db/SPDT/log/log01.dat
    LOG_VOLUME_TYPE_001                   F
    LOG_VOLUME_SIZE_001                   6400
    DATA_VOLUME_NAME_0005                 /db/SPDT/data/data05.dat
    DATA_VOLUME_NAME_0004                 /db/SPDT/data/data04.dat
    DATA_VOLUME_NAME_0003                 /db/SPDT/data/data03.dat
    DATA_VOLUME_NAME_0002                 /db/SPDT/data/data02.dat
    DATA_VOLUME_NAME_0001                 /db/SPDT/data/data01.dat
    DATA_VOLUME_TYPE_0005                 F
    DATA_VOLUME_TYPE_0004                 F
    DATA_VOLUME_TYPE_0003                 F
    DATA_VOLUME_TYPE_0002                 F
    DATA_VOLUME_TYPE_0001                 F
    DATA_VOLUME_SIZE_0005                 524288
    DATA_VOLUME_SIZE_0004                 524288
    DATA_VOLUME_SIZE_0003                 524288
    DATA_VOLUME_SIZE_0002                 524288
    DATA_VOLUME_SIZE_0001                 524288
    DATA_VOLUME_MODE_0005                 NORMAL
    DATA_VOLUME_MODE_0004                 NORMAL
    DATA_VOLUME_MODE_0003                 NORMAL
    DATA_VOLUME_MODE_0002                 NORMAL
    DATA_VOLUME_MODE_0001                 NORMAL
    DATA_VOLUME_GROUPS                    1
    LOG_BACKUP_TO_PIPE                    NO
    MAXBACKUPDEVS                         2
    LOG_MIRRORED                          NO
    MAXVOLUMES                            14
    LOG_IO_BLOCK_COUNT                    8
    DATA_IO_BLOCK_COUNT                   64
    BACKUP_BLOCK_CNT                      64
    _DELAY_LOGWRITER                      0
    LOG_IO_QUEUE                          50
    _RESTART_TIME                         600
    MAXCPU                                8
    MAX_LOG_QUEUE_COUNT                   0
    USED_MAX_LOG_QUEUE_COUNT              8
    LOG_QUEUE_COUNT                       1
    MAXUSERTASKS                          500
    _TRANS_RGNS                           8
    _TAB_RGNS                             8
    _OMS_REGIONS                          0
    _OMS_RGNS                             7
    OMS_HEAP_LIMIT                        0
    OMS_HEAP_COUNT                        8
    OMS_HEAP_BLOCKSIZE                    10000
    OMS_HEAP_THRESHOLD                    100
    OMS_VERS_THRESHOLD                    2097152
    HEAP_CHECK_LEVEL                      0
    _ROW_RGNS                             8
    RESERVEDSERVERTASKS                   16
    MINSERVERTASKS                        28
    MAXSERVERTASKS                        28
    _MAXGARBAGE_COLL                      1
    _MAXTRANS                             4008
    MAXLOCKS                              120080
    _LOCK_SUPPLY_BLOCK                    100
    DEADLOCK_DETECTION                    4
    SESSION_TIMEOUT                       180
    OMS_STREAM_TIMEOUT                    30
    REQUEST_TIMEOUT                       5000
    _IOPROCS_PER_DEV                      2
    _IOPROCS_FOR_PRIO                     0
    _IOPROCS_FOR_READER                   0
    _USE_IOPROCS_ONLY                     NO
    _IOPROCS_SWITCH                       2
    LRU_FOR_SCAN                          NO
    _PAGE_SIZE                            8192
    _PACKET_SIZE                          131072
    _MINREPLY_SIZE                        4096
    _MBLOCK_DATA_SIZE                     32768
    _MBLOCK_QUAL_SIZE                     32768
    _MBLOCK_STACK_SIZE                    32768
    _MBLOCK_STRAT_SIZE                    16384
    _WORKSTACK_SIZE                       8192
    _WORKDATA_SIZE                        8192
    _CAT_CACHE_MINSIZE                    262144
    CAT_CACHE_SUPPLY                      131072
    INIT_ALLOCATORSIZE                    262144
    ALLOW_MULTIPLE_SERVERTASK_UKTS        NO
    _TASKCLUSTER_01                       tw;al;ut;2000*sv,100*bup;10*ev,10*gc;
    _TASKCLUSTER_02                       ti,100*dw;63*us;
    _TASKCLUSTER_03                       equalize
    _DYN_TASK_STACK                       NO
    _MP_RGN_QUEUE                         YES
    _MP_RGN_DIRTY_READ                    DEFAULT
    _MP_RGN_BUSY_WAIT                     DEFAULT
    _MP_DISP_LOOPS                        2
    _MP_DISP_PRIO                         DEFAULT
    MP_RGN_LOOP                           -1
    _MP_RGN_PRIO                          DEFAULT
    MAXRGN_REQUEST                        -1
    _PRIO_BASE_U2U                        100
    _PRIO_BASE_IOC                        80
    _PRIO_BASE_RAV                        80
    _PRIO_BASE_REX                        40
    _PRIO_BASE_COM                        10
    _PRIO_FACTOR                          80
    _DELAY_COMMIT                         NO
    _MAXTASK_STACK                        512
    MAX_SERVERTASK_STACK                  500
    MAX_SPECIALTASK_STACK                 500
    _DW_IO_AREA_SIZE                      50
    _DW_IO_AREA_FLUSH                     50
    FBM_VOLUME_COMPRESSION                50
    FBM_VOLUME_BALANCE                    10
    _FBM_LOW_IO_RATE                      10
    CACHE_SIZE                            262144
    _DW_LRU_TAIL_FLUSH                    25
    XP_DATA_CACHE_RGNS                    0
    _DATA_CACHE_RGNS                      64
    XP_CONVERTER_REGIONS                  0
    CONVERTER_REGIONS                     8
    XP_MAXPAGER                           0
    MAXPAGER                              64
    SEQUENCE_CACHE                        1
    _IDXFILE_LIST_SIZE                    2048
    VOLUMENO_BIT_COUNT                    8
    OPTIM_MAX_MERGE                       500
    OPTIM_INV_ONLY                        YES
    OPTIM_CACHE                           NO
    OPTIM_JOIN_FETCH                      0
    JOIN_SEARCH_LEVEL                     0
    JOIN_MAXTAB_LEVEL4                    16
    JOIN_MAXTAB_LEVEL9                    5
    _READAHEAD_BLOBS                      32
    CLUSTER_WRITE_THRESHOLD               80
    CLUSTERED_LOBS                        NO
    RUNDIRECTORY                          /var/opt/sdb/data/wrk/SPDT
    OPMSG1                                /dev/console
    OPMSG2                                /dev/null
    _KERNELDIAGFILE                       knldiag
    KERNELDIAGSIZE                        800
    _EVENTFILE                            knldiag.evt
    _EVENTSIZE                            0
    _MAXEVENTTASKS                        2
    _MAXEVENTS                            100
    _KERNELTRACEFILE                      knltrace
    TRACE_PAGES_TI                        2
    TRACE_PAGES_GC                        20
    TRACE_PAGES_LW                        5
    TRACE_PAGES_PG                        3
    TRACE_PAGES_US                        10
    TRACE_PAGES_UT                        5
    TRACE_PAGES_SV                        5
    TRACE_PAGES_EV                        2
    TRACE_PAGES_BUP                       0
    KERNELTRACESIZE                       5369
    EXTERNAL_DUMP_REQUEST                 NO
    _AK_DUMP_ALLOWED                      YES
    _KERNELDUMPFILE                       knldump
    _RTEDUMPFILE                          rtedump
    _UTILITY_PROTFILE                     dbm.utl
    UTILITY_PROTSIZE                      100
    _BACKUP_HISTFILE                      dbm.knl
    _BACKUP_MED_DEF                       dbm.mdf
    _MAX_MESSAGE_FILES                    0
    _SHMKERNEL                            44601
    __PARAM_CHANGED___                    0
    __PARAM_VERIFIED__                    2008-05-03 23:12:55
    DIAG_HISTORY_NUM                      2
    DIAG_HISTORY_PATH                     /var/opt/sdb/data/wrk/SPDT/DIAGHISTORY
    _DIAG_SEM                             1
    SHOW_MAX_STACK_USE                    NO
    SHOW_MAX_KB_STACK_USE                 NO
    LOG_SEGMENT_SIZE                      2133
    _COMMENT                              
    SUPPRESS_CORE                         YES
    FORMATTING_MODE                       PARALLEL
    FORMAT_DATAVOLUME                     YES
    OFFICIAL_NODE                         
    UKT_CPU_RELATIONSHIP                  NONE
    HIRES_TIMER_TYPE                      CPU
    LOAD_BALANCING_CHK                    30
    LOAD_BALANCING_DIF                    10
    LOAD_BALANCING_EQ                     5
    HS_STORAGE_DLL                        libhsscopy
    HS_SYNC_INTERVAL                      50
    USE_OPEN_DIRECT                       YES
    USE_OPEN_DIRECT_FOR_BACKUP            NO
    SYMBOL_DEMANGLING                     NO
    EXPAND_COM_TRACE                      NO
    JOIN_TABLEBUFFER                      128
    SET_VOLUME_LOCK                       YES
    SHAREDSQL                             YES
    SHAREDSQL_CLEANUPTHRESHOLD            25
    SHAREDSQL_COMMANDCACHESIZE            262144
    MEMORY_ALLOCATION_LIMIT               0
    USE_SYSTEM_PAGE_CACHE                 YES
    USE_COROUTINES                        YES
    FORBID_LOAD_BALANCING                 YES
    MIN_RETENTION_TIME                    60
    MAX_RETENTION_TIME                    480
    MAX_SINGLE_HASHTABLE_SIZE             512
    MAX_HASHTABLE_MEMORY                  5120
    ENABLE_CHECK_INSTANCE                 YES
    RTE_TEST_REGIONS                      0
    HASHED_RESULTSET                      YES
    HASHED_RESULTSET_CACHESIZE            262144
    CHECK_HASHED_RESULTSET                0
    AUTO_RECREATE_BAD_INDEXES             NO
    AUTHENTICATION_ALLOW                  
    AUTHENTICATION_DENY                   
    TRACE_AK                              NO
    TRACE_DEFAULT                         NO
    TRACE_DELETE                          NO
    TRACE_INDEX                           NO
    TRACE_INSERT                          NO
    TRACE_LOCK                            NO
    TRACE_LONG                            NO
    TRACE_OBJECT                          NO
    TRACE_OBJECT_ADD                      NO
    TRACE_OBJECT_ALTER                    NO
    TRACE_OBJECT_FREE                     NO
    TRACE_OBJECT_GET                      NO
    TRACE_OPTIMIZE                        NO
    TRACE_ORDER                           NO
    TRACE_ORDER_STANDARD                  NO
    TRACE_PAGES                           NO
    TRACE_PRIMARY_TREE                    NO
    TRACE_SELECT                          NO
    TRACE_TIME                            NO
    TRACE_UPDATE                          NO
    TRACE_STOP_ERRORCODE                  0
    TRACE_ALLOCATOR                       0
    TRACE_CATALOG                         0
    TRACE_CLIENTKERNELCOM                 0
    TRACE_COMMON                          0
    TRACE_COMMUNICATION                   0
    TRACE_CONVERTER                       0
    TRACE_DATACHAIN                       0
    TRACE_DATACACHE                       0
    TRACE_DATAPAM                         0
    TRACE_DATATREE                        0
    TRACE_DATAINDEX                       0
    TRACE_DBPROC                          0
    TRACE_FBM                             0
    TRACE_FILEDIR                         0
    TRACE_FRAMECTRL                       0
    TRACE_IOMAN                           0
    TRACE_IPC                             0
    TRACE_JOIN                            0
    TRACE_KSQL                            0
    TRACE_LOGACTION                       0
    TRACE_LOGHISTORY                      0
    TRACE_LOGPAGE                         0
    TRACE_LOGTRANS                        0
    TRACE_LOGVOLUME                       0
    TRACE_MEMORY                          0
    TRACE_MESSAGES                        0
    TRACE_OBJECTCONTAINER                 0
    TRACE_OMS_CONTAINERDIR                0
    TRACE_OMS_CONTEXT                     0
    TRACE_OMS_ERROR                       0
    TRACE_OMS_FLUSHCACHE                  0
    TRACE_OMS_INTERFACE                   0
    TRACE_OMS_KEY                         0
    TRACE_OMS_KEYRANGE                    0
    TRACE_OMS_LOCK                        0
    TRACE_OMS_MEMORY                      0
    TRACE_OMS_NEWOBJ                      0
    TRACE_OMS_SESSION                     0
    TRACE_OMS_STREAM                      0
    TRACE_OMS_VAROBJECT                   0
    TRACE_OMS_VERSION                     0
    TRACE_PAGER                           0
    TRACE_RUNTIME                         0
    TRACE_SHAREDSQL                       0
    TRACE_SQLMANAGER                      0
    TRACE_SRVTASKS                        0
    TRACE_SYNCHRONISATION                 0
    TRACE_SYSVIEW                         0
    TRACE_TABLE                           0
    TRACE_VOLUME                          0
    CHECK_BACKUP                          NO
    CHECK_DATACACHE                       NO
    CHECK_KB_REGIONS                      NO
    CHECK_LOCK                            NO
    CHECK_LOCK_SUPPLY                     NO
    CHECK_REGIONS                         NO
    CHECK_TASK_SPECIFIC_CATALOGCACHE      NO
    CHECK_TRANSLIST                       NO
    CHECK_TREE                            NO
    CHECK_TREE_LOCKS                      NO
    CHECK_COMMON                          0
    CHECK_CONVERTER                       0
    CHECK_DATAPAGELOG                     0
    CHECK_DATAINDEX                       0
    CHECK_FBM                             0
    CHECK_IOMAN                           0
    CHECK_LOGHISTORY                      0
    CHECK_LOGPAGE                         0
    CHECK_LOGTRANS                        0
    CHECK_LOGVOLUME                       0
    CHECK_SRVTASKS                        0
    OPTIMIZE_AGGREGATION                  YES
    OPTIMIZE_FETCH_REVERSE                YES
    OPTIMIZE_STAR_JOIN                    YES
    OPTIMIZE_JOIN_ONEPHASE                YES
    OPTIMIZE_JOIN_OUTER                   YES
    OPTIMIZE_MIN_MAX                      YES
    OPTIMIZE_FIRST_ROWS                   YES
    OPTIMIZE_OPERATOR_JOIN                YES
    OPTIMIZE_JOIN_HASHTABLE               YES
    OPTIMIZE_JOIN_HASH_MINIMAL_RATIO      1
    OPTIMIZE_OPERATOR_JOIN_COSTFUNC       YES
    OPTIMIZE_JOIN_PARALLEL_MINSIZE        1000000
    OPTIMIZE_JOIN_PARALLEL_SERVERS        0
    OPTIMIZE_JOIN_OPERATOR_SORT           YES
    OPTIMIZE_QUAL_ON_INDEX                YES
    DDLTRIGGER                            YES
    SUBTREE_LOCKS                         NO
    MONITOR_READ                          2147483647
    MONITOR_TIME                          2147483647
    MONITOR_SELECTIVITY                   0
    MONITOR_ROWNO                         0
    CALLSTACKLEVEL                        0
    OMS_RUN_IN_UDE_SERVER                 NO
    OPTIMIZE_QUERYREWRITE                 OPERATOR
    TRACE_QUERYREWRITE                    0
    CHECK_QUERYREWRITE                    0
    PROTECT_DATACACHE_MEMORY              NO
    LOCAL_REDO_LOG_BUFFER_SIZE            0
    FILEDIR_SPINLOCKPOOL_SIZE             10
    TRANS_HISTORY_SIZE                    0
    TRANS_THRESHOLD_VALUE                 60
    ENABLE_SYSTEM_TRIGGERS                YES
    DBFILLINGABOVELIMIT                   70L80M85M90H95H96H97H98H99H
    DBFILLINGBELOWLIMIT                   70L80L85L90L95L
    LOGABOVELIMIT                         50L75L90M95M96H97H98H99H
    AUTOSAVE                              1
    BACKUPRESULT                          1
    CHECKDATA                             1
    EVENT                                 1
    ADMIN                                 1
    ONLINE                                1
    UPDSTATWANTED                         1
    OUTOFSESSIONS                         3
    ERROR                                 3
    SYSTEMERROR                           3
    DATABASEFULL                          1
    LOGFULL                               1
    LOGSEGMENTFULL                        1
    STANDBY                               1
    USESELECTFETCH                        YES
    USEVARIABLEINPUT                      NO
    UPDATESTAT_PARALLEL_SERVERS           0
    UPDATESTAT_SAMPLE_ALGO                1
    SIMULATE_VECTORIO                     IF_OPEN_DIRECT_OR_RAW_DEVICE
    COLUMNCOMPRESSION                     YES
    TIME_MEASUREMENT                      NO
    CHECK_TABLE_WIDTH                     NO
    MAX_MESSAGE_LIST_LENGTH               100
    SYMBOL_RESOLUTION                     YES
    PREALLOCATE_IOWORKER                  NO
    CACHE_IN_SHARED_MEMORY                NO
    INDEX_LEAF_CACHING                    2
    NO_SYNC_TO_DISK_WANTED                NO
    SPINLOCK_LOOP_COUNT                   30000
    SPINLOCK_BACKOFF_BASE                 1
    SPINLOCK_BACKOFF_FACTOR               2
    SPINLOCK_BACKOFF_MAXIMUM              64
    ROW_LOCKS_PER_TRANSACTION             50
    USEUNICODECOLUMNCOMPRESSION           NO
    about send you the data from tables, i dont have permission to do that, since all data is in a production system, the customer dont give me the rights to send any information. sorry about that.
    best regards
    Clóvis

  • Need ability to generate a list of reports/queries that use each universe

    Hi ,
    When we make changes to a universe, I need to be able to identify which queries / reports use that universe.   Would also like to be able to get the name of the person who created the query / report and, if possible, the names of the peple who ran them.
    Thanks & Regards
    Venkat

    You have to fire query in the Query Builder tool.
    The following query will give you the list of IDs of the webi report built on top of the universe.
    select si_webi from ci_appobjects where si_name='Universe_Name'
    Hope this will help you out.

  • Standard variable exist for calendar day that uses current working day

    Hi
    Is there any standard range Variable that exists for info-object calendar day that uses the manual entry for the lower limit and upper limit as current working day .
    Please advise.
    Thanks.

    There are a number of standard variables 0n 0CALDAY - of processing type SAP exit, Input Allowed, Select-option or Range. You will have to check whether they give the default value of current date though as that will have to be looked up from documentation or user-exit code (or from the name of variable).
    To shorten the candidate list, SE16 on table RSZGLOBV where
    OBJVERS = D (Delivered version)
    IOBJNM = 0CALDAY
    VARTYP = 1
    VARPROCTYP = 4 (SAP Exit)
    VPARSEL = I, S (Range or select-option)
    VARINPUT = 'X' (Ready for input)
    It should give you about 6-7 variables that you can explore further. It is likely that none of these default to current date. Some of these are
    0DAY_***
    0TWB_30T
    0CDL12CM
    0I_CCMDR
    0CD_L14D
    0S_CALDAY
    0CD_L7D
    I see that you are looking for current 'working' day as default. Very likely the answer is 'no' in such case.
    Edited by: Ajay Das on Mar 1, 2011 7:39 AM

  • Have you noticed the newest version 3.6.23 crashes frequently? Mine does it a few times a day on web pages that used to work fine before the upgrade.

    Since the last Firefox update was installed on my system, Firefox crashes several times a day on websites that used to be no problem. I have five crash report id's from the last two days (I usually don't send the report). Do you want all of them?
    I'm running Firefox 3.6.23
    I'm running MacOS X version 10.5.8, on 1.5ghz powerPC G4
    with 2gb memory and over 100gig still available on my 150gig hard drive.
    I checked for updates - there are no new updates.
    I tried sending feedback, but the feedback page said I had to be running the latest version of firefox. So I clicked on "latest version of Firefox", and got "Unfortunately the latest version of Firefox isn't compatible with your computer's operating system"
    The "learn more" link took me to http://www.mozilla.org/en-US/firefox/4.0/system-requirements/ which says that OS 10.5 is supported.
    So - how do I get back to my previous version of Firefox so it doesn't keep crashing
    AND/OR
    Is there a fix coming to stop all the crashing
    AND/OR
    What do I do about Firefox versions on my computer?
    Thanks

    That can be a problem with a plugin, possibly Java.
    * [https://bugzilla.mozilla.org/show_bug.cgi?id=573055 bug 573055] - Reproducible [@ nsNPAPIPluginInstance::InitializePlugin()] crashes / Java

  • The software that used to decode the media is not available on this system

    I can see that this has been asked numerous times over the years.  I am sorry to post this AGAIN, but I have not yet found a solution and have a deadline looming.
    We created a 200+ DVD's using Encore CS6 on a Windows 7 system.
    We upgraded to Windows 8.  Re-installed CS6 Production Premium.
    Now, when we try to open the projects to make a few edits, we get the "The software that's used to decode the media is not available on this system.  Installing the correct decoders for the files you are working with may help to correct the problem."
    I've done the Encore Updates.  I've done the Media Encoder updates.  I've "Run as Administrator".
    I've tried re installing.
    Does anyone have any suggestions on how to debug this?  The videos are already transcoded as *.m2v files.
    You'd think this would be easy... like install a codec or something.
    ==> Mike.

    Part of the problem is that this is probably not a "logical" error.  The common cause of this issue is still image files where the pixel size is too large. This suggests that Encore's (and other Adobe apps) ability to handle image size is exceeded without a better error message. The link, which I'm going to post until I find a "new" location (if one exists) is now a bad link:
    http://helpx.adobe.com/encore/kb/error-software-used-decode-media.html
    And in this example where it was not an image issue, the user fixed the problem by re-encoding the problem file.
    http://forums.adobe.com/message/6004428#6004428

  • Adapter that used to work with Gen 1 no longer works with Gen 6 nano

    Hi
    Here's my problem
    I had nano gen 1 2Gb I had no use for (a gift) and now I I restore radios I git to use it to trasmit music via adapter I have bought 2 weeks ago, which plugs into the Apple interface slot and outputs USB and L/R audio.
    This one.
    http://www.ebay.com/itm/New-USB-Cable-Video-AV-TV-RCA-for-iPod-Mini-Touch-Nano-V ideo-Classic-/350684814012?pt=US_MP3_Player_Cables_Adapters&hash=item51a6719abc
    It worked just fine with Gen 1.
    Then someone alerted me to that recall program and it got exchanged for Gen 6 a week ago.
    When I plugged the adapter in it displayed "unrecognized device" but as I was playing FM radio it worked.
    Then I used iTunes (latest) to convert some CDs, downloaded them into the iPod, started playing.....it playes for a few second, then makes the "wrong answer" sound (you know, that "errrrrrrrrrr!") and then keeps playing, and this happens every few seconds.
    I thought first my disk import went bad as my computer is old and slow.
    So I first played the imported disks on my computer, which worked fine, and then I played the iPod with just phones, expecting to hear that "errrrrrrrrrrr!" - nope, playes fine.
    Then I plugged in the adapter (I only plugged it into iPod, the other end stayed unplugged) - and there it came again.
    So, somehow the adapter that worked finr with gen 1 is no longer good.
    Had I known that I would never exchanged it - 2GB is plenty of space, and the chance of that battery going up in flames are small.
    Any ideas, anyone?
    Regards,
    Mike.

    Not sure but maybe something to do with casting. Below is the code snippet from one of the blogs. Try modifying your script like below and see if still you get the error
    [Microsoft.SharePoint.SPFieldUserValueCollection]$lotsofpeople = New-Object Microsoft.SharePoint.SPFieldUserValueCollection
    $user1 = $w.EnsureUser("domain\user1");
    $user1Value = New-Object Microsoft.SharePoint.SPFieldUserValue($w, $user1.Id, $user1.LoginName)
    $user2 = $w.EnsureUser("domain\user2");
    $user2Value = New-Object Microsoft.SharePoint.SPFieldUserValue($w, $user2.Id, $user2.LoginName);
    $lotsofpeople.Add($user1Value);
    $lotsofpeople.Add($user2Value);
    $i["lotsofpeoplefield"] = $lotsofpeople;
    $i.Update();
    #-or-
    $l.Fields["lotsofpeoplefield"].ParseAndSetValue($i,$lotsofpeople);
    $i.Update();
    Reference to the link
    http://social.technet.microsoft.com/wiki/contents/articles/20831.sharepoint-a-complete-guide-to-getting-and-setting-fields-using-powershell.aspx
    Geetanjali Arora | My blogs |

  • Links that used to work with pre Firefox v4.0 no longer work

    I need access to a work related website. the main page of the website opens up with out any issues, but when I click on any of the links nothing happens. This is a new issue that only started once I upgraded to Firefox 4.0. I previously had no issues using this website with Firefox before. I tried using the website with Explorer and had no issues.

    I have iPhone software 2.2.1 (SH11),
    MAC 0S X 10.5.5
    XCode 3.1.2
    In organiser it says The Developer Disk Image could not be mounted.
    Xcode could not find an appropriate Developer Disk Image to mount on Richard’s iPhone. Please contact Apple for the 2.2.1 (5H11) device support package.
    Also in Xcode it says that the active sdk is Device - 2.2. There is no version 2.2.1 for me to select and I cannot add a new active SDK.
    I have downloaded the iphonesdk_for_iphone_os2.2.19m2621afinal.dmg and tried installing it which had no effect to the error above.
    I tried uninstalling Xcode then re-installing using this sdk but again no effect
    I tried installing the iPhoneSDK_2.2 on its own but again no effect
    I tried restoring the iPhone but again no effect
    I've tried the above numerous times, restarting xcode and restating the complete system but still to no effect.
    I am relatively new to MACs so I might be doing something wrong (ie not installing or uninstalling properly) but I am really lost now as to what to do.
    Please advise.
    Thanks
    Richard

  • Hi, my mac has stopped playing some avi files (that used to work). I can see the video. Does anyone know why and what i can do? My version of quicktime is 7.6.9.

    Hi i have avi files saved in iphoto that i used to be able to play through quicktime. However in the last few weeks i cannot play many of these files. I can see the videos and click on them but nothing happens (i have version 7.6.9 of quicktime). Does anyone know why this has happened and what i can do about this?
    Thanks.

    What do you mean by what audio/video formats are involved? These are all files from several digital cameras.
    As previously stated, AVI is a file container. It is somewhat old and its originator, Microsoft, dropped official support of it over a decade ago. However, it remains popular with PC users since almost any valid audio and/or video compression format can be stuffed to the file which synchronizes the content by interleaving the individual audio and video frames. The compression format is the specific manner in which the audio and video data are encoded as it is placed in the AVI container. You can find the compression format by inspecting the file in the Finder "Info" window, or in the "Inspector" window of the QT player (or other media player) if the file can be opened.
    For instance, one popular compression combination would be to place DivX encoded video and MP3 audio in an AVI file container. However, neither DivX nor MP3 is natively supported by the QT player. (Although iTunes will natively support the MP3 audio.) Therefore, people who wish to play such files in the QT 7 Player would normally install either the DivX component or Perian but not both. Either installation will independently play such files in the QT Player, but if both are installed, the file will usually stop working since these two codecs can create a playback conflict.
    However, the AVI container could just as easily contain DV along with DV audio. In this case, the file should play correctly in QT since this compression format is natively supported by the basic component configuration that comes in every current OS installation. Therefore, if such files suddenly stopped playing, this could be an indication that a component has been moved or deleted or that your system or QT embedded structure has become corrupted.

  • Have a 64GB flash drive that used to work and after an update, now doesn't show up in finder

    I have a 64GB flash drive that worked just fine and Finder would show it when I would insert it, well it seems that after I updated my mac it now doesn't recognize or show the flash drive. I am unsure if the update did something but like I said it worked previously to update and it works on other windows based computers. So is there a way I can fix this?

    Hey Raveybaby
    I would check to see if it shows up in Disk Utility. If it does, run a Repair Disk on it and also mount the flash drive as well. If it does not show up, check other ports as well.
    Disk Utility 12.x: Repair a disk
    http://support.apple.com/kb/PH5836
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • Safari is not playing certain flash videos that used to work

    I just installed Mac OS X (10.6.4) Snow Leopard yesterday. A website that I was previously able to stream flash video on is no longer working since moving from Mac OS X (10.5) to Snow Leopard. Maybe there is a new add-on that I'm missing. I'm using Safari 5.0.2 as a browser (the flash video does not play on Firefox either). Any help would be greatly appreciated.
    Here is the link to the site: http://mnn2.mnntv.org/OnAir/flash

    HI,
    Uninstall your current copy of Flash, reinstall new, repair permissions.
    Go here and follow the instructions to uninstall Flash. Uninstall Flash
    Install the most recent version of Flash here.
    Now repair permissions.
    Launch Disk Utility. (Applications/Utilities) Select MacintoshHD in the panel on the left, select the FirstAid tab. Click: Repair Disk Permissions. When it's finished from the Menu Bar, Quit Disk Utility and restart your Mac. If you see a long list of "messages" in the permissions window, it's ok. That can be ignored. As long as you see, "Permissions Repair Complete" when it's finished... you're done. Quit Disk Utility and restart your Mac.
    Carolyn

Maybe you are looking for

  • Transfering i-pod music to a new itunes library?

    I set up my first itunes on my old laptop which is now broken, i have recently set up a new itunes on my new laptop, but i want to transfer the songs on my ipod to my new itunes but it won't work, any ideas?

  • Coldfusion and sql server reports

    hi all, we wish to have a reporting tool that goes well with coldfusion. we wish to use sql server reporting with coldfusion. can anyone provide some examples for this. i have seen integration only for crystal reports and report builder. does it supp

  • Re: uploading pdf file farmat into sap system

    Hi  Sap Guru's One of my client have requirement  of uploading PDF file into sap system client is getting scan copy in PDF format of sales order that  order , material number and qty should be uploaded into sap through va01 as clent havint 200 custom

  • Message Type - STTPOD with Process Code as - OPOD

    Dear All, I am using Standard Message Type - STTPOD with Process Code as - OPOD and Basic Type as - DELVRY03 I am creating a New "Z" Segment Copy of "E1EDL20" I want to Add in one FIELD EKPO - ELIKZ which is Delivery Complete INDICATOR How can i fetc

  • Macbook Pro Retina, 15-inch, Late 2013 temperature at 96C

    I've had my MBP for about 3 months and I've notices some heat problems to the point where it's really hot to touch above the top keys, in fact right now it could burn my finger if i held it there. It says the temp is 96C. The fans were not going abov