MuCow: "parameter missing attribute name required."

I get this error when I go to put the MuCow in the Muse.

"Missing parameter mandatory name attribute."

Nevermind, I fixed it by recoding my first section.

Tags: Adobe Muse

Similar Questions

  • The boot configuration data file is missing some information required. File:\BCD error code: 0xc0000034.

    I just bought my ASUS laptop (with no dvd player) 3 days ago. Today I turned on for the first time and was usually up to 1 hour later this bluescreen poped out: RECOVERY, your PC needs to be repaired. The boot configuration data file is missing some information required. File:\BCD error code: 0xc0000034. You will need to use the tools for restore on your installation media. If you don't have any media of the instalation (such as a disc or USB device), contact your system administrator or the PC manufacturer... As I said before that my laptop came with Windows 8, and it is not a dvd player.

    Thank you.

    Remove the power supply and remove the battery

    Press and hold the power button for 60 seconds

    Apply the AC voltage ONLY (DO NOT INSTALL THE BATTERY)

    Click on the power button and more quickly, press F9

    Follow the instructions to reset the computer to factory default

  • Extract the attribute name (s) (not) - how to?

    version: 11.2.0.4 (standard no company)

    context: determine all fragment a (e) xml attribute names.

    Table ddl (just a shadow table for unit tests):

    CREATE TABLE FAR_XML
    (
      REQUIREMENT_ID  NUMBER,
      FAR             SYS.XMLTYPE
    )
    XMLTYPE FAR STORE AS SECUREFILE BINARY XML
    

    sample:

    <F_A_REQ>
      <RULES>
        <VALUE KEY="FADEF_PRESENT"><![CDATA[E239]]></VALUE>
        <VALUE KEY="FADEF_SECTIONS"><![CDATA[1.2]]></VALUE>
        <VALUE KEY="FADEF_DEFINITION"><![CDATA[E257]]></VALUE>
      </RULES>
    </F_A_REQ>
    

    question: How can I query a table with an xmltype column (not placed on a diagram) and derive what the KEY 'names' are for a single record?

    desired output:

    FADEF_PRESENT

    FADEF_SECTIONS

    FADEF_DEFINITION

    Thanks in advance for any guidance.

    -abe

    For example:

    SQL> select x.value_key
      2  from far_xml t
      3     , xmltable('/F_A_REQ/RULES/VALUE'
      4         passing t.far
      5         columns value_key varchar2(30) path '@KEY'
      6       ) x
      7  ;
    
    VALUE_KEY
    ------------------------------
    FADEF_PRESENT
    FADEF_SECTIONS
    FADEF_DEFINITION
    
  • Model name required for vaio does not work. WEB USELESS INSTRUCTIONS.

    I need a new motherboard for my Vaio pcg - 61611L NONFUNCTIONING. Statements of your website to find my model name require the laptop turned on, which is currently impossible without the motherboard, I'm buying.

    that I can't buy because I don't know what model to get name. I can't know because YOUR INSTRUCTIONS ARE USELESS.

    Label service for this device is c104884v. Serial number is 27526839 3002127.

    alienjack,

    Your model is VPCEE23FX/T and the card mother n/p is B99861626 and you can order through Sony parts @ 800-488-7669.

  • Redundant attribute 'name '.

    After HTML 4.01 Strict to HTML 5, I now create links in a page by assigning an ID to an image on the page, then link to this ID.

    However, DW 5.5 automatically adds a redundant "name" attribute in the < img > tag. How this redundant attribute 'name' can be omitted?

    You can ignore it.

  • Error: autoCancel is not a valid attribute name.

    Hello

    I use autocancel = disabled by popup property.

    It works very well in embedded weblogic that comes with jdeveloper.

    When I deploy to the area of the production weblogic server, it is the below error
    ===========
    OracleJSP error: oracle.jsp.parse.JspParseException:
    / product.jspx: line no. 401, < af:popup id = "productPopUp" contentDelivery = "lazyUncached" autoCancel = "disabled" binding = "#{productbean.productpupup}" >
    Error: 'autoCancel' is not a valid attribute name.
    ===========

    Any thoughts on fixing this error please?

    Thank you

    My admin said that

    Your admin would be a mistake.

    Certifications would be:

    10.3.2 ADR 11.1.1.2 JDev 11.1.1.2 WLS
    WLS 10.3.3 ADR 11.1.1.3 JDev 11.1.1.3
    WLS 10.3.4 ADR 11.1.1.4 JDev 11.1.1.4
    WLS 10.3.5 ADR 11.1.1.5 JDev 11.1.1.5
    WLS 10.3.5 ADR 11.1.1.5 + sherman patch 11.1.2 JDev
    WLS 10.3.5 ADR 11.1.1.5 + patch sherman + another patch JDev 11.1.2.1

    You can get here ADRS:

    http://www.Oracle.com/technetwork/developer-tools/ADF/downloads/index.html

    John

  • Flex 3 - How to change an attribute name?

    Like this

    < article number = "1" / >

    TO

    < feature id = "1" / >

    Thank you

    Hi Alex,

    You can use setName to change the attribute name:

    Here, for example change all your id with the code attributes:

    var xmlTest:XML =;

    for each (var node: XML in xmlTest.item.descendants ("@id"))
    node.setName ('code');

    trace (xmlTest);

    Thank you

    Jean Claude

  • &lt; xsl: attribute name = "break-before" &gt; page &lt; / xsl: attribute &gt;-add blank lines

    Hello.
    < xsl: attribute name = "break-before" > page < / xsl: attribute >-add blank lines.
    When to transfer the lines to the next page with the command
    < xsl: attribute name = "break-before" > page < / xsl: attribute >, a new page at the beginning of a blank line, then the data. And so on all pages. If < xsl: attribute name = "break-before" > page < / xsl: attribute > removed, the XML Editor displays all the lines correctly.

    I can send RTF and XML files.

    Does anyone know how can I solve this problem?
    Thank you

    Send me the xml files and the [email protected] model. I'll take a look. Also, can you clarify your needs and deliver a little clearer in your email?

    Thank you!

  • get the attributes NAME / VALUE of a XML

    I love this forum :)

    I load a XML one fill a tree, where I started to drag items.
    the XML looks like this:
    < myTag attrName = "attrValue" otherAttrName = "otherAttrValue" / >

    var ds:DragSource = event.dragSource;
    var var1:String =(event.dragInitiator as Tree).value.@attrName;
    -> the variable var1 is now: "attrValue".

    My question is... How can I get the names of all attributes? in this example: attrName and otherAttrName (assume that I don't know the structure of this xml node)
    What attribute values?
    Thank you!

    The snippet below takes a node xml (nodeCur), made a loop through the list of attributes and built a table that contains the attribute name and value of each attribute. It is a sample application that allows you to edit an xml file.
    I'm sorry that the forum will remove formatting

    var aDPAttributes:Array = new Array();
    var xlAttributes:XMLList = nodeCur.@*;
    var: attribute;
    for (var i: int = 0; i< xlattributes.length();="" i++)="">
    aDPAttributes.push ({name: xlAttributes [i] .name (), value: xlAttributes [i]});
    }
    dgAttributes.dataProvider = aDPAttributes; Set the sheet dataProvider property

    Tracy

  • BlackBerry Smartphones MIDlet name missing attribute

    Despite the appworld deletion, then by restarting my blackberry with a battery pull whenever I try to re download appworld I get the same error message saying that the 'MIDlet name attribute is missing. " I just can't work it out and tried so many times. Can anyone help?

    I found these threads:

    Let us know if it works.

    http://supportforums.BlackBerry.com/T5/BlackBerry-Curve/helpp-the-MIDlet-name-attribute-is-missing/t...

    http://supportforums.BlackBerry.com/T5/BlackBerry-App-World-General/upgraded-to-7-1-on-bold-9900-and...

  • IOM audit report - missing attributes

    We run OIM 11 g R2 BP06 (under the production deployment). I work with the audit and report functions, as it is a requirement of the customer.

    According to the documentation of audit - 11 g Release 2 (11.1.2) Configuration, the UPA table contains all snapshots and changes made to the XML format. It works very well: if I update the name, phone number, never attribute, I see that change stored in the table of the UPA. The 'Audit Messages task question' will work then and dénormalisée delta of the XML in the UPA_FIELDS table, which is part of the table used by the BEEP report.

    However, it seems that some attributes are never denormalized (in UPA_FIELDS). This is for example the case for the phone number, display name. Modification of these attributes will be visible on the standard audit report.

    The question is: How do I configure IOM (I assume that the task "Question Audit Messages Task") If multiple attributes are denormalized in UPA_FIELDS and changes get visible in the reports?

    Thank you

    Didier.

    I found the answer on support (which is down this morning) in the present note:

    -The list of attributes that need to generate Audit records in the Table UPA_FIELDS (Doc ID 1401055.1)

    also, which refer to a bug, do not yet resolved and with no workaround:

    - BUG: 13626801 -all THE ATTRIBUTES do NOT COME to the TABLE of UPA_FIELDS

    In other words, it's a known :-(limitation

    The solution I see is to try to generate a report of BI Publisher UPA table directly AND XML-based. Not sure if this is possible.

    I thank me for the good support :-)

    Didier.

  • illegal or missing database name

    Hello


    I will have a few difficulties of database 11g:

    SQL > connect system/secret as sysdba;
    Connect to an instance is idle.
    SQL > startup
    ORA-01506: missing or illegal database name

    11g installation seems to be okay and there is no error at all.

    My environment variables have been defined:

    -bash-4, $ 0 echo $ORACLE_HOME
    / Tank/Oracle/112

    -bash-4, $ 0 echo $ORACLE_SID
    orajf

    Here are the contents of my file of dbs:

    -bash-4, $ 0 ls-l $ORACLE_HOME/dbs
    total of 26
    -rw - rw - 1 oracle oinstall 1544 24 May 21:50 hc_jfora.dat
    -rw - r - r - 1 oracle oinstall 2852 26 mai 11:35 init.ora
    -rw - r - r - 1 oracle oracle 0 26 mai 11:27 initORA11GR2.ora
    -rw - r - r - 1 oracle oracle 0 26 mai 11:33 initorajf.ora
    -rw - r - 1 oracle oinstall 24 24 May 21:51 lkJFORA
    -rw - r - 1 oracle oinstall 1536 24 May 21:56 orapwjfora
    -rw - r - 1 oracle oinstall 906 26 mai 14:20 spfilejfora.ora


    The database instance tried to create is called 'orajf '.

    Here is the content of the spfile


    jfora.__java_pool_size = 16777216
    jfora.__large_pool_size = 16777216
    jfora.__oracle_base='/tank/oracle'#ORACLE_BASE the value of the environment
    jfora.__pga_aggregate_target = 687865856
    jfora.__sga_target = 1006632960
    jfora.__shared_io_pool_size = 0
    jfora.__shared_pool_size = 436207616
    jfora.__streams_pool_size = 0
    *.audit_file_dest='/tank/Oracle/admin/jfora/adump '
    * .audit_trail = "db".
    * full = '11.2.0.0.0'
    *.control_files='/tank/oracle/oradata/jfora/control01.ctl','/tank/oracle/flash_recovery_area/jfora/control02.ctl'
    * .db_block_size = 8192
    * .db_domain = "
    * .db_name = "jfora."
    *.db_recovery_file_dest='/tank/Oracle/flash_recovery_area '
    * .db_recovery_file_dest_size = 4070572032
    * .diagnostic_dest = "/ tank/oracle.
    *. Dispatchers ='(Protocol=TCP) (SERVICE = jforaXDB)"
    * .local_listener = "LISTENER_JFORA".
    * .memory_target = 1686110208
    * .open_cursors = 300
    * runoff = 150
    * .remote_login_passwordfile = "EXCLUSIVE."
    * .undo_tablespace = "UNDOTBS1.

    I was just wondering what I might be missing. What else can I do to start this database?

    Thank you

    Published by: 918944 on May 26, 2012 11:36

    SQL > connect system/secret as sysdba;

    Wrong, you need to sign in as SYS not system, the system user is not sysdba called...

    -bash-4, $ 0 echo $ORACLE_HOME
    / Tank/Oracle/112
    -bash-4, $ 0 echo $ORACLE_SID
    orajf
    Here are the contents of my file of dbs:
    -bash-4, $ 0 ls-l $ORACLE_HOME/dbs
    total of 26
    -rw - rw - 1 oracle oinstall 1544 24 May 21:50 hc_jfora.dat
    -rw - r - r - 1 oracle oinstall 2852 26 mai 11:35 init.ora
    -rw - r - r - 1 oracle oracle 0 26 mai 11:27 initORA11GR2.ora
    -rw - r - r - 1 oracle oracle 0 26 mai 11:33 initorajf.ora
    -rw - r - 1 oracle oinstall 24 24 May 21:51 lkJFORA
    -rw - r - 1 oracle oinstall 1536 24 May 21:56 orapwjfora
    -rw - r - 1 oracle oinstall 906 26 mai 14:20 spfilejfora.ora

    I see 2 files of parameters, one is jfora (SPFILE) and orajf (PFILE)

    Since you set your ORACLE_SID to orajf check your PFILE (initorajf.ora), I think that it does not contain the db_name parameter...

  • Parameter Missing IN error or OUT to index: 1

    Hello
    I created a procedure with
    SOURCE:
    Select distinct a.bseg_id, b.pricecomp_id, c.svc_qty, a.seqno
    ci_bseg_cl_char has,
    (select BSEG_CL_CHAR. BSEG_ID, BSEG_CL_CHAR. SEQNO,
    case
    When BSEG_CL_CHAR. CHAR_TYPE_CD = "PAPCPICH" then
    BSEG_CL_CHAR. ADHOC_CHAR_VAL
    end PRICECOMP_ID
    of CI_BSEG_CL_CHAR BSEG_CL_CHAR) b.
    (select CL_CHAR. BSEG_ID, CL_CHAR. SEQNO,
    -case when CL_CHAR. CHAR_TYPE_CD = "AGGSVQTY" then
    CL_CHAR. ADHOC_CHAR_VAL
    end SVC_QTY
    of CI_BSEG_CL_CHAR CL_CHAR) c
    where a.bseg_id = b.bseg_id
    and a.bseg_id = c.bseg_id
    and a.seqno = b.seqno
    and a.seqno = c.seqno
    and b.pricecomp_id is not null
    and c.svc_qty is not null
    order of pricecomp_id, seqno

    TARGET:
    insert into FACT_ODI_INTERMEDIATE1
    (
    bseg_id,
    pricecomp_id,
    svc_qty,
    Seqno
    )
    values
    (
    : bseg_id,.
    : pricecomp_id,.
    : svc_qty,.
    : seqno
    )

    but its me gives error as:

    ODI-1228: task load Intermediate1 (process) fails on ORACLE VISA connection target.
    Caused by: java.sql.SQLException: parameter IN or OUT to missing index: 1


    If anyone can help? /

    Try changing the column names to upper case and check it once... .quelquechose like this...

    insert into FACT_ODI_INTERMEDIATE1
    (
    BSEG_ID,
    PRICECOMP_ID,
    SVC_QTY,
    SEQNO
    )
    values
    (
    : BSEG_ID,.
    : PRICECOMP_ID,.
    : SVC_QTY,.
    : SEQNO
    )

  • Parameter missing Informatica 8.6.0 EBS SDE_ORA_Reverse_GLJournals

    Hi all
    I have a CEP environment that is an instance of 150G vm on an esx server, the OS is 32 bit Windows 2003 SP2, I use OBIEE 10.1.3.4.1 and 7.9.6 BI apps with fix Infa 8.6.0 4. DB is Oracle version 10.2.3
    I've performed with success of the etl for the e-Business Suite 11.5.10 for supply chain areas. I created a custom implementation plan to include a few sales and finance areas, and when I run it I get a failure where less seems to abandon the parameter that is passed the CBC lkp file that was generated. Other messages, I see it as a problem in the infa 8.5 before a fix has been applied. In the log files, there is a warning about the size pool and block buffer DTM being too small as follows:

    MAPPING > TM_6007 DTM initialized successfully for the session [SDE_ORA_Reverse_GLJournals]
    DIRECTOR > PETL_24033 all the DTM connection information: [< NO >].
    MANAGER > PETL_24004 from the tasks before the session. : (My Jul 13 11:18:05 2009)
    MANAGER > task PETL_24027 before the session completed successfully. : (My Jul 13 11:18:05 2009)
    DIRECTOR > PETL_24006 from data movement.
    MAPPING > TM_6351 WARNING: insufficient number of blocks of data for optimal performance. Increase the buffer size of the DTM of the session. The recommended value is 42760801.
    MAPPING > Total TM_6660 Buffer Pool size is 32000000 bytes and block size is 1280000 bytes.

    I have the DTM settings on auto.

    Then two sql insert statements are executed successfully, after which the following sql statement fails because the two parameters are not inserted
    * ($$ SET_OF_BOOKS_ID_LIST = 1 *)
    (* $$ SET_OF_BOOKS_TYPE_LIST = 'NONE') *.

    The sql of the journal is:

    * mplt_BC_ORA_GLXactsJournalsExtract.SQ_GL_JE_LINES] specified SQL Query [SELECT *]


    GL_JE_LINES. JE_HEADER_ID,

    GL_JE_LINES. JE_LINE_NUM,

    GL_JE_LINES. LAST_UPDATE_DATE,

    GL_JE_LINES. LAST_UPDATED_BY,

    GL_JE_LINES. SET_OF_BOOKS_ID,

    GL_JE_LINES. CODE_COMBINATION_ID,

    GL_JE_LINES. PERIOD_NAME,

    GL_JE_LINES. EFFECTIVE_DATE,

    GL_JE_LINES. STATUS,

    GL_JE_LINES. CREATION_DATE,

    GL_JE_LINES. CREATED_BY,

    GL_JE_LINES. ENTERED_DR,

    GL_JE_LINES. ENTERED_CR,

    GL_JE_LINES. ACCOUNTED_DR,

    GL_JE_LINES. ACCOUNTED_CR,

    GL_JE_LINES. REFERENCE_1,

    GL_JE_LINES. REFERENCE_2,

    GL_JE_LINES. REFERENCE_3,

    GL_JE_LINES. REFERENCE_4,

    GL_JE_LINES. REFERENCE_5,

    GL_JE_LINES. REFERENCE_6,

    GL_JE_LINES. REFERENCE_7,

    GL_JE_LINES. REFERENCE_8,

    GL_JE_LINES. REFERENCE_9,

    GL_JE_LINES. REFERENCE_10,

    GL_JE_LINES.GL_SL_LINK_ID,

    GL_JE_HEADERS. JE_CATEGORY,

    GL_JE_HEADERS. JE_SOURCE,

    GL_JE_HEADERS.NAME,

    GL_JE_HEADERS. CURRENCY_CODE,

    GL_JE_HEADERS. POSTED_DATE,

    GL_JE_BATCHES.NAME,

    GL_PERIOD_STATUSES. START_DATE,

    GL_PERIOD_STATUSES. END_DATE,

    GL_PERIOD_STATUSES. ADJUSTMENT_PERIOD_FLAG,

    GL_SETS_OF_BOOKS. MRC_SOB_TYPE_CODE

    Of


    GL_JE_BATCHES,

    GL_JE_LINES,

    GL_JE_HEADERS,

    GL_PERIOD_STATUSES,

    GL_SETS_OF_BOOKS

    WHERE


    GL_JE_LINES. CREATION_DATE > TO_DATE (January 1, 1753 00:00:00 ',' ' the HH24: MI: SS DD/MM/YYYY) AND

    GL_JE_LINES. JE_HEADER_ID = GL_JE_HEADERS. JE_HEADER_ID AND

    GL_JE_HEADERS. ACTUAL_FLAG = 'A' AND

    GL_JE_LINES. STATE = 'P' AND

    GL_JE_HEADERS. JE_BATCH_ID = GL_JE_BATCHES. JE_BATCH_ID (+) AND

    GL_JE_LINES. PERIOD_NAME = GL_PERIOD_STATUSES. PERIOD_NAME AND

    GL_JE_LINES. SET_OF_BOOKS_ID = GL_PERIOD_STATUSES. SET_OF_BOOKS_ID AND

    GL_PERIOD_STATUSES. APPLICATION_ID = 101 AND GL_JE_LINES. SET_OF_BOOKS_ID =

    GL_SETS_OF_BOOKS. SET_OF_BOOKS_ID AND

    DECODE (, 'Y')


    GL_SETS_OF_BOOKS. SET_OF_BOOKS_ID, 1))

    AND DECODE (, 'Y', GL_SETS_OF_BOOKS.) (MRC_SOB_TYPE_CODE, 'AUCUN') ()]
    READER_1_1_1 > RR_4049 SQL query sent to the database: (Thu Jul 13 11:18:05 2009)
    READER_1_1_1 > CMN_1761 Timestamp event: [Mon Jul 13 11:18:06 2009]
    READER_1_1_1 > RR_4035 SQL Error]
    ORA-00936: lack of expression

    Database driver error...

    The two parameters that are missing are in the decode portions where you will notice there are only comma in parentheses...

    I wonder if it has nothing to do with the DTM block size and buffer pool size error mentioned before the race? Any comments would be appreciated.

    Found the problem:
    No line underscore in label between reverse and GLJournals
    [SDE_ORA_Reverse GLJournals]
    $$ DATASOURCE_NUM_ID = 2
    $DBConnection_OLAP = PARAM_OLAP
    $DBConnection_OLTP = PARAM_OLTP
    mplt_BC_ORA_GLXactsJournalsExtract.$$INITIAL_EXTRACT_DATE=01/01/1970
    mplt_BC_ORA_GLXactsJournalsExtract.$$LAST_EXTRACT_DATE=01/01/1970
    mplt_BC_ORA_GLXactsJournalsExtract. $$ FILTER_BY_LEDGER_ID = 'n'
    mplt_BC_ORA_GLXactsJournalsExtract. $$ LEDGER_ID_LIST = 1
    mplt_BC_ORA_GLXactsJournalsExtract. $$ FILTER_BY_LEDGER_TYPE = 'n'
    mplt_BC_ORA_GLXactsJournalsExtract. $$ LEDGER_TYPE_LIST = 'NONE '.
    mplt_BC_ORA_GLXactsJournalsExtract. $$ FILTER_BY_SET_OF_BOOKS_ID = 'n'
    mplt_BC_ORA_GLXactsJournalsExtract. $$ SET_OF_BOOKS_ID_LIST = 1
    mplt_BC_ORA_GLXactsJournalsExtract. $$ FILTER_BY_SET_OF_BOOKS_TYPE = 'n'
    mplt_BC_ORA_GLXactsJournalsExtract. $$ SET_OF_BOOKS_TYPE_LIST = 'NONE '.

    [SDE_ORA_GLJournals_ImportReference_Derive]
    $DBConnection_OLAP = PARAM_OLAP
    $DBConnection_OLTP = PARAM_OLTP_ORA11I

    Problem in the parameter file - parameterfileOLTP.txt

    Bug: 8673433 has been noted.

  • error of variable date "parameter missing."

    Hello!

    I created a my_date_variable, which is then used in the PL/SQL procedure,
    for example, "create table my_test in select #my_date_variable from dual;"
    but when I run this in ODI, I get the following error:

    com.sunopsis.sql.SnpsMissingParametersException: missing parameter
    at com.sunopsis.sql.SnpsQuery.completeHostVariable (SnpsQuery.java)
    at com.sunopsis.sql.SnpsQuery.updateExecStatement (SnpsQuery.java)
    at com.sunopsis.sql.SnpsQuery.executeUpdate (SnpsQuery.java)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execStdOrders (SnpSessTaskSql.java)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt (SnpSessTaskSql.java)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSqlS.treatTaskTrt (SnpSessTaskSqlS.java)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask (SnpSessTaskSql.java)
    at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep (SnpSessStep.java)
    at com.sunopsis.dwg.dbobj.SnpSession.treatSession (SnpSession.java)
    at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand (DwgCommandSession.java)
    at com.sunopsis.dwg.cmd.DwgCommandBase.execute (DwgCommandBase.java)
    at com.sunopsis.dwg.cmd.e.i (e.java)
    at com.sunopsis.dwg.cmd.h.y (h.java)
    at com.sunopsis.dwg.cmd.e.run (e.java)
    at java.lang.Thread.run(Thread.java:619)

    Variable is set to default, I tried all the actions of 3 - Historize, the most recent value, not persistent.
    When I do the same thing with the numeric variable, my test scenario works perfectly.
    So, this problem seems to be related only to a date variable, or maybe I don't know how to use it.

    Karlis

    Published by: Karlis 26 May 2009 08:37

    Hello

    I created the variable #my_date_variable. With the default value according to 2009-01-01 and not persistent.
    Then I created the procedure with the following expression.

    "create table my_test_aw as select '#my_date_variable' aw double."

    Table is created with the name of the column as aw and data value "2009-01-01.

    I would like to know what is your problem?

    Kind regards
    Ashwini

Maybe you are looking for