Recycle Bin

In Oracle 10g which tablespace does DBA_RECYCLEBIN uses?

JP88 wrote:
In Oracle 10g which tablespace does DBA_RECYCLEBIN uses?FWIW - V10 is no longer support.
what makes you thinks a single tablespace is involved.
what tablespace does DBA_VIEWS use?
How do I ask a question on the forums?
SQL and PL/SQL FAQ

Similar Messages

  • I moved itunes file to external hard drive and want to move the file on my pc to recycle bin. When I move i get an error message that it cannot delete ituneshelper.dll access is denied. Can I move that file to the recycle bin?

    I am trying to free up space on my pc and moving itunes files to external hard drive. I have followed instructions and believe I have file copied to new drive, but I am having trouble moving file to recycle bin as the instructions say. I am getting the following error message: cannot delete ituneshelper.dll:access denied, make sure disk is not full or write protected and file not in use. I know the file is not in use when trying to move. Any help would be most appreciated. I am on Windows XP.

    Yes. And you should not have moved that folder. Put it back. To move your iTunes library move the folder from User's Music.
    tt2

  • Recycle bin option disapeared when deleting a file from iTunes library?

    Problem : files deleted from my iTunes Windows library are not deleted on my hard drive.
    how to get back to the full "delete" features in iTunes library where you are asked if you want to put the files in the recycle bin or not? By mistake I 've ticked the option " don't ask again"
    thx
    iTunes 10.5.1.42

    OK I did follow the sequence but i still have only 1 msg instead of 2
    1/are you sure you want to delete the selected song from your iTunes library
    AND NOT THE SECOND
    2/ REMOVE TO RECYCLE BIN

  • Delete songs from itunes library, no option to keep file or move to recycle bin

    iTunes Version 11.0.1.12
    I just finished moving my library to a different drive and all seemed to be fine until I started cleaning out some duplicate songs.  When I delete a song from the library, it does not ask if you want to keep the file or move to the recycle bin.  Only 1 window comes up asking - Are you sure you want to delete the selected song?.....and there are only 2 choices - Delete Song or Cancel.  "Do not ask me again" still shows in the window with the box.
    In Preferences under Advanced, the path shows  - G:\iTunes\iTunes Media\iTunes Music.
    I checked for other references to this but could not locate.
    Would certainly appreciate some help - thanks

    I have this question too - Help tells me option is there but it's not

  • Enable Recycle Bin on mapped network drives

    A few years ago I discovered how redirected user profile folders in Windows get Recycle Bin protection, even when the folders are redirected to a network location. This was a huge find for me, and I used this feature to add Recycle Bin coverage to some of
    my mapped network drives. I shared this information on another forum here:
    http://forums.mydigitallife.info/threads/16974-Tip-Network-Recycle-bin
    Today I figured out a better way to achieve the same goal that doesn't rely on user profile folder redirection, and am sharing that information for other users to try out. You might want to take a look at these forum topics for additional information:
    http://technet.microsoft.com/en-us/library/cc787939(v=ws.10).aspx
    http://blogs.technet.com/b/askds/archive/2012/07/16/managing-the-recycle-bin-with-redirected-folders-with-vista-or-windows-7.aspx
    http://msdn.microsoft.com/en-us/library/bb882665.aspx
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/10bfcfb9-14f3-434e-9ffa-0289b8b32e01/folder-redirection-recycle-bin
    The standard disclaimer applies - this might break stuff. I've only tested in Windows 8, and my testing is limited. Try this at your own risk.
    This is what I've learned (or think I've learned - I might be wrong):
    Windows Vista and later store the configuration settings for the Recycle Bin for redirected user profile folders in this registry key: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\BitBucket\KnownFolder
    Under this key are separate keys for each redirected folder that is protected by the Recycle Bin. The keys contain the configuration information for each protected folder, and are named to match the GUIDs for "Known Folders." A list of the Known
    Folder to GUID mappings is available in one of the links above.
    The registry also contains a list of "known folders" at this location: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions
    So, I reasoned that if I could create my own custom "known folder," I could add that to the list of folders that were protected by the Recycle Bin and protect any mapped network drive I wanted. So I looked at the list of existing "known folders"
    and created a key that was similar to the Documents key. I then fiddled with the values in the key until I narrowed it down to the minimum number needed to make the recycle bin work.
    This .reg file will protect a mapped X: drive with a ~50GB recycle bin. You should modify the file to fit your needs:
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{9147E464-33A6-48E2-A3C9-361EFD417DEF}]
    "RelativePath"="X:\\"
    "Category"=dword:00000004
    "Name"="XDrive"
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\BitBucket\KnownFolder\{9147E464-33A6-48E2-A3C9-361EFD417DEF}]
    "MaxCapacity"=dword:0000c7eb
    "NukeOnDelete"=dword:00000000
    A few things of note:
    The GUID in the above .reg file {9147E464-33A6-48E2-A3C9-361EFD417DEF} came from this PowerShell command: "{"+[guid]::NewGUID().ToString().ToUpper()+"}"
    Each "known folder"/Recycle Bin combination requires a unique GUID. If you don't want to use PowerShell to generate a GUID, you can use an online GUID generator.
    I don't know what the "Category" value does, but the key I copied had it set to 4, and that works, so I didn't test any other values.
    The "Name" value is required, but is not the name that will be shown if you right-click on the Recycle Bin and select properties. (At least not in my environment.) In my environment, the name that is shown is the name of the network drive.
    Making this change adds a "Location" tab to the properties page of your mapped network drives. I suspect this could be removed by changing the "Category" value, but didn't bother to find out.
    I only tested with mapped network drives. I suspect this would work with UNC paths as well, but I didn't bother testing.
    I hope you're as excited to find this as I was to figure it out. Let me know if this works for you. I now plan to deploy the registry keys with Group Policy Preferences and will update this forum post with any information I discover.
    Best regards
    --Russel
    Update: I am now using Group Policy Preferences to deploy the needed registry keys, and all my mapped network drives are now protected by the recycle bin.
    Update 2: I have tested now with UNC paths, and this works fine. I still use mapped network drives, but if your environment requires UNC paths instead, you can use them. Note however that if you have a mapped network drive that points to a UNC path, and
    you protect the UNC path with a registry change, if a user deletes a file from the mapped network drive that points to that UNC path, the file will be permanently deleted. See below for more details.

    FANTASTIC work Russel !
    This is extremely helpful.
    I've turned your work into a Bat Script that will automatically make the reg file.
    It creates a unique guid each time it is run, so no worries on overlaps.
    Just copy and paste the following into notepad
    and save it as "Network Recycling Bin - auto make registry file.bat"
    echo off
    REM ========== MAIN FUNCTION  ========================
    Call :CreateREGfile
    PAUSE
    goto :eof
    REM ========== SUB FUNCTIONS  ========================
    :CreateREGfile
    set /p RelativePath=Enter
    current mapped path of drive (e.g. X:\FileShare\D_Drive):
    REM replace \ with \\ (for reg value its a requirement)
    Set RelativePath=%RelativePath:\=\\% 
    set /p MaxBinSize_Dec=Enter
    max size (in mb) (eg 11gb=11000):
    call :toHex
    %MaxBinSize_Dec% MaxBinSize_Hex
    Set outputREG="Network
    Recycling Bin - %RelativePath:~0,1% Drive (%MaxBinSize_Dec%mb).reg"
    call :MakeGUID_VBS NewGUID
    REM echo My new GUID : %NewGUID%
    echo Windows Registry Editor Version 5.00
    >
    %outputREG%
    echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\%NewGUID%]
    >>
    %outputREG%
    echo "RelativePath"="%RelativePath%"
    >>
    %outputREG%
    echo "Category"=dword:00000004
    >>
    %outputREG%
    echo "Name"="NetworkDrive2RecyclingBin_%NewGUID:~1,5%"
    >>
    %outputREG%
    REM The "Name" value is required, but is not the name that will be shown if you right-click on the Recycle Bin and select properties. That will be autoset to the network drive name.
    echo.>>
    %outputREG%
    echo [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\BitBucket\KnownFolder\%NewGUID%] 
    >>
    %outputREG%
    echo "MaxCapacity"=dword:%MaxBinSize_Hex%
    >>
    %outputREG%
    echo "NukeOnDelete"=dword:00000000
    >>
    %outputREG%
    goto :eof
    :MakeGUID_VBS
    echo set obj
    = CreateObject("Scriptlet.TypeLib")
    > TEMP_generateGUID.vbs
    echo WScript.Echo obj.GUID
    >> TEMP_generateGUID.vbs
    FOR /F "usebackq tokens=*"
    %%rin (`CSCRIPT "TEMP_generateGUID.vbs"`)DO
    SET RESULT=%%r
    set
    %1=%RESULT%
    del TEMP_generateGUID.vbs
    goto :eof
    :toDec
    :: todec hex dec -- convert a hexadecimal number to decimal
    ::             -- hex [in]      - hexadecimal number to convert
    ::             -- dec [out,opt] - variable to store the converted decimal number in
    SETLOCAL
    set /a dec=0x%~1
    ( ENDLOCAL & REM RETURN VALUES
        IF "%~2"
    NEQ "" (SET %~2=%dec%)ELSE
    ECHO.%dec%
    EXIT /b
    :toHex
    :: eg  call :toHex dec hex -- convert a decimal number to hexadecimal, i.e. -20 to FFFFFFEC or 26 to 0000001A
    ::             -- dec [in]      - decimal number to convert
    ::             -- hex [out,opt] - variable to store the converted hexadecimal number in
    ::Thanks to 'dbenham' dostips forum users who inspired to improve this function
    :$created 20091203 :$changed 20110330 :$categories Arithmetic,Encoding
    :$source http://www.dostips.com
    SETLOCAL ENABLEDELAYEDEXPANSION
    set /a dec=%~1
    set "hex="
    set "map=0123456789ABCDEF"
    for /L
    %%Nin (1,1,8)do
        set /a "d=dec&15,dec>>=4"
        for
    %%Din (!d!)do
    set "hex=!map:~%%D,1!!hex!"
    rem !!!! REMOVE LEADING ZEROS by activating the next line, e.g. will return 1A instead of 0000001A
    rem for /f "tokens=* delims=0" %%A in ("%hex%") do set "hex=%%A"&if not defined hex set "hex=0"
    ( ENDLOCAL & REM RETURN VALUES
        IF "%~2"
    NEQ "" (SET %~2=%hex%)ELSE
    ECHO.%hex%
    EXIT /b
    :eof

  • I downloaded an Adobe file from my email but cannot find it on my hard drive or in recycle bin - it's in downloads but am unable to open from downloads - how can I recover the file?

    I downloaded an Adobe file from my email (service provider is MWeb) but now cannot find it on my hard drive and it's not in the recycle bin. It does, however, appear in Firefox downloads but I'm unable to open it from there. How can I recover the file?

    Thanks Rob.
    I actually had no clue what the core problem was caused by. So it's Windows itself...that helps some.
    I'll resubmit there. It might actually have saved time for it to simply have been moved to there instead of off-topic, though I suppose you have to follow protocol.

  • I just accidentally wiped out my entire music library.  How can I get apple to help me download the purchased songs again?  The songs went to my recycle bin and I immediately restored them but the files seem to have dissappered!

    I just accidentally wiped out my entire music library.  I sent everything to recycling bin and then immediately hit restore all items as I knew what I had just done.  Now I can find where those files went.  Is there anyway Apple can just send me my purchased songs again?

    See Here  >  Download Past Purchases
    http://support.apple.com/kb/HT2519

  • Deleted items not going to recycle bin.

    Whenever I delete something from my iTunes library, I get the popup asking if I want to move it to the recycle bin or leave the file on the computer, and I always click on the button to move it to the recycle bin.
    And it never does. It just leaves everything in the hard drive.
    Since I watch a daily vlog as a video podcast, this can add up to some serious hard drive space wasted in short order.
    I've drilled down to the folder for that in my iTunes folder, and sure enough there was the last episode I had just removed.
    It'll be a major pain to sort through and delete the items I've removed, but not the ones I'm saving, and am wondering if there is a way to fix iTunes to work properly, like it did on my old Mac, rather than having to navigate my way through the iTunes folder every time I don't want to save something I've just played the one time I downloaded it for.

    Hello klep:
    I have seen this before but, of course, I do not remember the solution.
    Try a couple of things:
    Run permission repair.
    Restart your computer (if you have not already done so).
    Trash the finder preference file (com.apple.finder.plist) and restart.
    Barry

  • Recycle bin to show all deleted items on the site collection for specific user group

    hi there, is there any way where a certain sharepoint group (i.e. site collection members) to view and restore deleted items on theentire collection, without giving them site collection rights orgive them more rights than necessary? we wanted to create
    aSP group that has the permission to restore deleted items and give them to selected users so that our users won't have to contact us when they want to restore a deleted item

    I don't believe you can. If an item get's deleted it should go to the first recycle bin @ /_layouts/15/RecycleBin.aspx
    The Recycle Bin gives a site collection administrator
    greater control when users delete files, versions of files, list items, libraries, lists, and folders from a SharePoint site by providing a second stage safety net before an item is permanently deleted from a site. When a user deletes an item from the Recycle
    Bin, the item is sent to a second stage Recycle Bin (also known as the Site Collection Recycle Bin) that the site collection administrator manages. This article focuses on how a site collection administrator can manage the Recycle Bin for a site collection.
    https://support.office.com/en-US/Article/Manage-the-Recycle-Bin-of-a-SharePoint-site-collection-5fa924ee-16d7-487b-9a0a-021b9062d14b
    Ibrahim Sukari, Technical Consultant | SharePoint | Dynamics CRM |
    LinkedIn Profile

  • How to delete the items in the recycle bin permanently from the windows using Diruse command

    How to delete the items in the recycle bin permanently from the windows  using Diruse command.
    Because most of the time we get out of disk space issues.
    Can somebody help me in giving with an example

    You can right-click Recycle Bin|Properties and choose radio button for
    Don't move files ....
     This one may also help.
    http://technet.microsoft.com/en-us/library/cc784980(v=ws.10).aspx
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • I cant download a new tv episode because itunes says the disk is full that it is being stored on....however when I deleted many shows from my library it still will not download.....I went to my desktop and tried to empty my recycle bin and the empty recyc

    I cant download onto my computer an episode I purchased because when I hit download it says that the disk I am attempting to tranfer to is full.....however iy had no problem down loading another show....(Jon Stuart) So I went to my library where I see my shows stored and deleted MANY and when I tried again to download ---I got the same message to full......I tried to empty the recycle bin on my desktop thinking it was holding too much but the choice to empty is not darkened so it will not empty....can ANYONE help?

    Therefore, t there any way to just completely delete all the old backup data out of my Time Capsule from my prior Mac Laptop?
    Here is how to do this:
    Open Macintosh HD > Applications > Utilities > AirPort Utility
    Click Manual Setup
    Click the Disks icon at the top of the AirPort Utility window
    Click the Disks tab below the icons
    Click Erase
    The "Quick Erase" option will only take a moment or two
    Now you can backup your MacBook Pro. If you connect an Ethernet cable from the MBP to one of the LAN <-> ports on the TC, the first backup will go 3-5 times faster than wireless.
    Once you have the first backup done, you can use wireless for subsequent backups since they will only take a few minutes

  • I'm editing a band deleting songs, then suddenly it deleted all of the songs by an artist!  It's happened twice. Once I tried to restore them from the recycle bin but it did'nt work.  The 2nd time the songs were not in the recycle bin.  Why?

    I'm editing a band by deleting songs I do not like on iTunes on my PC. When I believe I'm deleting a song it ends up deleting ALL of the songs by that band (this is after I've deleted many individual songs sucessfully)!  This has happened twice since the new version of iTunes.  The first time I tried to restore the songs from my recycle bin but they just vanished when I tried to restore them.  The second time (today)  the songs were not even in the recycle bin.  Has this happened to anyone else out there? I have to now relocate all of those cd's and then reinstall them and go through them and put songs back onto various playlists (I have a lot of them).  Hassle!!!

    Time you backed up so you can recover in the event of a crisis.
    tt2

  • HT1364 help I just completed this task to free up my hard disc and be able to upgrade my iTunes but when I re-opened iTunes it is a blank new account! When I copied the iTunes file to the recycle bin it made me effectively empty as I copied over as it was

    Hey can someone help???
    I just completed this task (support.apple.com/kb/HT1364) moving my music to an external HD to free up my PC hard disc and all went well until I re-opened iTunes and it is a blank new account!
    I also don't can't access anything from the recycle bin as when I copied the iTunes file to the recycle bin it said it was too large to copy over so made me effectively empty as I copied over as it was so big.
    Any help gratefully recieved or where I can get some, I am going round in circles. I also don't know which itunes operating system I have, it is around 3 years old.

    hi i had the same problem today when i updated my itunes to latest version. however, i have just found my songs in the 'itunes media' folder. this was accessed through 'my music'  then keep clicking through until you find itunes media and all my library songs were in there and i then just added these files to my library and all were restored however, i have lost all my playlists but at least my 700 songs are back. very dissapointed with apple that they have let this happen with their latest update, the previous version was miles better than this one . hope you find them. stevo

  • When I went to bed I had 3,000  song and multiple playlists.  This morning I have ~30 songs and no playlists.  What could have happened to my songs playlists?  I run iTunes on a Windows 7 64-bit machine.  HELP! (oh, and the Songs are not in recycle bin)

    When I went to bed I had 3,000  song and multiple playlists.  This morning I have ~30 songs and no playlists.  What could have happened to my songs playlists?  I run iTunes on a Windows 7 64-bit machine.  HELP! (oh, and the Songs are not in recycle bin)
    My wife's ipod nano was plugged into the machine overnight.
    When she went running with it, there were no songs on it.  She checked the computer and was horrified to see that the playlists had disappeared and most of the songs had disappeared.
    QUESTIONS:
    1. What could it be?
    2. How can I fix it?

    Hi, there alot of us suffering from this phernomonon but there is a forum topic about is already.
    https://discussions.apple.com/message/16767377#16767377
    Come check it out.
    Hope this works out for all of us.

  • Firefox was installed I am now showing a "bunch of programs" on the left of my recycle bin ?? Also do I need to install norton with this browsercl

    I installed firefox browser works fine, however I now have a listing of just about all my programs on the left side of the recycle bin, if you click on my computer or any other program it goes directly into the bin right side. Is this listing suppose to be there? If not how do I get rid of it. I certainly don't want to loose any of my programs. And I don't understand why any thing concerning programs is in the recycle bin.
    Second- should I install norton on the firefox browser? Thank you Christene

    Can you close the Recycle Bin window and get back to your desktop? I don't know why that opened, but unless it keeps re-opening itself, I wouldn't feel the need to take any drastic action.

  • Active directory recycle bin in Windows STORAGE server 2008 R2

    I'd like to find a tool that helps me to monitor deleted server files. I understand that this tool is called Active directory recycle bin. I can't enable it. I can't even open lpd.exe. I'm using Windows storage server 2008 r2 essentials. Could someone
    help me with that? Thanks in advance. 

    In that case you must use a solution which combines Auditing
    and Backup solutions. Just to know who has deleted a file or folder does not really help you. You must be able to restore the deleted file or folders.
    If you need to find out at what time who deletes what file you should use auditing. Normally organizations enable auditing on sensitive data and folders to keep track who touches the stuff. Auditing is enabled in windows and by the administrator. Take a
    look at the below links if you want to enable auditing on files and folders:
    Use auditing to track who deleted your files
    However do not forget that you need to have backup solutions in order to restore a deleted file in case someone accidentally or intentionally deletes a file or folder. Using System Restore with Previous Version feature may comes handy if you are dealing
    with small number of computers. Otherwise you need to prepare yourself for a backup plan using Data Protection Manager as Denis mentioned or Windows Backup role (WBadmin) including in Windows Server 2008. More info on links below. I have included a video of
    how to recover lost data using previous versions for you.
    Recover lost or deleted files (Video)
    Windows Server Backup Step-by-Step Guide for Windows Server 2008
    Regards.
    Mahdi Tehrani   |  
      |  
    www.mahditehrani.ir
    Please click on Propose As Answer or to mark this post as
    and helpful for other people.
    This posting is provided AS-IS with no warranties, and confers no rights.
    How to query members of 'Local Administrators' group in all computers?

Maybe you are looking for

  • Short dump-internal table size issue

    Hi, I get the following message in the short dump analysis for a report. No storage space available for extending table "IT_920". You attempted to extend an internal table, but the required space was not available. Error Analysis: The internal table

  • Web report doubts!!

    Hi Gurus, I have a few doubts on the BI Web-Reports. 1) I have a web report that by default has the current date in variable window[Posting Date].Now when I execute the report for a different selection,the query displays fine.But when I change the vi

  • Can't save from editor; error message

    I use Windows and have Elements 5. Every time I try to save an edited photo I get an error message that reads, "Problem accessing Organizer Catalog. It may be in use by another process or disk error occurred." I can't save any edits. Thank you! Sharo

  • Who deleted a BW query

    Does any body know which tcode can I use to know who deleted a BW query? Thanks.

  • Order of installing upates

    In what order does Software Update install the updates listed in the window? From the top down or bottom up. I'm assuming it lists and runs them in the correct order they should be installed. Is this correct? I want to do the updating myself as I hav