Determine databases that are being used sharepoint 2007

I have a Sharepoint farm where I am moving all databases over to a new server and configuring sql mirroring. Is there a way to tell which database's Sharepoint is currently using I need a way to tell system and content databases. So with that said does
anyone know of a way to check this? I've gone into Sharepoint and selected the backup option in order to see a list of database names however I would like another way to verify which dbs are used.

This is in the wrong forum, 2007 questions should be posted in the legacy forum.
You've got "stsadm -o enumcontentdbs" which should give you all the content DBs but i don't know of one that will list all the other Shared Service Provider databases.

Similar Messages

  • EM monitor indexes that are being used?

    Hello,
    I wonder if with Oracle Enterprise Manager dbconsole, is possible monitor the indexes that are being used during a determine period as in TOAD?
    Thanks

    Hi,
    Index monitoring is started and stopped using the ALTER INDEX syntax shown below.
    ALTER INDEX my_index_i MONITORING USAGE;
    ALTER INDEX my_index_i NOMONITORING USAGE;
    Information about the index usage can be displayed using the $OBJECT_USAGE view.
    Query :-
    SELECT index_name,
    table_name,
    monitoring,
    used,
    start_monitoring,
    end_monitoring
    FROM v$object_usage
    WHERE index_name = 'MY_INDEX_I'
    ORDER BY index_name;
    The V$OBJECT_USAGE view does not contain an OWNER column so you must to log on as the object owner to see the usage data
    Thanks
    Pavan Kumar N.

  • HT1351 Whether or not I sync items on iTunes to my ipod, I cannot eject the ipod because a message keeps coming up and saying that my ipod cannot be ejected because it contains files that are being used by another application. How do I fix this?

    I just got an ipod classic 7th generation a couple days ago and I'm having a heck of a time with it. My latest problem is that with media on iTunes, I cannot eject the ipod because it says that it cannot be ejected because it contains files that are being used by another application. What application is this, and what do I do about it?

    Hi newipoduser,
    Here are some possible solutions:
    Do you use musicmatch jukebox on your computer? If you do, you have to go into task manager on windows and end process mim.exe. It interferes with disconnecting ext devices
    Empty your "trash/recycle bin."
    If that doesn't work, try quitting all your programs, especially music-type programs, basically things that look for mp3's etc.
    if that doesn't work, "log off" then "log on" and that should refresh/purge your OS system.
    Finally, you can restart your computer.
    Hope one of these helps!
    Cheers,
    GB

  • Find out particular printers that are being used by background jobs.

    Find out particular printers that are being used by background jobs..
    Hi Gurus,
    I have to remove some printers from SPAD, but before removing those printers I have to make sure that those are not being used by any background jobs.   The table TBTCP can be used to identify which jobs are still using those printers, but this is a tedious process. 
    Any input would be highly appreciated.
    Thank you
    Adil

    Hi Adil,
    I'm lazy so I'd just run this SQL
    select distinct(jobname), pdest from SAPSR3.TBTCP where PDEST in ('LP01', 'LOCL') ;
    Just put the printers you want as shown above and just perform a little manual cross check by checking the job in SM37.
    And that's it .....
    Cheers,
    Amerjit

  • SharePoint Databases - How to determine which ones are being used and which ones aren't

    I am not sure where to exactly post this question.  On the SQL Server side or on a SharePoint side.
    I am a SQL Server Database Administrator who is monitoring some SharePoint databases.  On a daily basis it seems that they are creating new databases but don't delete the databases that they are no longer using.  For example, they might be testing
    on a development server and if things aren't working properly instead of asking that the databases be deleted they just go ahead and create new databases to do what ever they need to do.  Is there a way on the SQL Server side to determine which SharePoint
    databases are being used and which ones aren't being used?  Or does one determine this information through the SharePoint Central Administration console?
    lcerni

    Hello,
    The following query gives you the databases now in use.
    SELECT
    DISTINCT d.name
    FROM
    sys.dm_tran_locks
    tl INNER
    JOIN sys.databases
    d
    ON
    tl.resource_database_id
    = d.database_id
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Determining indexes that are not used in 10g

    Is there a way to identify indexes that are not utilized in 10g? We have ADDM and AWR running nightly.
    Thanks in advance...

    You can enable index monitoring with
    alter index <index_name> monitoring usage;
    When the index is used V$OBJECT_USAGE.USED column will be set to YES. If the index is not used the USED column will show NO.
    test@ORCL> alter index i_test monitoring usage;
    Index altered.
    Elapsed: 00:00:00.04
    test@ORCL> select * from v$object_usage;
    INDEX_NAME                     TABLE_NAME                     MON USE START_MONITORING    END_MONITORING
    I_TEST                         TEST                           YES NO  01/04/2007 07:52:21
    Elapsed: 00:00:00.04
    test@ORCL> explain plan for
      2  select object_id from test;
    Explained.
    Elapsed: 00:00:00.10
    test@ORCL> select * from v$object_usage;
    INDEX_NAME                     TABLE_NAME                     MON USE START_MONITORING    END_MONITORING
    I_TEST                         TEST                           YES NO  01/04/2007 07:52:21
    Elapsed: 00:00:00.00
    test@ORCL> select count(*) from test;
      COUNT(*)
         50425
    Elapsed: 00:00:00.00
    test@ORCL> select * from v$object_usage;
    INDEX_NAME                     TABLE_NAME                     MON USE START_MONITORING    END_MONITORING
    I_TEST                         TEST                           YES NO  01/04/2007 07:52:21
    Elapsed: 00:00:00.00
    test@ORCL> select * from test where object_id =1;
    no rows selected
    Elapsed: 00:00:00.07
    test@ORCL> select * from v$object_usage;
    INDEX_NAME                     TABLE_NAME                     MON USE START_MONITORING    END_MONITORING
    I_TEST                         TEST                           YES YES 01/04/2007 07:52:21
    Elapsed: 00:00:00.00
    test@ORCL>You turn of index monitoring with the following:
    alter index <index_name> nomonitoring usage;

  • List users of specific databases that are not using the default storage quotas

    I have an Exchange 2010 SP3 DAG with 4 databases. I am trying to use powershell to find out, per database, which mailboxes are
    not using the "mailbox database defaults", which is unlimited in this case (no quotas for Issue warning, Prohibit send, and Prohibit send and receive).
    Something like "get-mailbox | where  {$_.UseDatabaseQuotaDefaults -ne $true} will not work because I just want the data for specific databases".
    I have also tried "get-mailbox -database nameofdatabase | where {$_.UseDatabaseQuotaDefaults -ne $true} | out-file c:\temp\nameofdatabase.tx" but it lists some users that show unlimited for all categories and others some that have limits on certain
    other ones. In short, it is not correct.
    HDL

    Hi,
    From your description, I would like to clarify the following thing:
    Running the Get-Mailbox -Database MBX1 | Where-Object {$_.usedatabasequotadefaults -eq $false} cmdlet will list all mailboxes who have a custom storage quota. But it only displays the value of ProhibitSendQuota. You can check the values of other storage
    quotas via EMC.
    EMC -> Recipient Configuration -> Mailbox -> double click the mailbox -> Mailbox Settings -> Storage Quotas
    Hope my clarification can be helpful to you.
    Best regards,
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Amy Wang
    TechNet Community Support

  • How do I connect to computers that are being used in the lab, but have no address listed on the "all computers" screen and say "off line" while they are being used?

    Thanks for any help I can get.  I'm the new guy here at school, and did not set up the system, so I'm not familiar with any of the individual steps for correcting problems.  My question is listed in the window up top.
    Jim

    Thanks for the response. I tried to find out what you asked.  For example:
    1. Computer #35 is listed on the "all computers" screen but says "access denied", "not authorized",  right click for " get info" has no administrators listed, and I don't know how to add my computer as one.
    2.  "Scanner" screen # 35 is not listed either in "Bonjour", or "Local Network" (ethernet interface)
    3.  "Scanner 2" screen - same.
    4.  "Scanner 3" screen - same.
    5.  "Computer Lab" screen #35 is listed, but says "off line", "access denied"
    I hope this gives us somewhere to start and go from there.  Thanks. 
    Jim

  • How to determine if reports are being run/used

    I have two Crystal report environments.  One being version 7.5 and the other is version 10.  Between them, there is a very large number of reports (1000's) that accumulated over the years. I am looking for a way to be able to tell which reports are being run and actually used. By used I mean actually being pulled from the repository.   I do not know all the specific details of the environments and not a CR expert so it is hard for me to provide too much more details.  Any help or suggestions on how to try to determine which reports are being used is greatly appreciated.

    You mention; "Crystal report environments"
    and
    "pulled from the repository"
    Question is; what is the Crystal report environment in your definition? E.g.; what is the actual product? It could be what used to be called Crystal Info (v 7), Crystal Enterprise (v. 10). Or it could be an app written by someone in your organization. Or it could be an app written by a 3rd party.
    In any case, getting answers for these products will be difficult as you're looking at products that are close to 10 years out of support (v. 10) and well over 10 years out of support (v. 7).
    - Ludek

  • How to see what Tables are being used in all reports

    Post Author: tmashley
    CA Forum: Crystal Reports
    Hello,
    How can I see what database tables are used in all my online reports? I have around 1000 reports posted to Enterprise over 6 different datasources. If possible I would like to see the fields within those tables that are being used to.
    I am using Crystal Reports XI Release 2
    Any help is appreciated
    Thanks,
    Tom

    I don't think you can see the databases of the reports unless you download the report onto your pc as a Crystal Report format and then open it under Crystal Reports.
    This way it will open the report within Crystal Reports and will show you the datasource it is coming from.
    I doubt if you can see them online.
    Kind Regards
    Jehanzeb

  • "The iPod cannot be ejected because it contains files that are in use..."

    My iPod (20 gb, 4 gen) syncs fine, but when I go to eject it a window pops up saying "the iPod cannot be ejected because it contains files that are in use by another application."
    Unfortunately, there are no files on it (that I know of) that are being used by another application.
    I can't use the eject function on the task bar because I have Vista and it will corrupt the iPod. I've just been unplugging it with out ejecting, but was hoping there was a solution. Any advice?

    Are you running any anti-virus or spyware detection software in the background? Start closing programs located in the taskbar next to the clock and try ejecting the iPod.

  • How to list all the datatypes are being used in the database?

    Is there any way you can list all the oracle datatypes are being used in the database?
    Thanks,
    Chau

    Use USER_TAB_COLUMNS or DBA_TAB_COLUMNS to determing various data type but USER_TAB_COLUMNS will show you what type being used by a schema user

  • My HD TV has two HDMI inputs which are being used by a home theater system and my RCN cable box. i want to be able to use my appleTV as well as those but do not have another HDMI input. How can i connect it so that i can use any 1 of the 3 at any time?

    My HD TV has two HDMI inputs which are being used by a home theater system and my RCN cable box. i want to be able to use my appleTV as well as those but do not have another HDMI input. How can i connect it so that i can use any 1 of the 3 at any time?

    Get an HDMI switcher. Plug in the ATV directly to the TV and then use the switcher on the other input.
    Example
    http://www.amazon.com/Ultra-High-Performance-Switcher-Switch/dp/B0015YWKYY/ref=s r_1_1?ie=UTF8&qid=1316918064&sr=8-1

  • I use Yahoo Calendar on my IPhone.  For whatever reason when I go into my calendar I will see at the top of the screen that 5 or 6 "calendars" are being used and one of them is the one I called Dana_Gardner and is legitimate, the others are randomly named

    I use Yahoo Calendar on my IPhone.  For whatever reason when I go into my calendar I will see at the top of the screen that 5 or 6 "calendars" are being used and one of them is the one I called Dana_Gardner and is legitimate, the others are randomly named with letters and numbers. Why is the IPhone creating additional "calendars"? I only asked for one to be set-up. I don't understand, I have to go into the calendar settings daily and uncheck these un-asked for calendars. Help!

    Mine is doing the same thing.  I deleted the whole account from the mail settings and it got rid of most of the extra calendars.  But there are still 2 gibberish ones left.

  • My macbook pro says that 500 gb are being used by other storage. how do i fix this?

    In my system info it says that 500 GB's are being used up by "other" Information and I have not found out where this information is. Ive looked all over my mac and I haven't been able to find out where this memory went. I desperately need help. Where is my memory! Ive looked this up and tried seeing if it was my Mail app but it wasn't. I really need some help here!

    Hello Masterklaus69,
    Thanks for the question. After reviewing your post, it sounds like there is a lot of data in the Other catagory. I would recommend that you read this article, it may be able to help you resolve or isolate the issue.
    OS X: What is "other" space in About This Mac?
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

Maybe you are looking for

  • Error while ipmorting dev configuration in NWDS

    HI          I am getting error as "<i>No configurations on server or server error</i>" while trying to import development configuratios in NWDS 2.0.7. I am using WAS 6.40 sp 9 . plz provide me some idea what to do.          I thought may be its becau

  • Getting an error at the time of running a DC

    hi, I imported a DC project which is running perfectly on another PC,and rebuild that  project and deployed when iam running that application in the portal iam getting that following error java.lang.UnsupportedClassVersionError: com/sap/campaigncreat

  • Creation of a table..

    Hi, Could anyone please tell me what is a table and how to create a table? For suppose if i want to create an employee table, what all the necessary information required to create it? How can i proceed? Thanks.

  • Setting system level deployment.user.cachedir in deployment.config

    G'day, I've been experimenting with JRE 1.5.0_04 on Windows XP. By default deployment.user.cachedir is set to <user home>\Application Data\Sun\Java\Deployment\cache. However, I want it to be <user home>\Local Settings\Application Data\Sun\Java\Deploy

  • Anybody know of a way to drive a Casio CW-K85 media printer from a Mac?

    The title says it all. Since the thing has its own keyboard, and its own graphics, and apparently even the ability to create graphics, hooking it up to my iMac isn't a big deal, but it would be nice. Unfortunately, it only comes with software for Win