Does migrating database to 7.8  change the structure or ? of the database?

Good Morning Community,
I had migrated Maxdb Database from 7.6 to 7.8 and i realize the dbmcli connect to the database but he prints this error when i execute my usual queries:
ERR
-24988,ERR_SQL: SQL error
-4004,Unknown table name or unknown schema:FILIALEN
what's happen? i check with an other application it uses the java sap driver of maxdb 7.6 it works but the queries work for some privelege account not all the account those queries must work by all the account
Need Help to find out Maxdb 7.8

Why do you execute queries with DBMCLI ?
DBMCLI is a Database Management server CLIent.
For SQL queries, use SQLcli !
And based on the error message I've got the impression that you're logging on to the database with an SQL user that is not the owner of the tables.
Therefore, you're SQL statements (which we would have to see for more detailed analysis of your problem) would have to specify the schema of the tables you're selecting data from.
But all this has not changed from MaxDB 7.6 to 7.8!
The upgrade does not re-define your database contents.
regards,
Lars

Similar Messages

  • My airport express seems to be broken -- light is yellow and does not flash and doesn't change even when I press the "reset".  Tried unplugging and reset -- still a solid yellow.

    AX light is yellow and does not flash and doesn't change even when I press the "reset".  Tried unplugging and reset -- still a solid yellow. I assume this is a goner?

    Unfortunately, based on your description, I would have to second that your Express is a "goner." However, before giving up on the unit, be sure that you attempt a "factory default" reset at least 3x just to be sure.

  • Why does Apple not allow me to Change "Siri's" name on the I5?

    Why does Apple not allow me to Change "Siri's" name on the I5 (NOT how, but WHY)?

    No one here can address a question as to "why" Apple does anything.

  • How to find the structure fields data in database tables?

    how to find the structure fields data in database tables?

    Your question doesn't appear to be Web Dynpro ABAP related. Please only post questions in this forum if they are directly Web Dynpro ABAP related.  There are several other more general ABAP related forums.

  • To bold the descriptions for the structure members in the BEX Query

    HI Experts,
    Could any one please advise on how to BOLD the descriptions of the structure members in the BEX query.
    Thanks in advance,
    Jeswanth

    Are you looking at making the same BOLD in the web display ..?
    To do this :
    Execute your query - go to display source for the page and you will see the structure members identified with a particular CSS class.
    Open the CSS file from the MIME repository and then identify the class that is used for the structure elements and then change th CSS to make it bold and then upload the changed CSS into MIME .
    Refresh the HTTP global cache from SMICM and then run your report again - you should be able to see the structure elements in BOLD.

  • Where is the structure option under the insert tab in Dreamweaver?

    I was watching the tutorial of Mike Powers for the Bayside Website and he continually uses the structure option under the insert tab. I can not find where this is at in all of Dreamweaver. Does anyone know where this is at?

    http://helpx.adobe.com/creative-cloud/learn/start/dreamweaver.html
    It is the second video down. At about 1:03 he will talk about selecting the structure option and I really want to because it looks extremely helpful!
    Wyatt Ackerman
    816.559.0664 T • 785.534.0465 M
    [email protected]<https://mail.marketsphere.com/owa/redir.aspx?C=56df372cf3f44f3fa455b8f3864b1b80&URL=mailto %3amekaela.kramer%40marketsphere.com>
    MarketSphere Consulting, LLC
    114 W. 11th Street • Suite 700
    Kansas City, MO 64105
    This email message, including any attachments, is for the sole use of the person to whom it has been sent, and may contain information that is confidential or legally protected. If you are not the intended recipient or have received this message in error, you are not authorized to copy, distribute, or otherwise use this message or its attachments. Please notify the sender immediately by return email and permanently delete this message and any attachments. MarketSphere makes no warranty that this email is error or virus free.

  • Display construction type on the structure list within the work order

    I have a work order written against an equipment which has a construction type assigned to it.  When using the structure list from the components tab of the work order, the construction type does not display under the equipment in the list.  If I run the same structure list from transaction IH03, the construction type does display under the equipment.  How can I add the construction type to display on the structure list within the work order?  We are on release 4.7
    Thanks,
    Terry Gaskin

    Thanks PeteA, we know we can do that, but we are looking to get it consistent with IH03, where the construction type shows without being added to the BOM.  The construction type is listed immediately below the equipment in IH03.
    Thanks

  • The structure _name in the resue_alv_filedcatalog_merge.

    Hi
    In
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
      EXPORTING
      I_PROGRAM_NAME = ALV_PROG_NAME
      I_INTERNAL_TABNAME = ALV_ITAB_NAME
       I_STRUCTURE_NAME =
    I_CLIENT_NEVER_DISPLAY = 'X'
      I_INCLNAME = ALV_PROG_NAME
    I_BYPASSING_BUFFER =
    I_BUFFER_ACTIVE =
      CHANGING
      CT_FIELDCAT = L_FIELDCAT
      EXCEPTIONS
      INCONSISTENT_INTERFACE = 1
      PROGRAM_ERROR = 2
      OTHERS = 3
    In parameter    I_STRUCTURE_NAME =
    if we define the structure like mara ,then filedcatalog is being prepared,
    but if we define the structure in the program with types and write that structure in this parameter it is not taking.
    but if we want to prepare the filedcatalog with program structure how can we prepare it?
    what is the possible cause on not preparing the filedcatalog with the program structure
    Thanks
    Jatender

    u can prepare the field catalog with program structure by using the FM REUSE_ALV_FIELDCATALOG_MERGE.
    Check this code sample:
    1. 1st declare the type for the internal table
    types: begin of ty_purchasing,
            vrsio like s012-vrsio,                 " Version number in the
                                                   " info structure
            spwoc like s012-spwoc,                 " Period to analyze-week
            ekorg like s012-ekorg,                 " Purchasing organization
            lifnr like s012-lifnr,                 " Vendor no.
            matnr like s012-matnr,                 " Material no.
            werks like s012-werks,                 " Plant
            basme like s012-basme,                 " Base unit of measure
            menge like s012-menge,                 " Purchase order quantity
            netwr like s012-netwr,                 " Effective order value
            name1 like lfa1-name1,                 " Vendor name
            maktx like makt-maktx,                 " Material description
            ekgrp like marc-ekgrp,                 " Purchasing group
           end of ty_purchasing.
    All fields must be declared with LIKE not with TYPE otherwise FM
    REUSE_ALV_FIELDCATALOG_MERGE will not work.
    2. Define the internal table
    data:       i_purchasing type standard table of ty_purchasing initial size 0.
    3. Pass the internal table name to fm REUSE_ALV_FIELDCATALOG_MERGE
      call function 'REUSE_ALV_FIELDCATALOG_MERGE'
       exporting
         i_program_name            = sy-repid      " Internal table
                                                   " declaration program
         i_internal_tabname        = 'I_PURCHASING'" Output table name
       changing
         ct_fieldcat               = i_fieldcat    " Field catalog with
                                                   " field descriptions
       exceptions
         inconsistent_interface    = 1
         program_error             = 2
         others                    = 3
      if sy-subrc <> 0.
        message i000 with text-012.                " Error using function
        " module REUSE_ALV_
        " FIELDCATALOG_MERGE
        leave list-processing.
      endif.
    Regards,
    joy.

  • I cannot find the "structure" tab within the insert panel of DW CS6

    I have student and teacher version on Dreamweaver SC6 and am trying to complete the part 2 of the creating your first website turtoral. When I get to the part that deal with insert sub-panels I do not see "structure sub-panel" help!

    This question has been answered several times before. See http://forums.adobe.com/thread/1334537?tstart=0.

  • Updated from Snow Leopard to Mountain Lion and every time the MB goes to sleep I have to change my location to restore the internet connection. Any ideas why?

    I have just updated to ML from Snow Leopard (to be able to use iCloud with my new iPhone 5) and after every time my 2009 MB 13" goes to sleep I have to change location in order to be able to navigate the internet. The connection is made but does not work on navigation. Changing locations enables navigation of the internet. I have three locations 'Automatic', 'Home' and 'Neufbox', my one-month-old ISP-supplied 'box' (router + VOIP telephone). I have never had such problems so I don't remember which location was the default although I am inclined to think it was 'Home'. The MB was delivered on Leopard and I updated to Snow Leopard with no problem. I didn't go to Lion. A friend recommended that I do this latest update because I couldn't synchronise the contacts and calendar from the MB to the iPhone and I hesitated after reading the many reports of inherent problems. I now have great regrets.

    No, it doesn't store a clone. You would have needed to make one with either SuperDuper or CarbonCopy Cloner.
    If the files were in your ~/Library folder then they may still be there. As I said, you can access it by
    going to your Finder "Go" menu hold the option key to choose "Library". I wouldn't think an upgrade would overwrite anything in ~/Library.
    If you have a Time Machine backup you may also be able to use that to retrieve them.

  • Update the structure

    Hi experts,
                  is it possibele to update the structure instead of updating the database table......

    hi,
    When you change a domain, for example its data type, all the data elements, structures and tables referring to this domain must be activated again. This activation is automatically triggered when the domain is activated. This ensures that all affected runtime objects are adjusted to the changed type
    information.
    Changing an ABAP Dictionary object might also affect its dependent objects. Before making a critical
    change (such as changing the data type or deleting a field) you should therefore define the set of objects
    affected in order to estimate the implications of the planned action.
    There is a where-used list for each ABAP Dictionary object with which you can find all the objects that refer to this object. You can call the where-used list from the maintenance transaction of the object.
    You can find direct and indirect usages of an ABAP Dictionary object with the where-used list.
    You also have to define which usage object types should be included in the search (e.g. all structures and tables
    using a data element). You can also search for usages that are not ABAP Dictionary objects (e.g. all programs using a table). The search can also be limited by development class or user namespace.
    If an object is probably used by several objects, you should perform the search in the background.
    The information about a structure (or table) is distributed in the ABAP Dictionary in domains, data
    elements, and the structure definition. The runtime object (nametab) combines this information into a
    structure in a form that is optimized for access from ABAP programs. The runtime object is created when
    the structure is activated.
    The runtime objects of the structures are buffered so that the ABAP runtime system can quickly access
    this information.
    The runtime object contains information about the overall structure (e.g. number of fields) and the
    individual structure fields (field name, position of the field in the structure, data type, length, number of
    decimal places, reference field, reference table, check table, conversion routine, etc.).
    The runtime object of a table contains further information needed by the database interface for
    accessing the table data (client dependence, buffering, key fields, etc.).
    Runtime objects are created for all ABAP Dictionary objects that can be used as types in ABAP
    programs. These are data elements, table types and views, as well as structures and tables.
    Hope this helps, Do reward.

  • Enhance the structure of marketing attributes in the WebUI

    Hi,
    I want to enhance two attributes u201Ecreated_byu201C and u201Ecreated_atu201C in the assignment block u201Cmarketing attributesu201D. This data are in the component = BP_DATA and in the view = MarketingAttributesEOVP.
    When I take the CRM Tx BSP_WD_CMPWB or when I use the Application Enhancement Tool in CRM 2007, I canu2019t choose the attributes u201Ecreated_byu201C and u201Ecreated_atu201C in the view MarketingAttributesEOVP, component BP_DATA.
    Note:
    The attributes u201Ecreated_byu201C and u201Ecreated_atu201C sill exist on a other place. You can find this attributes in the MARKETINGPRO profile, when you create an external list. Itu2019s the component: ELMOE, view: VEGeneralData, attributes: STRUCT.CREATED_BY_TEXT, STRUCT.DATE_CREATED_ON
    I tried two things:
    1.
    I started the Application Enhancement Tool in the WebUI (CRM 2007) and selected the desired area. Then I was in the configuration mode. There I wanted to use the function u201CCreate New Fieldu201D, but it didnu2019t work, because this function is inactive.
    2.
    I used the CRM Tx SE11, data type: CRMT_MKTBP_ATTRIBUTE. In this structure I want to enhance the two attributes. So, I create an append-structure, but I canu2019t enhanced it.
    The problem is that the structure CRMT_MKTBP_ATTRIBUTE has the category u201Ccannot be enhancedu201D (menu u201CExtrasu201D, u201CEnhancement Categoryu201D  à u201Ccannot be enhancedu201D). You canu2019t change this.
    This two trials wasnu2019t successful. So, I think it is not possible, to add attributes to this structure. It this correct?
    Or has anybody a solution? Is there an option to enhance attributes u201Ecreated_byu201C and u201Ecreated_atu201C?
    Thank you in advance!
    Best regards, Jasmin

    >
    neelambari naik wrote:
    > Try using package in select query.
    How would that help??

  • Is it possible to modify the tag structure tree and the role map via scripting?

    We use unstructured FrameMaker to produce training materials which we distribute as tagged PDF to meet accessibility requirements.
    When FrameMaker creates a tagged PDF, it does a fairly good job of populating the structure based on the PDF setup information for the paragraph formats in the FrameMaker documents. However, there are some limitations in the support that FrameMaker provides. For example, almost all paragraphs are assigned to the P role even if they are headings and should be mapped to H1-H6.
    We want to be able to easily post-process a PDF that has been generated from FrameMaker to fix some of the tag structure issues (including tag names and the role map) so that the PDF will provide the optimum experience for a user of the JAWS screen reader.
    I spent some time reading the SDK documentation but didn't find much information about manipulating a tagged PDF via the API, especially via scripting.
    Does anyone have any examples or references which explain how to do it?

    AFAIK, it's not possible with a script. You might want to ask in the SDK forum, as it could be possible with a plugin.

  • Exporting an Pdf file to Excell while retaining the structure

    Hi
    I have a bunch of archival inventories on which I ran OCR. When trying to export them as excell documents the structure was lost.
    The structure is always the same and I am wondering wether there is a script I could write and run before the export in order to retain the structure.
    Or for instance could I create a structures excell document and make the export match it? I did try the auto export with Acrobat Pro X1 and it is a disaster with such documents I am pretty sure it works well in other instances.
    As I am looking for specific type of archival materials (inventories, wills, sales..) I need to be able to count them and retrieve the info attached to them in the inventory.
    Typically an inventory line would be as follow
    Calendro,            Francisco                                June 8,1780               P-400   being the page number  in the actual notarial book          
                                  by Pedro Portal
                                  Sale of Property
    Thanks

    I would suggest that there may be something in JavaScript that would help. However, for an individual file you can use the alt key during selection to select a table. There are also some options to try to recognize a table, but it works better if it is tagged -- not something you get from a scan.
    I just did OCR to an image of an excel sheet. I was not able to save as tables in Excel with a message that no table could be found. This is where the tags would come in. I tried adding tags (in AA9 this is under Advanced>Accessibility), but it did not help.
    I was able to select each column with the Select Text and Images tool. To select a column, hold down the alt key as you use the cursor for selection. You can copy the column to a spread sheet and repeat it for each column. This is cumbersome, but does the job. It may be that you can you JavaScript to select text in a window and copy it to an Excel file. I am going beyond my skill set, but suggestion what might be possible. In the meantime, you can work with the individual files.
    Good luck.

  • SQ02 Create a query whit the structures.

    Dear gurus ,
    i create a query SQ02 whit the initial impostation " Data retrieval by program"  and insert in the field "data structure" the name of the structures where are the value, example ( AFVGD).
    When run the query the value is blanck .
    I must for case to modify the program generated  from the system :
    REPORT  RSAQDVP_TEMPLATE.
      declarations
      (insert your declarations in this section)
    data:
      AFVGD                          type AFVGD                         ,
      it_data type standard table of AFVGD                         .
    field-symbols: <struc> type AFVGD                         .
      selection screen statements
      (define your selection-screen here)
    !! the following comment MUST NOT BE CHANGED !!
    *<QUERY_HEAD>
      read data into IT_DATA
    (select your data here into internal table IT_DATA)
      output of the data
      (this section can be left unchanged)
    loop at it_data assigning <struc>.
      move-corresponding <struc> to AFVGD                         .
    !! the following comment MUST NOT BE CHANGED !!
    *<QUERY_BODY>
    endloop.
    You could advise to me like?
    Thanks a lot for your help
    Daniel Pistilli

    Dear gurus,
    i need of display the data result of the transaction of the leveling capacity in the transaction (CM22).
    I find that this data is present in the structures RCYPP_GEN and after i create a inforecord and a query ( SQ02 and SQ01 ) whit this structures, but don't see the date in the query report.
    In the SQ02 this code abap don't is present in the area coding "in Record Processing section" but the system created a pulsant "data reading program" for link a the area where is present this abap code.
    Are there the soluction for my problem?
    Thanks a lot for you important help
    Daniele Pistilli

  • The buttons in main the vi get locked after opening a vi reference in a subpanel and using buttons within the subpanel.

    I am trying to open a reference to a vi in the subpanel of the main vi. However after the vi opens in the subpanel and after pressing a few buttons in the subpanel the buttons in the main vi get locked, i.e. I can't even close the main vi or control anything else. Is there any way how I can avoid this happening?

    > The buttons in main the vi get locked after opening a vi reference in
    > a subpanel and using buttons within the subpanel.
    >
    > I am trying to open a reference to a vi in the subpanel of the main
    > vi. However after the vi opens in the subpanel and after pressing a
    > few buttons in the subpanel the buttons in the main vi get locked,
    > i.e. I can't even close the main vi or control anything else. Is there
    > any way how I can avoid this happening?
    This is most likely happening because in either the top or sub panel,
    there is an event structure that is queuing events, and is set to lock
    the panel until the events are handled, and because of the logic in the
    diagram, the events aren't being pulled from the queue.
    So, you have a deadlock. You are waiting
    on the panel. The panel is
    waiting on the diagram. And the diagram is waiting on something else.
    So, if there are indeed event structures involved, determine where in
    the diagram things are delaying. Also, if you do not need the panel to
    lock until the event is handled, you can change the setting in the
    events dialog on the structure. But the events will still be queued
    until the diagram starts executing.
    Greg McKaskle

