Query monitoring using AUDIT

Hi all,
DB version : 11.2.0
OS version : RHEL 5.5
I have enabled auditing at the database level. Can anyone let me know how could i find out which query was executed by the user 2 hours before. I am not sure how could i find the query using AUDIT. Just able to see all the trace files generated in AUDIT file destination.
Thanks in advance....
Regards,
Imran Khan

if AUDIT_TRAIL is DB ,use below query
COLUMN username FORMAT A10
COLUMN owner    FORMAT A10
COLUMN obj_name FORMAT A10
COLUMN extended_timestamp FORMAT A35
SELECT username,
       extended_timestamp,
       owner,
       obj_name,
       action_name
FROM   dba_audit_trail
WHERE  owner = '&ENTER_USERNAME'
ORDER BY timestamp;if audit trail is XML,trybelow
COLUMN db_user       FORMAT A10
COLUMN object_schema FORMAT A10
COLUMN object_name   FORMAT A10
COLUMN extended_timestamp FORMAT A35
SELECT db_user,
       extended_timestamp,
       object_schema,
       object_name,
       action
FROM   v$xml_audit_trail
WHERE  object_schema = '&ENTER_USERNAME'
ORDER BY extended_timestamp;

Similar Messages

  • Error while Opening any Query from Query Monitor and Query Designer.

    Hill All,
    I was trying activate activate the Web templates for SRM, all the templates are activated and i am landed in a new problem. when ever i am trying to open a qery thru query Monitor(RSRT), i am popped with the Short dump.
    Short Dump Description:
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "CL_RS_PERS_PHK================CP" had to be
         terminated because it has
        come across a statement that unfortunately cannot be executed.
        The following syntax error occurred in program "GP48WGGNR675NB9JBTAGV72K4CT "
         in include "GP48WGGNR675NB9JBTAGV72K4CT " in
        line 29:
        "The type "/BI0/APERS_BOD00" is unknown."
        The include has been created and last changed by:
        Created by: "CBI_BALAJID "
        Last changed by: "CBI_BALAJID "
    and when i try to debug the program "GP48WGGNR675NB9JBTAGV72K4CT"
    the error is shown at the code level:
    form pers_read
      tables   e_t_data  structure RSPER_S_RETSTRU_BOD
      using    i_maxrows type i
               i_t_sel   type rsper_t_select
      changing e_subrc   type sy-subrc.
      data: l_t_data type /BI0/APERS_BOD00 occurs 0.
      data: l_s_ft like /BI0/APERS_BOD00.
      data: l_s_sel type rsper_s_select.
      field-symbols: <l_s_data> type /BI0/APERS_BOD00.
    i am unable to find the info object APERS_BOD00. where as the error is pointing to sid table of the object.
    that's urgent,Some one Plese resolve the issue.Points will be rewarded for the usefull answers.
    Thanks in advance
    Balaji Donepudi.
    098266-89888

    Hi,
    Check for the consistency of the info object in RSRV.
    Check the info object status in cube like any data is available or not for that info object.
    Also check any parralel load is taking place in that particular cube.
    Please let me know if u face probelm
    Thanks
    Kind Regards,
    Shanbagavalli.S

  • How to know whether a particular query is using the aggregates

    hi all....
    im very new to this group so plz help me out.....anyway hi to all ....
    There are many aggreegates are there but how to know which query is using perticular a?gregates

    Hi,
    use query monitor screen RSRT and select the option execute + debug . and u can have the option of checking display aggreagates for that query!
    cheers,
    ravi

  • IPS Load monitoring using SNMP

    Since CPU is always 100% now in v6.x/v7.x - is anyway to monitor the system load (reported in IDM/IME) using SNMP?
    What counter can be a good indicator for system upgrade that can be monitored using SNMP?

    Currently you can not query IPS senor load via SNMP, there is a feature request out for it.
    If you want to monitor load right now you can write a script that logs into the sensor and preforms a "show statistics virtual-sensor | i Load"
    This is a snapshot, and I believe the GUI provides an average.

  • Query cache,query monitor

    Hi
    wt is the purpose of Query monitor and query cache.. can u plz.. explain
    ponts assured*
    Regards
    Rekha

    As the verbeage indicates, query monitor is to monitor the runtime performance of BW queries. Query monitor is one of the tools in BW to monitor the query performance. The transaction to run query monitor is RSRT.
    In RSRT, you can exceute queries in various modes and you can to some extent enforece a query to be executed in a certain path; For example, you can simulate the execution of  q query without using a aggregate, without using cache, etc.
    In monitor you can also view how the query is getting executed and diagnose the possible causes as to why a query is running slow.
    Caching is to store the query results in the memory of the BW  system's application server.  If you cache a query, the run time performance  will improve considerably, because the result ste is stored in the meonry and every time when the query is run, the OLAP engine will not have to read the data base to fetch the records.
    The query caching has some limitations; if the query result changes, the cache will not help, because the new result set has to be again read from database and presented.
    You can get more on this in help.sap.com
    Ravi Thothadri

  • Can I refactor this query to use an index more efficiently?

    I have a members table with fields such as id, last name, first name, address, join date, etc.
    I have a unique index defined on (last_name, join_date, id).
    This query will use the index for a range scan, no sort required since the index will be in order for that range ('Smith'):
    SELECT members.*
            FROM members
            WHERE last_name = 'Smith'
            ORDER BY joindate, idIs there any way I can get something like the following to use the index (with no sort) as well:
    SELECT members.*
            FROM members
            WHERE last_name like 'S%'
            ORDER BY joindate, idI understand the difficulty is probably; even if it does a range scan on every last name 'S%' (assuming it can?), they're not necessarily in order. Case in point:
    Last_Name:  JoinDate:
    Smith          2/5/2010
    Smuckers     1/10/2010An index range scan of 'S%' would return them in the above order, which is not ordered by joindate.
    So is there any way I can refactor this (query or index) such that the index can be range scanned (using LIKE 'x%') and return rows in the correct order without performing a sort? Or is that simply not possible?

    xaeryan wrote:
    I have a members table with fields such as id, last name, first name, address, join date, etc.
    I have a unique index defined on (last_name, join_date, id).
    This query will use the index for a range scan, no sort required since the index will be in order for that range ('Smith'):
    SELECT members.*
    FROM members
    WHERE last_name = 'Smith'
    ORDER BY joindate, idIs there any way I can get something like the following to use the index (with no sort) as well:
    SELECT members.*
    FROM members
    WHERE last_name like 'S%'
    ORDER BY joindate, idI understand the difficulty is probably; even if it does a range scan on every last name 'S%' (assuming it can?), they're not necessarily in order. Case in point:
    Last_Name:  JoinDate:
    Smith          2/5/2010
    Smuckers     1/10/2010An index range scan of 'S%' would return them in the above order, which is not ordered by joindate.
    So is there any way I can refactor this (query or index) such that the index can be range scanned (using LIKE 'x%') and return rows in the correct order without performing a sort? Or is that simply not possible?Come on. Index column order does matter. "LIKE 'x%'" actually is full table scan. The db engine accesses contiguous index entries and then uses the ROWID values in the index to retrieve the table rows.

  • HDTV as external monitor using ethernet connection

    Hello,
    I want to connect my HDTV to my iMac and use it as an external monitor.
    My HDTV is about 25 ft away from my iMac.
    A HDMI cable of that length cost over 200 $.
    So, its not an option to me.
    I just bought a smart rooter but my HDTV Panasonic Viera P50GT30 is not a smart TV.
    It needs a DLNA server and I can't find one.
    Question : Is there a way to use my HDTV as an external monitor using the Ethernet or Wifi connection?
    Thank's,
    Pierre.

    This look's good.
    http://www.startech.com/AV/Extenders/HDMI/HDMI-over-IP-Extender-with-Audio~IPUSB 2HD2
    But its not.
    OS Compatibility                                                                                                                                                                  Windows® XP(32bit)/ Vista(32/64bit)/ 7(32/64bit) Aero themes supported

  • How to write a SQL Query without using group by clause

    Hi,
    Can anyone help me to find out if there is a approach to build a SQL Query without using group by clause.
    Please site an example if is it so,
    Regards

    I hope this example could illuminate danepc on is problem.
    CREATE or replace TYPE MY_ARRAY AS TABLE OF INTEGER
    CREATE OR REPLACE FUNCTION GET_ARR return my_array
    as
         arr my_array;
    begin
         arr := my_array();
         for i in 1..10 loop
              arr.extend;
              arr(i) := i mod 7;
         end loop;
         return arr;
    end;
    select column_value
    from table(get_arr)
    order by column_value;
    select column_value,count(*) occurences
    from table(get_arr)
    group by column_value
    order by column_value;And the output should be something like this:
    SQL> CREATE or replace TYPE MY_ARRAY AS TABLE OF INTEGER
      2  /
    Tipo creato.
    SQL>
    SQL> CREATE OR REPLACE FUNCTION GET_ARR return my_array
      2  as
      3   arr my_array;
      4  begin
      5   arr := my_array();
      6   for i in 1..10 loop
      7    arr.extend;
      8    arr(i) := i mod 7;
      9   end loop;
    10   return arr;
    11  end;
    12  /
    Funzione creata.
    SQL>
    SQL>
    SQL> select column_value
      2  from table(get_arr)
      3  order by column_value;
    COLUMN_VALUE
               0
               1
               1
               2
               2
               3
               3
               4
               5
               6
    Selezionate 10 righe.
    SQL>
    SQL> select column_value,count(*) occurences
      2  from table(get_arr)
      3  group by column_value
      4  order by column_value;
    COLUMN_VALUE OCCURENCES
               0          1
               1          2
               2          2
               3          2
               4          1
               5          1
               6          1
    Selezionate 7 righe.
    SQL> Bye Alessandro

  • Unable to parse query when using dblink in forms 4.5

    Hi,
    I have created a query that uses a DBlink because I need to do query on a table located on another dbase. I've used the query on creating my report using Reports 6i. The report needs to be called from a menu on our system, which was developed under Developer 2000 (forms 4.5). The problem is, when I tried to access the report from the menu, it returns the error 'unable to parse query'. What I did after getting error was to create a dummy module using Forms 6i, and call my report from there. It worked fine.
    By the way, the table that I'm accessing using the dblink is under Oracle 9i dbase, and the dbase of the system that I've been working at is Oracle 8i.
    I don't have any idea on what's causing this error. Is there a compatibility issue when using a dblink located in Oracle 9i database with forms 4.5?
    Thanks!

    Hello,
    Not sure if it is the good answer, but I know that Forms does not recognize dblink and owner.object syntax. You have to create a simple synomym that point to the distant object and use this synonym within Forms.
    Francois

  • Can you hook up a monitor using hdmi?

    Hi I am using a Cintiqi Display and would like to add another monitor using the other port HDMI is that possible or do I need to do something else. I just wanted another display to watch videos to learn how to do some Adobe products and thought it be easier to watch it on a monitor while I work on the products ...kind of step by step process. 
    thanks for any help  Maggie

    Not all or even many monitors have HDMI ports but it does have one yes it can be connected. You can also use a HDMI to DVI adapter, in fact Apple include such an adapter in the Mac mini box.
    There is one issue you need to consider though, the Mac mini only supports a maximum resolution of 1920x1200 pixels on the HDMI port. If you monitor has a higher resolution then this may not be the best solution.
    Your other alternative is to get a USB Displaylink adapter to allow connecting a monitor via USB.

  • WEB BASED MAPPING APPLICATION TO DEVELOP QUERY UTILITY USING MAPVIEWER

    Dear Sir,
    please any one can answer me as soon as possible its very urgent
    WEB BASED MAPPING APPLICATION TO DEVELOP QUERY UTILITY USING MAPVIEWER
    I     As oracle mapviewer Chapter 8 (Oracle Maps) says generating our own Web based mapping application we are trying to generate our own maps for our own data contains in our layers like example boundary lines and roads and etc. and we are following complete example as described in Oracle Mapviewer Document Chapter 8.
    Before this step we tried with demo data downloaded from OTN mvdemo. And we downloaded latest demo today itself from the OTN and imported into our database schema called mvdemo. And we copied all three jar files mvclient and mvconnection and mvpalette into our jdeveloper .
    II.     We created a jsp to execute the following code from oracle mapviewer chapter 8 documents
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces" prefix="af"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/customizable" prefix="cust"%>
    <%@ taglib uri="http://xmlns.oracle.com/j2ee/jsp/tld/ojsp/jwcache.tld"
    prefix="jwcache"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/html" prefix="afh"%>
    <%@ taglib uri="http://xmlns.oracle.com/j2ee/jsp/tld/ojsp/fileaccess.tld"
    prefix="fileaccess"%>
    <%@ taglib uri="http://xmlns.oracle.com/j2ee/jsp/tld/ojsp/jesitaglib.tld"
    prefix="JESI"%>
    <f:view>
    <html>
    <head>
    <META http-equiv="Content-Type" content="text/html" charset=UTF-8>
    <TITLE>A sample Oracle Maps Application</TITLE>
    <script language="Javascript" src="jslib/loadscript.js"></script>
    <script language=javascript>
    var themebasedfoi=null
    function on_load_mapview()
    var baseURL = " http://localhost:8888/mapviewer/omserver";
    // Create an MVMapView instance to display the map
    var mapview = new MVMapView(document.getElementById("map"), baseURL);
    // Add a base map layer as background
    mapview.addBaseMapLayer(new MVBaseMap("mvdemo.demo_map"));
    // Add a theme-based FOI layer to display customers on the map
    themebasedfoi = new MVThemeBasedFOI('themebasedfoi1','mvdemo.customers');
    themebasedfoi.setBringToTopOnMouseOver(true);
    mapview.addThemeBasedFOI(themebasedfoi);
    // Set the initial map center and zoom level
    mapview.setCenter(MVSdoGeometry.createPoint(-122.45,37.7706,8307));
    mapview.setZoomLevel(4);
    // Add a navigation panel on the right side of the map
    mapview.addNavigationPanel('east');
    // Add a scale bar
    mapview.addScaleBar();
    // Display the map.
    mapview.display();
    function setLayerVisible(checkBox){
    // Show the theme-based FOI layer if the check box is checked and
    // hide the theme-based FOI layer otherwise.
    if(checkBox.checked)
    themebasedfoi.setVisible(true) ;
    else
    themebasedfoi.setVisible(false);
    </script>
    </head>
    <body onload= javascript:on_load_mapview() >
    <h2> A sample Oracle Maps Application</h2>
    <INPUT TYPE="checkbox" onclick="setLayerVisible(this)" checked/>Show customers
    <div id="map" style="width: 600px; height: 500px"></div>
    </body>
    </html>
    </f:view>
    <!--
    <html>
    <head>
    <meta http-equiv="Content-Type"
    content="text/html; charset=windows-1252"/>
    <title>mapPage</title>
    </head>
    <body><h:form binding="#{backing_mapPage.form1}" id="form1"></h:form></body>
    </html>
    -->
    <%-- oracle-jdev-comment:auto-binding-backing-bean-name:backing_mapPage--%>
    III.     When we run this jsp it’s giving us following Two errors
    1     Error:     ‘MVMapView’ is undefined
         Code:     0
         URL:     http://192.168.100.149:8988/MapViewerApp-WebProj-context-root/faces/mapPage.jsp
    2     Error:     ‘themebasedfoi’ is null or not an object
         Code:     0
         URL:     http://192.168.100.149:8988/MapViewerApp-WebProj-context-root/faces/mapPage.jsp
    Please let us know what could be problem as soon as possible. Very urgent
    Please let us know where we can find Mapviewer AJAX API’s for Jdeveloper Extention
    Thanks
    Kabeer

    I currently use parameters, and they are passed from the form to the report. Report is then generated based on a function returning ‘strongly typed’ cursor. The ‘strongly typed’ cursor in my case returns a record consisting of an orderly collection of fields.
    This collection of fields is returned by another function that relies on the IF … THEN logic.
    However, the number of IF ... THEN statements is quite large (currently 64 covering all possible combinations of 6 parameters available in the form).
    I would like to avoid the large number of IF … THEN statements, and hope that there is a way of passing a string to a query, where the Dynamic SQL would in Select close and Where close reflect parameters passed by the form.
    In addition to this I would like to avoid creating and populating a table or a view dedicated to the report, because this may lead to a conflict in case of multiple users concurrently generating reports with different choice of parameters.
    Edited by: user6883574 on May 28, 2009 9:16 PM

  • How to find out Query last used by whom

    Dear All,
    Can any one tell me that "How to find out the Query last used by whom. I have already searched in SDN but no luck. In my system BW Stats are not installed and I have already checked the below tables.
    RSZELTDIR  - Directory of the reporting component elements
    RSZELTTXT  - Texts of reporting component elements 
    RSZELTXREF  - Directory of query element references 
    RSRREPDIR -  Directory of all reports (Query GENUNIID) 
    RSZCOMPDIR -  Directory of reporting components 
    RSZRANGE  - Selection specification for an element 
    RSZSELECT -  Selection properties of an element
    RSZELTDIR - Directory of the reporting component elements 
    RSZCOMPIC -  Assignment reuseable component <-> InfoCube
    RSZELTPRIO -  Priorities with element collisions
    RSZELTPROP - Element properties (settings)
    RSZELTATTR - Attribute selection per dimension element 
    RSZCALC - Definition of a formula element 
    RSZCEL - Query Designer: Directory of Cells
    RSZGLOBV -  Global Variables in Reporting
    RSZCHANGES  Change history of reporting components 
    I am able to find out the Date and time but not the user name.  So could you please help on this.
    Regards
    Sankar

    i think u have missed it.
    RSZCOMPDIR IS THE ONLY TABLE WHICH PROVIDES THE DATA.
    ENTER TECHNICAL QUERY Name in RSZCOMPDIR-COMPID.
    RSZCOMPDIR-TSTNAM gives you the user id of sap bw user who made the change.
    RSZCOMPDIR-TSTPDAT gives you date on which  change was made .
    RSZCOMPDIR-TSTPTIM   gives you timestamp on which  change was made .
    all users details can be obtained from TCODE SU01 where you need to enter sap user id.
    You can also get user name( description) by using tcode SE09 and entering above sap user id.

  • Combine two reports in query designer using key figure with sap exit

    Hi experts,
    i want to combine two reports in query designer using key figure with sap exit
    in the report 1 key figure calculation based on the open on key date(0P_DATE_OPEN)
    to calculate due and not due in two columns
    in report 2 key figure calculate in the time zones using given in variable Grid Width (0DPM_BV0) like due in 1 to 30 days, 31 to 60 days...the due amount based on the open on key date(0P_DATE_OPEN)
    to calculate in 1-30, 31-60, 61-90, 91-120, 121-150 and >150 days in 6 columns
    now i have requirement like this
    not due, 1-30, 31-60, >60, due,1-30, 31-60, >60 in 8 columns
    or
    not due, due, 1-30, 31-60, 61-90, 91-120, 121-150 and >150 in 8 col
    thank you

    Hi Dirk,
    you perhaps know my requirement,
    for the management to make used in one report,
    we have in reporting finacials Ehp3.
    Vendor Due Date Analysis - which show due, not due
    Vendor Overdue Analysis - show only due and analysis in time grid frame
    i want to combine in one report that show NOT DUE, DUE, DUE time frames in grid.
    krish...

  • A definitive answer? : Can you use Audition on a Mac??!

    I have heard all sorts of conflicting views on this and I thought someone here would be able to set the record straight! I wanted to get a Mac, because I like them, but I use Audition all the time for my work. Is a Mac a good idea? If not, could anyone recommend the best sort of laptop to get if you're going to be doing a lot of audio editing (for radio).
    Thanks a lot!
    Rachel

    Hey - I've just signed up to get the benefit of the experience & wisdom of audio experts. It looks like I can expect plenty of that so thank you in advance.
    From this thread, seems like I can also get some opinion without much basis in fact and outright paranioa too. Just an observation and not a criticism - I have my own foibles to bring to the party too  ;-)
    here's some facts from me.
    I run and work in an environment of mixed Windows and Macs - initially, around 30 Windows audio workstations and a handful of Macs. I've been here since the days of analogue tape; my first audio editor was Cool Edit on Windows 3.11.
    The cheaper purchase price of the Win machines is soon offest by the much higher cost of maintenance, repair and replacement. Windows workstations need replacing after 3 years - some of them will have broken beyond repair in that time. The Macs are on a five year replacement program - but they often run longer than that. Yes, Macs break down but nowhere near as much as the Win PCs. This is true for towers and laptops. I refuse to buy any more Win laptops as even the best brands fail so quickly. I now by mac laptops and often they're used in Windows only. Last year we replaced 20 Win workstations with dual boot Macs so we now use both OS's side by side. We only still run Windows because Audition is our audio tool of choice.
    Macs do not get viruses. Period. We have no virus or malware protection measures on the Mac side and we have no problems. Zero. We've had massive virus issues on the Windows side, particularly spread by USB memory sticks. With later versions of XP and now 7, it's got a lot better but we still have to run extra software (that slows down performance) on Windows and spend a lot of time updating definitions etc.This is a high cost and should be factored into cost considerations.
    Macs are suspecptible to trojans of course - but not as much as Win. There are simply fewer of them and the OS is implemented in an inherently more secure way. That said, if some plonker is going to open dodgy email attachments or going clicking around 'exotic' websites, then they are effectively inviting the vampire over the threshold- whatever the OS and hardware! But Macs do not 'catch' viruses like Windows.
    I've been running Audition on my Mac laptops for years under emulation and straight Windows - since Windows 98 SP2. I'm writing this on a five year old MacBook Pro - it's a laptop and it gets hammered and carried everywhere daily in a tatty padded bag. On it I run Audition 1.5 under Parallels (XP), happily getting sound in and out, using a variety of internal and external sound cards (FW & USB). There was once a problem with an M-Audio driver but it was fixed next update and none since. As it's one of the earliest ones, it's maxed out at 2GB RAM and it has the standard 5200 rpm hard drive & 2.16 Core Duo (note: mine's not a Core 2 Duo, which is the current spec and much faster), so you can see it's way below the current models' spec. If I'm doing a big project in Audition with lots of resources running, I use a dedicated modern desktop computer, but for my day in,day out work, my old laptop copes well. I tried Audition 3 on it and it seemed to work ok but the licence was for another machine so I didn't test it in anger. Two people I know with recent Macbook Pros run Windows & Mac OS together and I'm amazed at the ease and speed of them. When my employer allows me, I hope to upgrade to one of those but as long as this old faithful keeps going, I've no chance.
    If I had my personal choice it would be Mac all the way - not because it's perfect, but cos it's the better option. But I know and work with people whose knowledge and experience I respect who think the same about Windows. We get on well together.
    BTW, the information from someone about one button mouses is a decade or more out of date. With my mac I use the trackpad (which gets 'right-clicks' & more) and often a two button+scroll wheel Microsoft mouse. If we're going to help each other out today, lets not talk ancient history.
    I'm about to make more purchases for streaming audio on the web. I'll be installing Audition on these, of course. I'll probably be buying Windows computers to do this because the start budget is too small. But I'll expect to be replacing these in a couple of years and I know from experiecne they'll be less reliable than a Mac tower that would cost almost twice as much. That's a false economy and false efficiency in my view, but it's a strategic choice and it will work well till it breaks.
    To summarize, so far I've found no perfect solutions to computer based audio issues - all setups will have their problems. But it is both possible - and to me prefereable - to run Audition on current Macs. And while the initial purchase price of Mac options looks expensive, the total cost of ownership is probably at least equal if not less - but the experience along the way is much less troublesome, more productive and happier.
    Enjoy your audio editing whatever it's on.
    SnubberD

  • Using Audition 2.0 on Windows XP platform.  Now have Windows 8.1 on new computer and need to upgrade and load latest version of Audition.  Any suggestions?  Thanks very much.....R

    Using Audition 2.0 on Windows XP platform.  Now have Windows 8.1 on new computer and need to upgrade and load latest version of Audition.  Any suggestions?  Many thanks, R.

    VC6. is rather old, but you can try to convert the VC6 project using the upgrade wizard of VC2012. Depending on the content of the project your code will work more or less without problems, at least it will compile without errors.
    You could also go the 2nd way and create in VC2012 a project type using the wizard that is very similar to your current VC6 projcet (MDI, SDI, Dialog Based, ...). Than you replace the files generated by the wizard with the content of your project. Sometimes
    this way is more successful.
    But at all the automated converting success depends on the code of your VC6 project. I had both, conversions without big problems and also conversions that need a lot changes to run on a current VC version.
    Best regards
    Bordon
    Note: Posted code pieces may not have a good programming style and may not perfect. It is also possible that they do not work in all situations. Code pieces are only indended to explain something particualar.

