Can't create a new query with an error msg

We used to create a query called, eg, Q, then we copied it to Q_1 and deleted Q, but somehow when we try to rename the copied query Q_1 back to Q by creating a new query called Q, get error msg saying that 'Query name Q exists already'.  When we try to find the query from BEX analysor, can't find it, and also the query is not an entry of the table RSZCOMPDIR.  Somehow the query Q still exists somewhere in the system.
Anyone's idea is greatly appreciated on how to resolve the problem!

hi Kevin,
with RSZDELETE, the query visible ?
check thread
Deleting "Ghost" queries
Deleting queries using RSZDELETE
try program ANALYZE_RSZ_TABLES ? (OSS Note 792779)
hope this helps.

Similar Messages

  • How can i create a new user with only read rights ?

    How can i create a new user with only read rights ?

    You are asking about a Database User I hope.
    You can look into the Oracle 8i Documentation and find various privillages listed.
    In particular, you may find:
    Chapter 27 Privileges, Roles, and Security Policies
    an intresting chapter.
    You may want to do this with the various tools included with 8i - including the
    Oracle DBA Studio - expand the Security node and you can create USERS and ROLES.
    Or use SQL*Plus. To create a
    user / password named John / Smith, you would login to SQL*Plus as System/manager (or other) and type in:
    Create user John identified by Smith;
    Grant CONNECT to John;
    Grant SELECT ANY TABLE to John;
    commit;
    There is much more you can do
    depending on your needs.
    Please read the documentation.
    -John
    null

  • If i cancel an account can I create a new one with the same e-mail address?

    I made an account with Game Center and I wanted to use it to get some free apps on the iTunes Store. When I tried to sign in on iTunes (for Windows) it said I had to review my details. I didn't have a credit card so I couldn't complete it and there wasn't any option for no credit card.
    I wondered if I could cancel my account and create a new one with the same e-mail address. There was a discussion that you could create a new account on the iTunes Store and have the choice to not have a credit card.
    Any help will help!
    SuperHoops

    No, it does not, not if the creation of the Apple ID was completed, which unless you are referring to a different Apple ID I presume it did since you are posting here. And once created, you can't get apps without providing a payment method; setting up for just free apps requires a very specific procedure or a payment method is necessary. Creating an account via Game Center does not work.
    If you can create a new email address (Gmail or Yahoo mail will work), take a look here:
    http://support.apple.com/kb/HT2534
    Read the steps carefully as the order in which you follow them is critical. Note that you can do this only when creating a new Apple ID. You cannot use an existing ID. 
    You will of course not be able to get anything other than the free apps without entering in some sort of payment method (credit card, prepaid iTunes card, gift certificate, etc.)
    Regards.

  • Can I create a new folder with Js in ID?

    Hi,
    I want to create a new folder(not an exist folder) with JS in ID.
    Anyone can tell me how to do?
    Best Regards
    Goldbridge

    Goldbridge,
    I don't have time to check it, but f2, I think, should be a file path or a file object - not a folder object:
    fileObj.copy (target)
    target - A string with the URI path to the target location, or a File object that references
    the target location.
    Copies this objects referenced file to the specified target location. Resolves any aliases to find the source file. If a file exists at the target location, it is overwritten.
    So it should be:
    var myText = "save this";
    f1=new File("~/Desktop/images/1.txt");
    f1.open("w");
    f1.write(myText);
    f1.close();
    // I assume that aaa folder already exists
    f2=new Folder("~/Desktop/images/aaa");
    f1.copy("~/Desktop/Images/aaa/1.txt");
    Kasyan

  • Can I create a new document with a locked PDF file, add new pages, and lock it all again?

    I published a PDF document ten years ago and now want to add Creative Commons licensing language to the copyright page.  But I forgot the password!  I gather from the Forum that there is no way to recover the password.  However, I wonder if I can take the locked PDF file, create a new document (adding a new page for the licensing information), then lock the whole thing up again.  Will this work?  Thanks for your help!                                                                               

    To create an unprotected file you would need the password.

  • MetaDir: How can I create a new DN, with parts of other attributes?

    I would like to create a new DN in the join process. I have an attribute employeenumber, being xxxx, where x is a digit. I'd like to create a dn being "uid=34#12, ou=...", taking the third and fourth digits from the employeenumber, followed by a # and the first and second digit. I can't seem to decipher the syntax to accomplish this. Anybody know this?
    tia

    One easy way: reset after importing (which can be done from library module - e.g. main menu, context menu, quick-develop...). If you can't even get that far, consider using exiftool to strip the xmp from DNGs and/or jpegs, or just delete xmp sidecar file in case of proprietary raw.

  • How can I create a new User with the Java API like OIDDAS do?

    Hello,
    I'm currently working on an BPEL based process. And i need to create an OCS user. So far I can create an user in the OID. But I cant find any documentation about given this user an email account,calendar and content function etc.
    Did anybody know if there are some OIDDAS Webservices? Or did anybody know how to do this using the Java APIs?

    You are asking about a Database User I hope.
    You can look into the Oracle 8i Documentation and find various privillages listed.
    In particular, you may find:
    Chapter 27 Privileges, Roles, and Security Policies
    an intresting chapter.
    You may want to do this with the various tools included with 8i - including the
    Oracle DBA Studio - expand the Security node and you can create USERS and ROLES.
    Or use SQL*Plus. To create a
    user / password named John / Smith, you would login to SQL*Plus as System/manager (or other) and type in:
    Create user John identified by Smith;
    Grant CONNECT to John;
    Grant SELECT ANY TABLE to John;
    commit;
    There is much more you can do
    depending on your needs.
    Please read the documentation.
    -John
    null

  • How can I create a new DB with Oracle XE ?

    Hi
    I'm a newbie with XE. I'd like to migrate an MS SQL Server DB to XE. How do I go about it ?
    Thanks for help.
    Bernard

    CREATE USER ...
    GRANT CREATE TABLE TO USER
    In many ways, Sybase (and therefore it's derivative SQL Server) use the term 'database' in a similar way to Oracle's 'schema'. Ninety-nine times out of a hundred, when a person wants to migrate from SQL Server to Oracle and asks this question, they will be happy simply to create a schema.
    In Oracle terms, a schema is a named collection of database objects (tables, indexes, stored procedures, etc.). The confusing part is that the 'name' is simply the Oracle user that is designated the owner (or adminstrator) of that collection.
    So, all you need to do is create a user designated to own the collection; give that user the privileges to create the object; start creating the objects; grant permission to other users to access those objects.
    The most painful difference for a Microsoft specialist is the 'granting permission to access'. Oracle takes the 'unix' view of security - provide minimum access and explicitly grant as required, whereas Microsoft products (or at least typical Microsoft product administrators) by default tend to use the 'grant access and use restrictions when required' approach.
    Oracle's approach to access and security seems to 'create roles, grant them appropriate access, assign users to those roles'. The benefit is accountability. The drawback is extra administration.

  • Can't create a new account with Godaddy

    My incoming is Mail.mydomain.org
    My outgoing is smptout.secureserver.net
    I set my Name and Password but mail just sits and hangs. does nothing.
    Anyone have this problem and could you help?
    Thanks
    Phil

    I had to shorten my GoDaddy password to 12 characters in length (originally it was 18) in order for Mail to accept it. I don't know if that'll work for you.
    iMac G5 2.1 GHz, 1.5 GB RAM   Mac OS X (10.4.9)  

  • How to create the new row with existing values

    Hi all,
    first of all i create a row,
    i opened that in edit mode,
    suppose i want to edit any one of the value in that recordd,
    that time compulsory create a new row with those valuess.
    how can i create a new row with those valuess.

    Hi Anusha,
    This code correct for your requirement, only thing is you are not able to modify it as per your requirement.
    What you have to do is:
    1. Copy queried row into into new row, change primary key values(but don't commit your changes here).
    2. Now you have two rows in your VO(OLD as well as New)
    3. Make any changes if you want using User Interface.
    4. At the save button first compare OLD and NEW row, if any value is differing then commit the chnages(it will insert new row in corresponding database table), if no changes are there I mean to say OLD value and NEW rows are same then rollback(it will remove copied row from VO and no row will be inserted in database.)
    While comparing rows please note that Primary keys will not be same so don't compare Primary keys while comparing rows.
    I hope it will help you.
    Regards,
    Reetesh Sharma

  • How can I create a new iCloud account for a familiy member having a new iDevice and reuse one of my aliases for it

    Hi there,
    I moved into iCloud from the very beginning and started with one iCloud account for me and my family, making use of email aliases for family members. Now the number of personal iDevices grows and I want to create a new and separate iCloud Account for my son. The pity is, that I reserved his full name already as alias address on my initial iCloud account. If I now delete this alias, can I create a new account with the former alias as new primary email address?
    Or is there at least any transfer procedure supported for aliases between different accounts?
    Thanks for your help, lauterbachj

    Couldn't agree more... the folks who are getting penalized for this are the early adopters of .Mac/iCloud dating from the days when the only way to implement a "family" account was to use aliases. Now all my kids' / my wife's name aliases sit in my account, unable to move. I guess the good news is that if I delete them nobody else will get them, but this seems a pretty poor consolation.
    Would it really be so difficult to implement a "move this alias to another iCloud account" option that requires the "sender" and "receiver" to exchange some sort of code to implement the transation in order to prevent fraud?

  • I can't create any new reminders on my iPhone 5S with iOS 8.

    Hi.
    I have a 16 GB iPhone 5S with iOS 8.1.3. The problem I have is that I can't create any new reminders, at all. The problem started with my iPhone 4 (which I had before this phone), and I was using iOS 7 when the problem arose (but it didn't start immediately after I switched to iOS 7).
    One day when I had the iPhone 4, I noticed that all my reminders had disappeared, and that I couldn't create any mew ones because the New List + button is grayed out. I didn't try to fix it until I got my 5S. I got to the "Scheduled" list and was able to type in a reminder (I thought I was a genius). But then when the time I'd set for the reminder actually came around, nothing happened, and when I checked Reminders, the reminder I'd entered was gone.
    I tried using Siri to set a reminder but she said she couldn't.
    I've tried Googling it, but it just says to press the + button to make a new list, and then start typing.
    I recently got a MacBook Air which I synced up to my phone, and all my old reminders from my iPhone 4 are there, and I can create new reminders. Except they don't show up on my phone (which I think they're supposed to do, right?). They do show up on my computer, though.
    I've taken to emailing myself things I need to remember, which is fine, I guess, but sometimes they get buried in my inbox.
    Any help would be fantastic!
    Also, if you'd like me to clarify anything, I'm happy to do so because I don't know how much sense this makes.
    Thanks so much!

    I have exactly the same problem. I discovered it yesterday.
    I have a 16 GB iPhone 4 with iOS 7.1.2, just to note that we both are using different devices and different iOS versions. I will add here some screenshots of the problem.
    Main view of the application when opened (the only tappable elements here are the search bar and the clock icon on the top):
    Result of tapping the search bar and searching for an existing reminder:
    Result of tapping the clock for showing scheduled reminders:

  • Can't sync anything with my microsoft account and can't create a new one?

    Hi,
    I have recently done a software update to Windows 8.1 and now every time I try to access an app it prompts me to sign in to sync my data. I follow the screen prompts using my email address and password (the same as the one I have used to access this forum
    so my current working microsoft account) and it says a microsoft account with this email address already exists on this PC. 
    I get through to the validation code page section, the code is sent to my phone, I enter it, the cloud information page is displayed the switch to microsoft account option appears I click switch and it says an account already exists on this PC???
    If  I try to choose the alternative option of creating a new account with the same email address (my main email account) I have the same issue which is an account already exists. 
    I have lost data and can't sync any music tracks etc - hugely frustrating!
    What do I do??

    Hi,
    What's your current User Account? Local Account or Microsoft Account? If local account, please sign out and switch to Microsoft Account. If not, it should have problem with your Microsoft Account, please try to delete it from your system and readd it for
    test.
    Roger Lu
    TechNet Community Support

  • How can I create a new TC backup with ethernet, so I don't have to wait two days for a new wireless backup?

    How can I create a new TC backup with ethernet, so I don't have to wait two days for a new wireless backup?
    Several times in the last year, I've gotten a message that Time Machine needs to completely redo my backup. Using the wireless connection, this takes almost two days. Is there a way to do the backup with ethernet and then switch back to wireless? Thanks.

    May I know what is needed to make sure the MacBook is able to see Time Capsule on ethernet?
    Connect an Ethernet cable from one of the LAN <-> ports on the 2Wire gateway to the WAN port (circle of dots icon) on the Time Capsule.
    If AirPort Utility cannot "see" the Time Capsule now, you will need to perform a "hard reset" by holding in the reset button for 7-8 seconds or so and then reconfigure the Time Capsule. You can use the same Time Capsule name and password, etc. as before.
    Configure the Time Capsule to "Create a wireless network" and select the Bridge Mode option when it appears during the setup using AirPort Utility.
    Once the Time Capsule is configured, restart the entire network again. Power down everything, start the 2Wire first and then start each other device after that one at a time about a minute apart.
    Now you can connect your Mac directly to one of the LAN <-> ports on the Time Capsule for the backup using another Ethernet cable. In general, about 20-25 GB per hour will transfer.
    The Time Capsule will broadcast a much faster wireless network than the 2Wire can provide, so you might want to leave the setup "as is" for awhile after the first backup is complete. If you decide to use the Time Capsule as your main wireless access point, you would want to turn the wireless off on the 2Wire since two wireless networks in close proximity can create interference problems.
    Or, if you want to use the wireless on the 2Wire, you could turn off the wireless on the Time Capsule. Then backups will occur over the 2Wire wireless, or over Ethernet.
    I don't really recommend the "Join a wireless network" setting on the Time Capsule for most users, but you could go back to that setup as well if you want after the first backup is complete.

  • Oracle Forms - How can I create a Data Block with query

    Dear friends I have a question, I couldn't do this..
    I have a sql query, I want to show the datas of the query.. How can I do this. ?
    Data Block Wizard wants a table, view or stored procedure, but I have a query, how can I create a data block with my query.. I m waiting your helps..? Please...
    Semih

    Hi,
    You have two options
    1. create a view and base the block on the view
    2. create a block with a query Data Source Type of 'FROM clause query'
    Hope this helps
    Neil

Maybe you are looking for

  • Advice Needed for Video Capture Device

    Hi, I'm looking to buy a USB (or Firewire if they exist) video capture device that can take S-Video and composite connections. Could someone recommend me best one under $150 that is compatible with Snow Leopard? Also, and more importantly, does anyon

  • DAQmx VIs Timeout Problems

    Hello, I am trying to acquire 9 frequency input chanels thorugh PXI-6624 card. I have 9 independent loops for 9 frequency counter chanels. I am able to read all the frequencies above 10Hz properly. Now the problem is, Sometimes there will be no pulse

  • Exporting large excel file exception

    Hello- I am using Jasper reports within a j2ee application to generate an excel file, and this file is written on the reponse outputstream. It is deployed as a web application on Oracle application server 10g When the generated xls file is large like

  • System id using java

    how to get system id using java ,also MAC address?

  • Issue with Adobe Reader/IE9 after upgrade

    Hi, We have an application that displays an interactive PDF (generated using Forms ES2) in an IFrame within the browser window (IE).  There is a button in a different frame that passes a String[] to this PDF using the "postMessage" Javascript method