Maybe you are looking for

  • Nothing is happening when itunes is opened and i connect the iphone 4 to it

    I just bought the 32g iphone 4 and when i turn off my other phone and connect this new iphone nothing is popping up in my itunes. Please, please, please someone help me!

  • EAS Server does not start

    Hi, I am running Essbase agent as a service. I have started EAS server and I got the error (pasted below)..and am unable to login to EAS console. How should I fix this error..? Please let me know, Thanks.. Jan 28, 2009 1:05:34 AM org.apache.coyote.ht

  • Overlaping sounds between SWF files

    Hi there! I'm making a serie of animations at my work. Each animation is a different SWF file (with a different background music) and they are all linked by a "Menu". The music was placed in a single layer of the first scene of each animation by usin

  • Name of editable instance inserted on page based on template

    I use a template that has an editable area named "scripts." The code, when I open the template in Dreamweaver, looks like this: <!-- TemplateBeginEditable name="scripts" --><!-- TemplateEndEditable --> However, when I use a browser to go to a page ba

  • Getting Hindi input thro Keyboard

    Hi!! I am developing a GUI where I can enter Indic scripts in Swing components.I am making use of the Win2000 keyboard layout for Hindi.Bu when I start typing in,I get only ? in the JTextArea component.Kindly let me know how to enable the swing compo