Maybe you are looking for

  • Editing (cut/paste/move) more than one track at a time

    i'm new to mac/garageband and everything is going great so far. i'm currently using my fostex hardisc recorder to record basic tracks and then dumping them into my imac as wave files. i'm currently trying to edit a drum track that requires editing al

  • Problem during Auto PO Creation

    Hi    Im using a user exit for Auto PO functinality ..    I have following conditions for creation of Auto PO    1) For PR with source of supply as Info record will not be converted in PO automatiocally as Info record contains historical prices..   

  • Export single table in maxdb 7.4 and import table into maxdb 7.7

    Hello Guru Need your help as follows how to export single table from 32 Bit MAXDB 7.4 and import same table into another MAXDB 7.7 X64 bit. Thanks and Regards A P Rao

  • ReferenceError: Muse is not defined

    Hi, I madea site,uploaded it to our testserver... everthing fine. upload to the final server, everything is crowded and I got the message:  ReferenceError: Muse is not defined any idea? everthing is exactly the same, no path has changed.. Thx for all

  • Global creation activity

    I create and test a process in BPM studio 10g and deploy it to the BPM standalone 10g in the same machine. It is fine. Then, I copy the ***.esp file and deploy it to the BPM standalone 10g at another machine. The gloable creation activity is missing.