Query Deletion log

Does anyone know if there is a log kept in the BW system showing queries that were deleted and who deleted them?
One of our queries was deleted and I'm trying to track down what happened to it...
Thanks,
Chris

Hello guys,
Has anyone got any answers for this post ?
Thanks
S N

Similar Messages

  • Adobe 9.5 deletes log files - need to turn off creation of log files

    We have a bunch of files from SAS outputs that include a .sas, .rtf, .log extensions.
    When we try to convert a batch of the .rtf files to PDF by right clicking on them, the .log files are deleted. The originals are not Adobe .log files, but required files from the SAS output.
    I have unchecked "Delete Log Files for Successful jobs" in both Distiller and the Adobe printer preferences.
    It only deletes the .log with the same name as file types associated with Word. If I create .txt or xls files and .log files with the same name (i.e. test.txt and test.log) it does not delete the .log file, but it is overwritten by the Adobe log.
    This happens whether the file is local or on a mapped network drive.
    If I save to a different location, the .log is not deleted or overwritten, but that is really just a workaround. It's doable if it's the only option.
    They can also copy only the .rtf files to another folder and copy the .pdf files back after, but this is alot of extra work for high volumes
    This is an ongoing need involving lots of files, so moving or renaming is not an option, even with batch programs.
    What I really need to do is stop Adobe from creating AND deleting log files or force it to create the .log files in a different location than the original. Unless the problem is Word, but I cannot find any information on this problem.
    Thanks
    Mike

    Hi Shay,
    You are right, it would make perfect sense, however as you can see from the below forum, I was not able to solve this compilation issue..
    Oracle 10g Email Portlet - HELP PLEASE!!!
    (First post is the issue).
    If you have any ideas on how I could solve it, it would be great.
    Thanks
    Sam

  • Query SQL Logs to get time

    Hello folks, I am connected to a SQL database using Microsoft SQL Server Management Studio. I am querying ISA logs for traffic by running following query;
    select distinct (clientusername)
    from webproxylog
    where logtime > '2014-03-12'
    Now this query returns list of servers accessing the ISA boxes and I can play with dates. What I want is the logs to also show me time, is that possible? Is there something like where logtime > '2014-03-12' AND date, something like that, I am not sure.
    I am new to SQL so any help will be highly appreciated.

    Are you looking for the below?
    select clientusername,Max(logtime) --fetches the max log time for clientusername
    from webproxylog
    where logtime > '2014-03-12'
    Group by Clientusername

  • Querying deleted objects container in Active Directory using JNDI

    Hi,
    I am trying to query deleted objects container using JNDI which fails with error 64.
    Has anyone seen this or knows how to query AD using binary data in JNDI.
    Seems to me there is some problem with the search base.
    search base: <GUID=18E2EA80684F11D2B9AA00C04F79F805,dc=engserver,dc=com>.
    filter: objectclass=*
    search scope: subtree
    This is the error:
    Search example failed.
    javax.naming.InvalidNameException: <GUID=18E2EA80684F11D2B9AA00C04F79F805,dc=eng
    server,dc=com>: [LDAP: error code 64 - 00000057: LdapErr: DSID-0C090563, comment
    : Error processing name, data 0, v893 ]; remaining name '<GUID=18E2EA80684F11D2B
    9AA00C04F79F805,dc=engserver,dc=com>'
    at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2802)
    at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2616)
    at com.sun.jndi.ldap.LdapCtx.searchAux(LdapCtx.java:1744)
    at com.sun.jndi.ldap.LdapCtx.c_search(LdapCtx.java:1667)
    at com.sun.jndi.toolkit.ctx.ComponentDirContext.p_search(ComponentDirCon
    text.java:368)
    at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.search(PartialCom
    positeDirContext.java:328)
    at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.search(PartialCom
    positeDirContext.java:313)
    at javax.naming.directory.InitialDirContext.search(InitialDirContext.jav
    a:245)
    at jSearch.main(jSearch.java, Compiled Code)
    Thanks,
    Chetan

    I thought I had posted one of these. How remiss of me !/**
    * deleted.java
    * 5 July 2001
    * Sample JNDI application to search for deleted objects
    * Modified December 2004 to add Win2K3 lastKnownParent
    import java.util.Hashtable;
    import javax.naming.*;
    import javax.naming.ldap.*;
    import javax.naming.directory.*;
    import com.sun.jndi.ldap.ctl.*;
    class DeletedControl implements Control {
         public byte[] getEncodedValue() {
              return new byte[] {};
         public String getID() {
              return "1.2.840.113556.1.4.417";
         public boolean isCritical() {
              return true;
    public class deleted     {
         public static void main (String[] args)     {
              Hashtable env = new Hashtable();
              String adminName = "CN=Administrator,CN=Users,DC=ANTIPODES,DC=COM";
              String adminPassword = "XXXXXX";
              String ldapURL = "ldap://mydc.antipodes.com:389";
              env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");
              //set security credentials, note using simple cleartext authentication
              env.put(Context.SECURITY_AUTHENTICATION,"simple");
              env.put(Context.SECURITY_PRINCIPAL,adminName);
              env.put(Context.SECURITY_CREDENTIALS,adminPassword);
              //connect to my domain controller
              env.put(Context.PROVIDER_URL,ldapURL);
              try {
                   //Create the initial directory context
                   LdapContext ctx = new InitialLdapContext(env,null);
                   //Create the search controls           
                   SearchControls searchCtls = new SearchControls();
                   //Specify the attributes to return
                   String returnedAtts[]={"distinguishedName","lastKnownParent"};
                   searchCtls.setReturningAttributes(returnedAtts);
                   //Specify the search scope
                   searchCtls.setSearchScope(SearchControls.SUBTREE_SCOPE);
                   //specify the LDAP search filter
                   String searchFilter = "(&(objectClass=user)(isDeleted=TRUE))";
                   //Specify the Base for the search
                   String searchBase = "DC=antipodes,DC=com";
                   //initialize counter to total the results
                   int totalResults = 0;
                   //specify the Deleted control
                   Control[] rqstCtls = new Control[] {new DeletedControl()};
                   ctx.setRequestControls(rqstCtls);
                   //Search for objects using the filter
                   NamingEnumeration answer = ctx.search(searchBase, searchFilter, searchCtls);
                   //Loop through the search results
                   while (answer.hasMoreElements()) {
                        SearchResult sr = (SearchResult)answer.next();
                        totalResults++;
                        System.out.println(totalResults + ". " + sr.getName().toString());
                        // Print out some of the attributes, catch the exception if the attributes have no values
                        Attributes attrs = sr.getAttributes();
                        if (attrs != null) {
                             try {
                                  for (NamingEnumeration ae = attrs.getAll();ae.hasMore();) {
                                       Attribute attr = (Attribute)ae.next();
                                       System.out.println("Attribute: " + attr.getID());
                                       for (NamingEnumeration e = attr.getAll();e.hasMore();System.out.println("   " + e.next().toString()));
                             catch (NullPointerException e)     {
                             System.err.println("Problem listing attributes: " + e);
                   System.out.println("Deleted objects: " + totalResults);
                   ctx.close();
              catch (NamingException e) {
              System.err.println("Problem searching directory: " + e);
    }

  • Query's log viewer

    Hello,
    I'm trying from inside session management to view query's log but I get this Error
    Log Could Not Be Retrieved
    Odbc driver returned an error (SQLExecDirectW).
    Error Details
    Error Codes: OPR4ONWY:U9IM8TAC
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43100] Log Viewer process reported error 0:. (HY000)
    My server runs SuSE 9 Enterprise Linux.
    Any ideas?

    Just to check your user has got logging level set to 2 or higher so that the SQL is being sent to the file?

  • How to delete log files in ACS 3.3

    hi guys, does any 1 know how to delete log/accounting files (*.csv) in ACS 3.3 (software version under win2000 server)
    kindly let me know, coz i m not able to find any option that allows me to delete them

    Have you tried shutting down the ACS Service and moving / deleting the file in Windows 2000 Server.
    You have to turn on the ACS service after you have deleted the log file.

  • Delete logs with SLG2 : system KO

    Hello,
    We have deleted logs with transaction SLG2, and it lead to a abap error.
    Now we cannot run any transaction anymore, always the same screen :
    ABAP runtime error : error code .....
    but without error code ...
    Any ideas ?
    Jarod

    Hi,
    in your PChain, did you try selecting a PSA like 8<ODSTECHNAME>_XX
    All this kind of PSA names for your ODS should get the same two letters at end (it reflects your MyBW source system)
    This might make it!
    hope this helps...
    Olivier.

  • Variants in Query - Delete

    Hi experts,
    If I delete a query, should  the variants of the query deleted?
    thanks

    Hi,
    no they are not deleted. because they are created and then stored into backend tables.
    hope this helps.
    Regards,
    Purvang

  • Query for log Parser to get number of hits in a day or week for particular web applications or site collection

    Hi All,
    Want to get the number of hits in a day for a web application with IIS logs. so need to know Query for log Parser to get number hits in a day or week for particular web applications or site collection. Kindly help
    Regards,
    Naveen

    I'm trying to get this from WSS 3.0, Hence using the Log Parser

  • How to see Reporting Agent Package Deletion Logs?

    Hello, it seems that someone deleted some of our existing reporting agent packages in our production system. I am trying to figure out how to see the specific log for this deletion, does anyone know how/where to find this information?
    Thanks,
    Justin

    That will only give me the execution/activity logs. I need something more along the lines of an object deletion log. For example, like when a request is deleted from a cube or an InfoObject is deleted.
    Thanks

  • How to delete logs?

    How to delete logs which are in SLG1.
    Regards,
    Jeetu

    Hi,
    You can use transaction SLG2.
    If you want do it programmatically then you have to use BAL_DB_DELETE fm (First use BAL_DB_SEARCH to find the logs that you want to delete and use delete fm to delete)
    Hope this helps..
    Sri

  • Deletion Log for output types

    Hi all,
    Where can i find the deletion log for output types
    need to know the username and timestamp.

    Hi Mayank,
    some of the NACE settings are customizing.
    If you enabled the customizing change recordings (which should be ALWAYS enabled on dev system's client), you can browse the changes with the Change Log Browser of customizing tables
    To enable the client recording, please find
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/7e/c81ec852c511d182c50000e829fbfe/content.htm
    If recording was not enabled, no change logs are availible.
    You may reconstruct "old" values by drilling into (released) TMS customizing transports to see which values where included but that's pretty technical view of data.
    Best regards,
    Matthias

  • Resignation / Reliving deletion log data in actions infotype 0000

    Dear all,
    When we delete resignation/relieving entry in Pa30 in actions infotype 0000 no log is maintained.
    where i can see the deletion log please help.
    Regards,
    Gaurav sood

    You have set the indicator in Table:  T529A. for the field U0000 for the leaving action.
    If you set the indicator U0000, the personnel action type is stored in the Actions infotype (0000).

  • Delete log at CSA

    Hi all,
    I use CSA version 5.1, I install CSA at DNS, MAIL and WEB. Now, when I connect to webpage of CSA to manage, I see the inform "he event database now contains approximately 900004 events. This is in danger of exceeding the configured limit. In order to preserve correct operation, events of priority Alert and below will not be logged. Since the last report of this type, 1 events have not been logged. Please purge the event database as soon as possible." and I can't receive log from all server at DMZ. Now, I want to delete log at CSA MC and I can receive log from all server at DMZ. How can I do that?
    Thank you very much.
    Best regards,
    Duy Khang

    Duy Khang,
    You will need to delete some events starting with old and/or unimportant ones first and then purge the database.
    Mine stays at around 200000.
    You'll also want to configure your event logging to log only those events you want see and/or retain.
    That should keep it from filling up.
    What DB are you using?
    Tom

  • Deleting Logs in The Console

    I have been messing around and have found logs...
    System Logs, Console Logs, etc.
    Is it ok for me to delete those, or will it crash my system?
    I just think it's unneeded memory taken up?
    Thanks!

    Megafast:
    Normally logs may be deleted, but, as a general rule, I think it is a VERY bad idea to delete/change operating system components. The amount of space the logs is minimal, and OS X runs daily, weekly, and monthly UNIX routines that delete some rotated logs.
    If you wish to delete logs anyhow, a program called Cocktail provides a GUI front end to UNIX routines/services.
    As a final note, the logs are there for a reason and can be essential in a troubleshooting situation.
    Barry

Maybe you are looking for

  • Fan goes on from the startup and never stop!

    Is that normal? When I turned on my MBP fist in the morning, the temp was only 22 for CPU Core 1 and 22 for CPU Core 2. However, the fan went on from the startup. If the fan noise was silent and soft, I wouldn't complain, but it is so NOTICEABLE. It

  • How do I turn off Facebook birthdays

    How do i remove Facebook's birthday notifications? I want to keep Facebook calendar integration, but I don't want the daily birthday notifications. Is there a way to turn them off using Facebook, iCloud, or any other way?

  • See callerID in Tiger when someone calls my nokia?

    Hello. I'm wondering if there are any applications to display callerID on my imac when my nokia 6230 rings so I can keep it silent and still catch phones regardless of it's location in my office. Seems BT could handle this sort of of thing. Thanks.

  • My contact names wont display in iMessage

    when i receive iMessages from a specific person  who has iOS5 his contact name is not displayed? but he is on my contact list. WHY?

  • Adding a signature to a document

    Can it be done using version 10.1.6?