If my master database got crashed how will rebuild it?

Hi DBA'S,
If
my master database got crashed how will rebuild it?
Please provide me a scenario based answer if  it is possible.

You would find below article more interactive
http://www.codeproject.com/Tips/537811/Rebuilding-Master-Database-in-SQL-Server?
Please post question which you seem difficult its very easy question and you would have found lot of article on net. If you are preparing for interview read the MSDN document, download sql server express or enterprise evaluation(both are free)  install
it and try rebuilding master database your self
Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
My Technet Wiki Article
MVP

Similar Messages

  • My system crashed, how will I transfer data to my lap from my ipod touch???

    Some one plzz help me...

    Check these helpful user tips:
    Recovering your iTunes library from your iPod or iOS device
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive

  • Iphoto database got disconnected during thumbnail rebuild; can't open

    iphoto will not access iphoto library.
    OS version is 10.5.8 and iphoto version is 7.1.5.  The iphoto library is on external drive.
    Today when opening iphoto, I was prompted to "Rebuild thumbnail for iphoto".  During that process, the external drive USB got disconnected from our MacBook Pro.  The process failed and produced a Damaged File folder on the external drive.  Within the folder are two files: one is 000095a7 AlbumData.xml and 00009505 live.2.indexPosition file.  I tried to repair database using (Option + Command keys) while opening iphoto but it did not work. 
    I believe that the pictures are still in tack since the library size is same (34.4G).  How can I fix this problem ?

    Restore from back up is the surefire solution.
    Other than that:
    Try these in order - from best option on down...
    1. Do you have an up-to-date back up? If so, try copy the library6.iphoto file from the back up to the iPhoto Library (Right Click -> Show Package Contents) allowing it to overwrite the damaged file.
    2. Download iPhoto Library Manager and use its rebuild function. (In Library Manager it's the FIle -> Rebuild command)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. 
    3. If neither of these work then you'll need to create and populate a new library.
    To create and populate a new *iPhoto 08* library:
    Note this will give you a working library with the same Events and pictures as before, however, you will lose your albums, keywords, modified versions, books, calendars etc.
    In the iPhoto Preferences -> Events Uncheck the box at 'Imported Items from the Finder'
    Move the iPhoto Library to the desktop
    Launch iPhoto. It will ask if you wish to create a new Library. Say Yes.
    Go into the iPhoto Library (Right Click -> Show Package Contents) on your desktop and find the Originals folder. From the Originals folder drag the individual Event Folders to the iPhoto Window and it will recreate them in the new library.
    When you're sure all is well you can delete the iPhoto Library on your desktop.
    In the future, in addition to your usual back up routine, you might like to make a copy of the library6.iPhoto file whenever you have made changes to the library as protection against database corruption. 

  • How do you declare objects in the master database

    I am trying to register our CLR assembly as an unsafe assembly without having to make the database trustworthy.  Since making the database is_trustworthy_on = 1 is not a best practice, and would cause some of our customers (and our development process)
    a little bit of grief.
    I have read a ton about it but am still having trouble.
    The reason the assembly is 'Unsafe' is because it is calling the TimeZoneInfo class to convert between timezones, since we are not yet on UTC dates.  We plan to in the future but that's a big project.
    We are also not using the 'SQLCLR' but rather have written our own class library and just have a project reference to it, which works just the same, but we have found to be better for the C# programmers.
    I am playing with signing the assembly using an SNK file and have figured out what I need to do, including 1) creating a master key, 2) creating an asymmetric key using the same SNK file that signed the assembly, 3) creating a login for the asymmetric key,
    and 4) granting unsafe assembly to the login.
    When I do all that with straight SQL, it actually works!  But I am having trouble fitting this into our SSDT world.
    Should I create a separate SSDT project for items #1 through #4 above, and reference it, and check 'Include composite objects' in our publishing options?  As stated in this blog post though, I'm terrified of messing up the master database, and I'm not
    excited about the overhead of another project, a 2nd dacpac, etc.
    http://blogs.msdn.com/b/ssdt/archive/2012/06/26/composite-projects-and-schema-compare.aspx
    Since we do use a common set of deployment options in a deployment tool we wrote, which does set the 'block on data loss' to false, and the 'drop objects not in source' to true, b/c we drop tables all the time during the course of refactoring, etc. 
    I don't want to drop anything in master though, and I don't want to have to publish it separately if we didn't have to. 
    I suppose I could just have some dynamic SQL in a pre-deployment script that takes care of the master database, but I was trying to do it the 'right' way, in a declarative style, but struggling.
    So, in short, what's the recommended approach for getting an 'unsafe' CLR assembly into an SSDT project?
    The error that started all this was:
    CREATE ASSEMBLY for assembly *** failed because assembly *** is not authorized for PERMISSION_SET = UNSAFE. 
    The assembly is authorized when either of the following is true:
    the database owner (DBO) has UNSAFE ASSEMBLY permission and the database has the TRUSTWORTHY database property on;
    or
    the assembly is signed with a certificate or an asymmetric key that has a corresponding login with UNSAFE ASSEMBLY permission.
    Also, would a certificate be better than an asymmetric key?  I'm not entirely sure of the difference just yet to be honest.
    Thanks,
    Ryan

    After much fighting with this, figured something out as a workaround, and thought I'd share it.
    First, I'm pretty certain the SSDT declarative way for these master objects just doesn't work yet.
    My workaround was to make a pre-deployment script (that runs when we create new databases, as well as for the current release), that takes care of the security items needed to support a signed CLR assembly with unsafe permissions.
    One issue we were running into was when it came to creating the asymmetric key, there are 4 ways to do so, and we didn't want to depend on a hard-coded/absolute file path.  The 4 ways are "From file", "from external file", "from
    assembly", or "from provider".  I still don't 100% understand the from provider way, but ultimately we are actually using the from assembly way, with a little trick/hack I did that allows us to not have to use the 'from file' way and to
    reference a hard-coded path on someone's C:\ drive.  I really really didn't want to do that b/c we create local dev databases all the time and not everyone has the same paths setup.  Also, our databases are deployed on our servers as well as remote-hosted-customer
    servers, and up until now, the database release has not needed file system access.  Even the CLR itself is created using assembly_bits, which is awesome.
    So I thought of something...
    What if I had a simple/temporary assembly, which I create from assembly_bits, use to import the public key from, through the create asymmetric key from assembly command, and then drop as if it never existed?
    Well...it works!
    Here is my current prototype of a pre-deployment script, which I'll go through and cleanup more, but thought I'd share.  I also want to document how I created the temporary assembly_bits in case anyone ever wants or needs to know, even though they really
    shouldn't.  But it should make them feel better.  Basically I just created did this to get them:
    1 - Created a C# Class Library project in the solution.
    2 - Added our .SNK to that project and removed the 'Class1.cs' that it created by default
    3 - Signed that class library with the .SNK
    4 - Added a project reference to that class library from the main database solution.
    5 - Generated a deployment script (but didn't run it) and grabbed the create assembly statement (copy/paste)
    6 - Deleted the temporary project
    7 - Pasted the code I had copy/pasted into the pre-deployment script
    Note that the objects do apparently need to go into MASTER, so at the end of the pre deployment script, I switch back to the automatic [$(DatabaseName)] after first having done USE master.
    Hope this helps someone.  Finally got it!
    BTW - The other way we almost used was to introduce a SqlCmdVariable of $StrongNameKeyFilePath but that would have been a hassle for people to set whenever they got a new machine, etc.
    Thanks,
    Ryan
    PRINT '**************************************************************************'
    PRINT 'Pre\SetupMasterDatabaseKeysAndLoginsIfNecessary.sql'
    PRINT '**************************************************************************'
    PRINT '************************************************************************************'
    PRINT 'If they do not already exist, create the database master key, as well as the asymmetric'
    PRINT 'key, from the Strong-Named File (.SNK) which signed the CLR assembly.  Finally, also'
    PRINT 'create a login from that asymmetric key and grant it the UNSAFE ASSEMBLY permission.'
    PRINT 'This is all necessary b/c the CLR currently has to be referenced for UNSAFE permissions'
    PRINT 'in order to access the TimeZoneInfo class.  This code and these objects can be removed'
    PRINT 'if the system is ever updated to use all UTC dates and no longer requires the TimeZoneInfo class.'
    PRINT '************************************************************************************'
    USE master
    PRINT N'Creating Temporary Assembly [Wits.Database.AsymmetricKeyInitialization]...'
    CREATE ASSEMBLY [Wits.Database.AsymmetricKeyInitialization]
        AUTHORIZATION [dbo]
        FROM 0x4D5BlahBlahBlah;
    IF NOT EXISTS (SELECT 1 FROM sys.symmetric_keys WHERE name LIKE '%DatabaseMasterKey%')
        BEGIN
            PRINT 'Creating Master Key...'
            CREATE MASTER KEY
                ENCRYPTION BY PASSWORD = 'I Removed This Part For This Post'
        END
    IF NOT EXISTS (SELECT 1 FROM sys.asymmetric_keys WHERE name = 'ClrExtensionAsymmetricKey')
        BEGIN
            PRINT 'Creating Asymmetric Key from strong-named file...'
            CREATE ASYMMETRIC KEY [ClrExtensionAsymmetricKey]
                FROM ASSEMBLY [Wits.Database.AsymmetricKeyInitialization]
        END
    IF NOT EXISTS (SELECT 1 FROM sys.server_principals WHERE type_desc = 'ASYMMETRIC_KEY_MAPPED_LOGIN' AND name = 'ClrExtensionLogin')
        BEGIN
            PRINT 'Creating Login from Asymmetric Key...'
            CREATE LOGIN [ClrExtensionLogin] FROM ASYMMETRIC KEY [ClrExtensionAsymmetricKey]
            PRINT 'Granting Permissions to Login created from Asymmetric Key...'
            GRANT UNSAFE ASSEMBLY TO ClrExtensionLogin
        END
    PRINT N'Dropping Temporary Assembly [Wits.Database.AsymmetricKeyInitialization]...'
    DROP ASSEMBLY [Wits.Database.AsymmetricKeyInitialization]
    USE [$(DatabaseName)]

  • HT1386 My system got crashed and I dont have backup fo my iphone.... now how do i synch my iphone with new itunes without loosing my data ?

    My system got crashed and I dont have backup fo my iphone.... now how do i synch my iphone with new itunes without loosing my data ?

    See if this user-tip for syncing to a new computer helps : https://discussions.apple.com/docs/DOC-3141
    If you have music from other sources on your phone (e.g. copied from CDs) and you don't have them on a backup, then there are some program listed half-way down this page which might be able to copy them back : https://discussions.apple.com/docs/DOC-3991

  • My SIM card got stuck in the iPhone 5c SIM slot but without the tray how will i get it out

    My SIM card got stuck in the iPhone 5c SIM slot but without the tray how will i get it out

    Go to an Apple Store or you're wireless carrier store to have them properly remove the SIM card.

  • I got a chance to jon as SAP B1 consultant. How will be future with SAP B1

    Hi,
    This is kiran.I completed  my MCA in the year of 2010. Last week i got selected for a company in Hyderabad as a ASSOCIATE
    CONSULTANT on SAP BUSINESS ONE mainly and the package is 7k for first 6m after that 1.3L I don't know how the software will be. I have to join by Aug 1st 2011.
    How will be the future with SAP B1. i mean packages for the SAP people.
    Anybody please guide me am i need to join?????????? I have a knowledge on C#.NET,ASP.NET ,SQL server,C and C++.
    Thanks
    kiran

    Hello Kiran,
    One more thing you will work ERP concept so definatlly your future will bright and as you said that you have bold in technical exp then switch in Technical part after 1 year then you will Techno-Function consultant.
    Always compare your job profile if you have another one otherewise go for same.
    So Welcome in SAP Business One(ERP) World.....
    Form will guide you for any problem....
    Thanks
    Manvendra Singh Niranjan

  • Why is my shockwave player crashing and how will it be fixed?

         I just recently encountered this kind of problem, i never had much of a problem with adobe plug-ins except for this one. I use three internet browsers safari chrome and explorer. And all say the shockwave player crashes, why? When I want to watch a vid online at lets say devour or youtube, I cant watch it coz its non responsive, when I try playing games online as well. and even the ads in the yahoo mail.. How will this be fixed?
    HELP would be greatly appreciated..thank you.

    AFAIK Youtube only requires Flash Player, not Shockwave Player.

  • Following repeated crashing of Firefox 3.6.11, I was required to amend my profiles to correct a security error (I got an ssl error) by deleting cert8.db file. I have lost all my browsing history in the crash, how can I recover it?

    The problem originated from Talktalk's Assist & Go software interfering with my browser settings. This caused Firefox to repeatedly crash with message (see below)I then got error "ssl_error_ssl_disabled" when trying to access my webmail- I followed the help instructions and deleted the cert8.db file whcih allowed Firefox to start & me to access my webmail.
    But all the browsing history has disappeared, I had about 6 months prior to the crash, how can I recover it, is there a backup?

    The problem originated from Talktalk's Assist & Go software interfering with my browser settings. This caused Firefox to repeatedly crash with message (see below)I then got error "ssl_error_ssl_disabled" when trying to access my webmail- I followed the help instructions and deleted the cert8.db file whcih allowed Firefox to start & me to access my webmail.
    But all the browsing history has disappeared, I had about 6 months prior to the crash, how can I recover it, is there a backup?

  • SP_ADDMESSAGE will the new message be synchronized in all master databases?

    Hello everybody
    A customer asked me "What happens in a SQL Server 2012 Always On Installation when a new sysmessage is created (sp_addmessage)". Will the new sysmessage be automatically synchronized in all master databases?
    And what happens with changes of SQL Server Agent Jobs? The definition is stored in the msdb databases. Are they synchronized automatically or are these tasks that should be made manually?
    Searched on MSDN, in this Forums but couldnt find an answer.
    Best regards
    Paolo

    Hi Paolo,
    Since the SQL 2012 Always On is configured on the user databases the sysmessage would not get synchronized on the nodes participating in the always on configuration. Also the jobs are not synchronized between the participating nodes of always on configuration.
    Regards
    Sathish S N

  • How will i configure partner determination for customer master

    how will i configure partner determination for customer master data.

    hi
    Check this
    BUSINESS PARTNERS AND PARTNER DETERMINATION
    In the partner determination procedure you can determine whether partner functions can or should occur in a partner object (Customer Master, Sales Document, Item Category etc.) For each object, in which partner function can be created, you can define partner procedures. This also means that
    For Customer Master
    For Sales Documents
    For Sales Documents and Billing Documents: for items
    We can define our partner determination procedure for each of these levels as shown below. In Blue are given the ones wherein the Partner Procedures are assigned to the Partner Objects
    Customer Master Account Group
    Sales Document Header Sales Document Type
    Sales document Item Item Category in sales
    Delivery Delivery Type
    Billing Header Billing Type
    Billing Item Billing Type
    Sales Activity Sales Activity type
    By assigning a procedure you determine for which account groups (for the customer master), which sales document types (for sales documents) and for which item categories this procedure would be valid.
    In the partner determination procedure you can determine for each partner function
    whether the partner function is an obligatory partner function
    whether the partner function can be changed in the document
    BUSINESS PARTNER FUNCTION
    By assigning a business partner function to a partner you can determine which functions the partner fulfils in the business process. Partner Functions are classified using partner type. The partner type represents the roles played by the business partner within the business transaction.
    Following partner functions exist in the standard process of Sales and Distribution
    Partner Type Customer
    Sold-to Party, Ship-to Party, Bill-to Party, Payer and Sold-to Party authorized to release against a contract. You can define the sold-to party authorized to release against a contract in the partner screen of a contract. This partner may only schedule orders with reference to this contract, even when he is not the sold-to party authorized against a contract.
    Partner Type Contact Person
    Contact persons are natural persons whom you must contact at the customers for business processing (e.g. purchasers) Contact person can be created directly in customer master record.
    Partner Type Vendor
    A forwarding agent is an example of a business partner on the credit side, who is included in a sales process. If you commission a particular forwarding agent for deliveries to a specific customer, you can define the forwarding agent in the customer master record as the partner.
    The other possible partner functions on the credit side in the sale process are interpreters, auditors etc. The forwarding agent is an agent who performs transportation services. This includes organizing the shipment, delivery and receipt of the goods, arranging the carrier services and handling the customs issues.
    Partner Type Personnel
    Employee Responsible
    Sales Personnel
    You can enter an employee from your firm as the person responsible:
    In the Customer Master – If the employee is normally responsible for processing transactions with this customer.
    In the Sales Document – If the employee is responsible for processing the Business Transaction.
    STEP WISE PROCESS FOR PARTNER DETERMINATION PROCEDURE
    Sales and Distribution->Basic Functions->Partner Determination->set Up Partner Determination->Set up Partner Determination for Customer Master.
    First go to OVT0 – create customer account groups. Here you make new entries, click whether it is a one time customer, description. Also you can do the field selection here for general data, co. code data and sales area data.
    Now go to IMG – logistics general – business partner – customers – control – define & assign customer number ranges define the number. Here you range that you want and assign it to your customer account group.
    Now go to VOPA – here the selection will be on customer master, click on partner procedures, create the partner determination procedure. The following steps need to be done in partner determination area
    Assign partner function to account group i.e SP,SH, BP, PY to account group (debit side ). Sales and Distribution->Basic Functions->Partner Determination->Assign Partner Functions on the debit side to account Groups.
    Then create Partner Determination Procedure.
    Assign the Partner Determination Procedure to Partner Function.
    Then finally assign the Partner Determination Procedure to acc group.
    Important Points in Business Partners and Partner Determination Procedure
    Partner relationship maintained/defined in the customer master is proposed automatically in the document header when you create a sales document.
    In customizing we can decide whether several partners can be assigned to one partner function in the customer master.
    In sales documents, the system is configured so that only one partner can be assigned to each partner function.
    We can define partners at item level in the sales documents.
    Business Partners that are defined at the header level however cannot be changed at the item level.
    You can prohibit anyone from changing a partner that has already been entered in a sales document.
    It is also possible to manually change or enter the address of a partner, such as the Ship-to Party. This change does not affect the master record.

  • Firefox crashed and will not open again, I did not upgrade to 5.0 - is a mac 10.7 Please tell me how to fix this and I don't want complicted.

    my computer upgraded from 3.6 to 5 and crashed and will not now open any pages with firefox. I have tried to reinstall many times with same result. What is the problem? I do not beleive I am alone in this. I had not idea that the upgrade occured on the 15th of June but it opened on the a.m of the 28th and then shut down immediately and will not access my home page or any other page again.

    Try going to the Tools menu item, and choose Options.
    In the popup, select the Advanced screen (cog icon) and under that, the Update sub-tab. On that tab, uncheck the various boxes for checking for updates, and see if that helps?

  • I have got in iphone4 ios7 and its shows the activation screen then how will i contact him?

    what would i do

    Then you're going to need to be more clear. Please explain what you mean by:
    how will i contact him?

  • Database got shutdown reason unknown

    Hi,
    My database got shutdown. We are unable to know the reason behind this.
    Its 10g database on AIX 5.3 server.
    Below is the entry from alert log.
    Thread 1 advanced to log sequence 264605 (LGWR switch)
    Current log# 5 seq# 264605 mem# 0: /oracle/redolog/neonprd/redo05a.log
    Current log# 5 seq# 264605 mem# 1: /oracle/redolog02/neonprd/redo05b.log
    Mon Sep 10 14:04:01 2012
    Immediate Kill Session#: 1870, Serial#: 17917
    Immediate Kill Session: sess: 7000005835afb08 OS pid: 5845450
    Mon Sep 10 14:04:01 2012
    Process OS id : 5845450 alive after kill
    Errors in file
    Mon Sep 10 14:04:21 2012
    Immediate Kill Session#: 1998, Serial#: 27337
    Immediate Kill Session: sess: 7000005875c6cc0 OS pid: 6263044
    Mon Sep 10 14:04:21 2012
    Process OS id : 6263044 alive after kill
    Errors in file
    Mon Sep 10 14:04:32 2012
    alter database commit to switchover to primary
    Mon Sep 10 14:04:32 2012
    ALTER DATABASE SWITCHOVER TO PRIMARY (neonprd)
    Mon Sep 10 14:04:32 2012
    ORA-16109 signalled during: alter database commit to switchover to primary...
    Mon Sep 10 14:04:32 2012
    ALTER SYSTEM SET log_archive_dest_state_2='enable' SCOPE=BOTH;
    Starting background process EMN0
    Shutting down instance: further logons disabled
    EMN0 started with pid=159, OS id=5444040
    Mon Sep 10 14:04:37 2012
    Completed checkpoint up to RBA [0x4099d.2.10], SCN: 43879290652
    Mon Sep 10 14:04:37 2012
    Stopping background process CJQ0
    Mon Sep 10 14:04:37 2012
    Stopping background process QMNC
    Mon Sep 10 14:04:38 2012
    Stopping background process MMNL
    Mon Sep 10 14:04:39 2012
    Stopping background process MMON
    Mon Sep 10 14:04:40 2012
    Shutting down instance (immediate)
    License high water mark = 399
    Mon Sep 10 14:04:40 2012
    Stopping Job queue slave processes, flags = 7
    Mon Sep 10 14:04:40 2012
    Process OS id : 7172580 alive after kill
    Errors in file /oracle/admin/neonprd/udump/neonprd_ora_6672700.trc
    Mon Sep 10 14:04:44 2012
    Waiting for Job queue slaves to complete
    Mon Sep 10 14:04:44 2012
    Job queue slave processes stopped
    Mon Sep 10 14:05:49 2012
    Starting ORACLE instance (normal)
    Mon Sep 10 14:06:14 2012
    Starting ORACLE instance (normal)
    Mon Sep 10 14:06:21 2012
    Starting ORACLE instance (normal)
    Mon Sep 10 14:07:02 2012
    Starting ORACLE instance (normal)
    Mon Sep 10 14:07:46 2012
    Starting ORACLE instance (normal)
    Mon Sep 10 14:08:46 2012
    Starting ORACLE instance (normal)
    Mon Sep 10 14:09:23 2012
    Starting ORACLE instance (normal)
    Mon Sep 10 14:10:01 2012
    Starting ORACLE instance (normal)
    Mon Sep 10 14:10:07 2012
    Incremental checkpoint up to RBA [0x4099d.62afd.0], current log tail at RBA [0x4099d.62b0c.0]
    Mon Sep 10 14:15:27 2012
    Shutting down instance
    License high water mark = 399
    Instance terminated by USER, pid = 7000574
    Mon Sep 10 14:15:49 2012
    Starting ORACLE instance (normal)
    sskgpgetexecname failed to get name
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 3
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =242
    LICENSE_MAX_USERS = 0
    SYS auditing is enabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.4.0.
    System parameters with non-default values:
    processes = 2000
    sessions = 2205
    sga_max_size = 23622320128
    __shared_pool_size = 3674210304
    shared_pool_size = 3674210304
    __large_pool_size = 16777216
    large_pool_size = 16777216
    __java_pool_size = 117440512
    java_pool_size = 50331648
    __streams_pool_size = 16777216
    streams_pool_size = 16777216
    nls_date_format = MM-DD-YYYY HH24:MI:SS
    nls_length_semantics = BYTE
    filesystemio_options = setall
    resource_manager_plan =
    sga_target = 22548578304
    control_files = /oracle/data/neonprd/control01.ctl, /oracle/data/neonprd/control02.ctl, /oracle/data/neonprd/control03.ctl
    db_block_size = 8192
    __db_cache_size = 18656264192
    db_cache_size = 8002732032
    db_writer_processes = 16
    compatible = 10.2.0.3.0
    log_archive_dest_1 = location=use_db_recovery_file_dest
    log_archive_dest_2 = service=standby reopen=120 max_connections=3
    log_archive_dest_state_1 = ENABLE
    log_archive_dest_state_2 = enable
    log_archive_max_processes= 10
    log_archive_min_succeed_dest= 1
    standby_archive_dest =
    log_archive_trace = 0
    fal_client = PRIMARY
    fal_server = STANDBY
    log_buffer = 63009792
    archive_lag_target = 0
    db_files = 200
    db_file_multiblock_read_count= 16
    db_recovery_file_dest = /oracle/flash_recovery
    db_recovery_file_dest_size= 1181116006400
    standby_file_management = AUTO
    fast_start_mttr_target = 300
    log_checkpoints_to_alert = TRUE
    undo_management = AUTO
    undo_tablespace = UNDOTBS1
    undo_retention = 3600
    remote_login_passwordfile= EXCLUSIVE
    audit_sys_operations = TRUE
    db_domain = in.startv.com
    service_names = neonprd.in.startv.com
    shared_servers = 0
    job_queue_processes = 10
    cursor_sharing = EXACT
    parallel_max_servers = 0
    background_dump_dest = /oracle/admin/neonprd/bdump
    user_dump_dest = /oracle/admin/neonprd/udump
    core_dump_dest = /oracle/admin/neonprd/cdump
    audit_file_dest = /oracle/admin/neonprd/adump
    audit_trail = NONE
    db_name = neonprd
    open_cursors = 1500
    parallel_adaptive_multi_user= TRUE
    optimizer_index_cost_adj = 25
    optimizer_index_caching = 90
    query_rewrite_enabled = TRUE
    pga_aggregate_target = 6442450944
    skip_unusable_indexes = TRUE
    allowlevel_without_connect_by= TRUE
    aq_tm_processes = 1
    awrflush_threshold_metrics= TRUE
    PMON started with pid=2, OS id=1204390
    PSP0 started with pid=3, OS id=966732
    MMAN started with pid=4, OS id=1003604
    DBW0 started with pid=5, OS id=946294
    DBW1 started with pid=6, OS id=909508
    DBW2 started with pid=7, OS id=7000332
    DBW3 started with pid=8, OS id=897104
    DBW4 started with pid=9, OS id=7233880
    DBW5 started with pid=10, OS id=5828952
    DBW6 started with pid=11, OS id=7213314
    DBW7 started with pid=12, OS id=7139790
    DBW8 started with pid=13, OS id=6844750
    DBW9 started with pid=14, OS id=6648146
    DBWa started with pid=15, OS id=851976
    DBWb started with pid=16, OS id=872484
    DBWc started with pid=17, OS id=815254
    DBWd started with pid=18, OS id=790652
    DBWe started with pid=19, OS id=774152
    DBWf started with pid=20, OS id=745636
    LGWR started with pid=21, OS id=573668
    CKPT started with pid=22, OS id=1171514
    SMON started with pid=23, OS id=553024
    RECO started with pid=24, OS id=1159352
    CJQ0 started with pid=25, OS id=6639948
    MMON started with pid=26, OS id=6394246
    MMNL started with pid=27, OS id=1028254
    Mon Sep 10 14:15:51 2012
    ALTER DATABASE MOUNT
    Mon Sep 10 14:15:55 2012
    Setting recovery target incarnation to 1
    Mon Sep 10 14:15:55 2012
    Successful mount of redo thread 1, with mount id 863646487
    Mon Sep 10 14:15:55 2012
    Database mounted in Exclusive Mode
    Completed: ALTER DATABASE MOUNT
    Mon Sep 10 14:15:55 2012
    ALTER DATABASE OPEN
    Mon Sep 10 14:15:56 2012
    Beginning crash recovery of 1 threads
    parallel recovery setup failed: using serial mode
    Mon Sep 10 14:15:56 2012
    Started redo scan
    Mon Sep 10 14:15:56 2012
    Completed redo scan
    0 redo blocks read, 0 data blocks need recovery
    Mon Sep 10 14:15:56 2012
    Started redo application at
    Thread 1: logseq 264605, block 404238, scn 43879394962
    Mon Sep 10 14:15:56 2012
    Recovery of Online Redo Log: Thread 1 Group 5 Seq 264605 Reading mem 0
    Mem# 0: /oracle/redolog/neonprd/redo05a.log
    Mem# 1: /oracle/redolog02/neonprd/redo05b.log
    Mon Sep 10 14:15:56 2012
    Completed redo application
    Mon Sep 10 14:15:56 2012
    Completed crash recovery at
    Thread 1: logseq 264605, block 404238, scn 43879414963
    0 data blocks read, 0 data blocks written, 0 redo blocks read
    Mon Sep 10 14:15:56 2012
    LGWR: STARTING ARCH PROCESSES
    ARC0 started with pid=29, OS id=1200370
    ARC1 started with pid=30, OS id=6341016
    ARC2 started with pid=31, OS id=6271472
    ARC3 started with pid=32, OS id=1130568
    ARC4 started with pid=33, OS id=6234458
    ARC5 started with pid=34, OS id=1179696
    ARC6 started with pid=35, OS id=1106070
    ARC7 started with pid=36, OS id=5890556
    ARC8 started with pid=37, OS id=1089544
    Mon Sep 10 14:15:57 2012
    ARC0: Archival started
    ARC1: Archival started
    ARC2: Archival started
    ARC3: Archival started
    ARC4: Archival started
    ARC5: Archival started
    ARC6: Archival started
    ARC7: Archival started
    ARC9 started with pid=38, OS id=1036378
    Mon Sep 10 14:15:57 2012
    ARC8: Archival started
    ARC9: Archival started
    LGWR: STARTING ARCH PROCESSES COMPLETE
    Mon Sep 10 14:15:57 2012
    Thread 1 advanced to log sequence 264606 (thread open)
    Thread 1 opened at log sequence 264606
    Current log# 6 seq# 264606 mem# 0: /oracle/redolog/neonprd/redo06a.log
    Current log# 6 seq# 264606 mem# 1: /oracle/redolog02/neonprd/redo06b.log
    Successful open of redo thread 1
    Mon Sep 10 14:15:57 2012
    ARC0: Becoming the 'no FAL' ARCH
    ARC0: Becoming the 'no SRL' ARCH
    Mon Sep 10 14:15:57 2012
    ARC3: Becoming the heartbeat ARCH
    Mon Sep 10 14:15:57 2012
    SMON: enabling cache recovery
    Mon Sep 10 14:15:57 2012
    db_recovery_file_dest_size of 1126400 MB is 4.99% used. This is a
    user-specified limit on the amount of space that will be used by this
    database for recovery-related files, and does not reflect the amount of
    space available in the underlying filesystem or ASM diskgroup.
    Mon Sep 10 14:15:58 2012
    Successfully onlined Undo Tablespace 1.
    Mon Sep 10 14:15:58 2012
    SMON: enabling tx recovery
    Mon Sep 10 14:15:58 2012
    Database Characterset is WE8MSWIN1252
    Opening with internal Resource Manager plan
    where NUMA PG = 1, CPUs = 28
    replication_dependency_tracking turned off (no async multimaster replication found)
    Mon Sep 10 14:16:00 2012
    Incremental checkpoint up to RBA [0x4099e.3.0], current log tail at RBA [0x4099e.a3.0]
    Mon Sep 10 14:16:00 2012
    Starting background process QMNC
    QMNC started with pid=40, OS id=5837066
    Mon Sep 10 14:16:02 2012
    Completed: ALTER DATABASE OPEN
    Mon Sep 10 14:18:57 2012
    Immediate Kill Session#: 2016, Serial#: 77
    Immediate Kill Session: sess: 70000058f5d0698 OS pid: 6582596
    Mon Sep 10 14:18:57 2012
    Process OS id : 6582596 alive after kill
    Errors in file
    Mon Sep 10 14:24:30 2012
    Beginning log switch checkpoint up to RBA [0x4099f.2.10], SCN: 43879588218
    Mon Sep 10 14:24:30 2012
    Thread 1 advanced to log sequence 264607 (LGWR switch)
    Current log# 1 seq# 264607 mem# 0: /oracle/redolog/neonprd/redo01a.log
    Current log# 1 seq# 264607 mem# 1: /oracle/redolog02/neonprd/redo01b.log
    Mon Sep 10 14:29:33 2012
    Completed checkpoint up to RBA [0x4099f.2.10], SCN: 43879588218
    Mon Sep 10 14:32:01 2012
    Beginning log switch checkpoint up to RBA [0x409a0.2.10], SCN: 43879769830
    Mon Sep 10 14:32:01 2012
    Thread 1 advanced to log sequence 264608 (LGWR switch)
    Current log# 2 seq# 264608 mem# 0: /oracle/redolog/neonprd/redo02a.log
    Current log# 2 seq# 264608 mem# 1: /oracle/redolog02/neonprd/redo02b.log

    Atiq wrote:
    How can i get the os user, db user, ip address of machine from where shutdown was issued???I can't say that I ever actually did this, but DBMS_LOGMNR might provide clues.
    The list of possible culprits is limited to those can login AS SYSDBA or SYSOPER.
    SYSDBA logins are audited for V10+ by default

  • My old computer crashed how do i get the music from my ipod to sinc with my itunes library?

    My old computer crashed how do i get the music from my ipod to sinc with my itunes library?

    You should be able to copy iTunes purchases to your computer's iTunes via File > Transfer Purchases. For music that you've bought from other sources or copied from your own CDs then have you not got a backup of them on, for example, an external drive that you can copy onto the computer ? If not then you will need to find a third-party program to copy them off - this post mentions some that were around a couple of years ago, whether they still exist and work I don't know.

Maybe you are looking for

  • Refreshing image ( and not displaying the one in the cache )

    Hello , I made an app with many galleries stored locally but i made another section with a daily image, and this image is located on an ftp server http://XXXXX.com/image.png for example so everyday i upload the new one with the SAME name as the older

  • Code of Conduct ESS Web Dynpro Error posting in IT

    Hi, we are using the "Code of Conduct" scenario in EP7.0 ECC6.0 . After filling out the Adobe Forms and sending the document, the user sees an error "...cannot write to user..". I know that results are written into Infotype 0035 subtype 003, but that

  • Start-up screen default to "Menu"? -- Zen Mi

    When I start up my Zen Micro, it goes directly to a "Now Playing" track. Is there a way to default to the "Menu" screen, so the menu is showing when I start up? Thanks. Ken

  • Estimate time to enable all constraints and create all indexes

    Hi, To prepare a project to export/import for a whole database, How can I estimate time required to enable all constraints and create all indexes * Assume one full table scan per one FK constraint * Assume one full table scan plus one sort/merge oper

  • Icloud activation locked

    Hello , i have iphone 4s that was my father's and when i tried to restore it , it said need icloud id and psw but my father do not remember it , now it's locked and i can't open it so can you help me please . Greetings ,