Rebuilding the server using DB backup

Dear Experts,
we are facing some serious problem.our quality server is got down because of some hardware problem and even operating system is not getting up. Iam having the full database backup of quality server. can any body tell me the steps cleary how to rebuild the quality server again after harddisks are replaced.
Thanks in Advance.
Rajiv.

rpillaiv wrote:
Dear Experts,
>
> we are using windows 2008 server and database is Microsoft 2005 sql server. Can any body provide me the clear steps how to restore it back as iam having the latest full database backup of quality server.
>
> Regards,
> Rajiv.
Have your read any system copy guide ? All steps are mentioned there.
Thanks
Sunny

Similar Messages

  • When I try to access iPhoto it says "your application has is either in use by another application or has become unreadable." It recommends rebuilding the library, but says backup everything first. I can't get into it to back anything up"

    Is there anything I can do on my own to get this fixed? I have tried shutting down and restarting and it does not help.

    It recommends rebuilding the library, but says backup everything first. I can't get into it to back anything up"
    It is recommending backing up your entire system or have a current Time Machine Back up which includes  your iPhoto
    Then rebuild your iPhoto library as recommended:
    hold the Command and Option keys  down during the complete launch of iPhoto.

  • How to upload a file which may contain text as well as image to the server using windows phone 8 application ?

    How to upload a file which may contain text as well as image  to the server using windows phone 8 application ?

    You're going to need to give way more detail about the situation before we can help.

  • How can I send an XML request to the server using servlets

    How can I send an XML request to the server using servlets

    http://forum.java.sun.com/thread.jspa?threadID=5158333
    http://forum.java.sun.com/thread.jspa?threadID=5158705
    Crossposting is lame.

  • Is it possible to delete message in the server using Mail configured using IMAP?

    Is it possible to delete message in the server using Mail configured using IMAP?
    Currently when I delete the message in Mail, the server still keep a copy of it, which means it is not deleted on the server. I know that POP can do this but I still want the option of being able to access it from other computers.
    My server has only a small size, so I hope that I can just delete it from my Mail instead of having to log in to the server and delete it again.
    Thank you.

    yxchng wrote:
    Is it possible to delete message in the server using Mail configured using IMAP?
    Yes, but doing so will remove it from everything else.

  • How to upload a file to the server using ajax and struts

    With the following code iam able to upload a file ato the server.
    But my problem is It is working fine if iam doing in my system nd when iam trying to
    access theis application from someother system in our office which are connected through lan
    iam getting an error called 500 i,e internal server error.
    Why it is so???????
    Plz help me????????
    It is required in my project.
    I want the code to access from every system.
    My exact requirement is i have to upload a file to the server and retrive its path and show it in the same page from which we
    have uploaded a file.
    Here the file has to be uploaded to the upload folder which is present in the server.Iam using Tomcat server.
    Any help highly appreciated.
    Thanks in Advance
    This is my input jsp
    filename.jsp
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>Insert title here</title>
    <script type="text/javascript">
    alertflag = true;
    var xmlHttp;
    function startRequest(file1)
         if(alertflag)
         alert("file1");
         alert(file1);
    xmlHttp=createXmlHttpRequest();
    var video=document.getElementById("filepath").value;
    xmlHttp.open("POST","FilePathAction.do",true);
    xmlHttp.onreadystatechange=handleStateChange;
    xmlHttp.setRequestHeader('Content-Type', application/x-www-form-urlencoded');
    xmlHttp.send("filepath="+file1);
    function createXmlHttpRequest()
         //For IE
    if(window.ActiveXObject)
    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
         //otherthan IE
    else if(window.XMLHttpRequest)
    xmlHttp=new XMLHttpRequest();
    return xmlHttp;
    //Next is the function that sets up the communication with the server.
    //This function also registers the callback handler, which is handleStateChange. Next is the code for the handler.
    function handleStateChange()
    var message=" ";
    if(xmlHttp.readyState==4)
         if(alertflag)
              alert(xmlHttp.status);
    if(xmlHttp.status==200)
    if(alertflag)
                                       alert("here");
                                       document.getElementById("div1").style.visibility = "visible";     
    var results=xmlHttp.responseText;
              document.getElementById('div1').innerHTML = results;
    else
    alert("Error loading page"+xmlHttp.status+":"+xmlHttp.statusText);
    </script></head><body><form >
    <input type="file" name="filepath" id="filepath" onchange="startRequest(this.value);"/>
    </form>
    <div id="div1" style="visibility:hidden;">
    </div></body></html>
    The corresponding action class is FIlePathAction
    package actions;
    import org.apache.struts.action.Action;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionForward;
    import org.apache.struts.action.ActionMapping;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import java.io.*;
    public class FilePathAction extends Action{
         public ActionForward execute(ActionMapping mapping, ActionForm form,
                   HttpServletRequest request, HttpServletResponse response)
                   throws IOException, ServletException
              String contextPath1 = "";
              String uploadDirName="";
              String filepath="";
                        System.out.println(contextPath1 );
                        String inputfile = request.getParameter("filepath");
                        uploadDirName = getServlet().getServletContext().getRealPath("/upload");
                        File f=new File(inputfile);
    FileInputStream fis=null;
    FileOutputStream fo=null;
    File f1=new File(uploadDirName+"/"+f.getName());
    fis=new FileInputStream(f);
         fo=new FileOutputStream(f1);
                        try
         byte buf[] = new byte[1024*8]; /* declare a 8kB buffer */
         int len = -1;
         while((len = fis.read(buf)) != -1)
         fo.write(buf, 0, len);
                        catch(Exception e)
                                  e.printStackTrace();
                        filepath=f1.getAbsolutePath();
                        request.setAttribute("filepath", filepath);
                        return mapping.findForward("filepath");
    Action-mappings in struts-config.xml
    <action path="/FilePathAction"
                   type="actions.FilePathAction">
                   <forward name="filepath" path="/dummy.jsp"></forward>
              </action>
    and the dummy.jsp code is
    <%=request.getAttribute("filepath")%>

    MESSAGE FROM THE FORUMS ADMINISTRATORS and COMMUNITY
    This thread will be deleted within 24 business hours. You have posted an off-topic question in an area clearly designated for discussions
    about Distributed Real-time Java. Community members looking to help you with your question won't be able to find it in this category.
    Please use the "Search Forums" element on the left panel to locate a forum based on your topic. A more appropriate forum for this post
    could be one of:
    Enterprise Technologies http://forums.sun.com/category.jspa?categoryID=19
    David Holmes

  • How do I configure snow leopard server to allow local client to access the server using its public domain name

    I have SLS 10.6 running on my local network with DNS configured.
    I can access the server from a client on the lan using server.local or server.domain  where domain name is my publically registered domain,
    From the internet I can access my server using the registered domain name i.e. www.domain.com. 
    Is it possible to set my server up so that www.domain.com  also reaches the server when used by a client locally?   At present I get a page not found error.

    The configuration you're aiming for is called split-horizon or split-brain DNS, and it's quite possible.  It can get slightly hairy when you have different stuff using the same host name for different purposes, for instance, and you'll need to track all external DNS entries in your internal DNS server when you're running "split". 
    Here is how to set up DNS services.   Split-horizon is one of the options listed there.
    My preference is to use a different domain or subdomain within the network, and to avoid using split-horizon where I can reasonably manage it.  One domain name is configured for and reachable outside and is effectively public, and the other domain (or a subdomain) is inside and private and only reachable directly or via VPN, for instance.

  • Can connect to the server using VPN, but cannot pull up the shared drives

    I can connect to the server at work using PPTP VPN. I can ssh to the server once I VPN'd in. I cannot, however pull up any of the shared drives using K. It just says that it is connecting, but nothing happens. When I disconnect the VPN, the user name and password box pops up. The only way to get rid of it is to click cancel. Nothing changed on the server since the last time I logged in. Also, when I am VPN'd in, I cannot use the Server Admin or Workgroup Manager. Any assistance is greatly appreciated.
    P.S. The server is the MacMini and the client is the MacBook, running 10.5.7 software.

    This is strange, your setup is the same as mine :P
    Anyways, I also have a problem like this.
    I connect to VPN fine, but tools that need to access the net seem to take a very long time to open. Its as if my Client Information inside the server isn't being sent to the client correctly.
    It takes atleast two minutes after connecting to the VPN for iChat to connect and work again, and tools like Server Admin seem not to work at all.

  • Writing a file to the server using an applet...?

    Hi,
    I've been searching the web now for almost a day trying to find some help in how to do this... The biggest problem is that I'm kind of a newbie (not a total beginner, but this is the first time I've ventured into applet creation)
    What I'm trying to do is writing a simple web-page updater... i.e. This is what it should be able to do:
    1) Read HTML page and parse it so that I can change the important parts (the info on the page, not the actual HTML code) - DONE
    2) Present the information and let the user change it as (s)he sees fit - DONE
    3) generate the new HTML and write it back as a file on the server (replacing the old one) -- PROBLEM -- :)
    I think (!?) that I should be able to do this using the HttpURLConnection() POST method in addition to a PHP script on the server moving the file around once it's been uploaded. I don't, however, have a clue as to what the code should look like to accomplish something like this...(as I've never used it before, and can't seem to find sample code that would be even close to what I'm trying to do)
    How can this be done? Also, is there a simpler way of doing this?
    Thanks for taking the time to read that :)
    -NRGizeR

    as I said, I will gladly take suggestions :)
    again, I'm new to all of this and I don't really know what things in java (or any of the script languages for that matter) can or cannot do...
    Even if there is a better way, I would still know if this is solvable tho (I just want to get my head straight after banging it against this wall for the past few days) :), but as I said, any suggestions would be appreciated...

  • Can i delete my emails from the server using the default mail program in mountain lion?

    how can i delete emails from the server in mail on os 10.8.1?

    Hi, check Mail>Preferences>Accounts, both Mailbox Behaviors & Advanced tab to see those settings.

  • How can I send an XML request to the server using JSP

    Can anybody say how to send a xml request
    For ex:
    Address:__________
    City: ________
    State:__________
    Country:________
    and a Submit Button.
    By clicking on the Submit Button -- xml request had to go to the server.
    Please send the detailed code for it

    xml http request..is that wat your are looking for?

  • Shutting Down the server using Xyplex ?- Root passwd not known for Decomiss

    Hi All,
    I am on run level 3 and need to get to run level 0 through xyplex console.The server is on run level 3 .I know there are controls for xyplex to get to run level 0 - ctrl a + ctrl b.But these are not working.I dont have the access to the server rite now.Only access to console but I cannot login to the server.( it was decommisnned).Does anybody know how to get to run level 0 or shutting down the server through xyplex.

    step 3:
    Keep "dbora" in following path :
    /etc/rc.d/rc3.d/dbora
    /etc/rc.d/rc5.d/dbora
    /etc/rc.d/init.d/dbora
    And also ,
    chmod 750 /etc/init.d/dbora
    chkconfig --level 345 dbora on
    Check following links are there
    # ln -s /etc/init.d/dbora /etc/rc.d/rc3.d/K01dbora
    # ln -s /etc/init.d/dbora /etc/rc.d/rc3.d/S99dbora
    # ln -s /etc/init.d/dbora /etc/rc.d/rc5.d/K01dbora
    # ln -s /etc/init.d/dbora /etc/rc.d/rc5.d/S99dbora
    Script/link start with "K" , is responsible for shutdown database.
    Check following Oracle Documentation link , it explain all in details
    Starting and Stopping Oracle Software
    - Virag Sharma
    http://viragsharma.blogspot.com
    http://virag.sharma.googlepages.com

  • Deployment process in the server using Jdeveloper?

    Hi All,
    I am new to the SOA .. need some help to deploy the service in the application server?
    Before deploying the service what are the properties files need to be changed like .xml files?
    Please provide the suggestion to deploy the service ?
    Srinivas Bhoosarapu..
    Message was edited by:
    user650317

    Modified the required files as per the specifiacation in both xml and properties files .
    Deployed the service successfully.
    But problem is it's not picking the file from the source server.
    Please guide me how to test the service...in the bpel after deploying the service...
    how the check the service log ?

  • My Mac Mini client cannot find or connect with the server on my 4 station network.  I am able to connect with the server using the same ethernet connection with another Mac.  Any suggestions?

    I am using DHCP/automatic running OS 10.4.11.  I upgraded to 10.5 but this did not help.

    Ping has started ...
    PING 192.168.1.1 (192.168.1.1): 56 data bytes
    64 bytes from 192.168.1.1: icmp_seq=0 ttl=64 time=1.158 ms
    64 bytes from 192.168.1.1: icmp_seq=1 ttl=64 time=0.941 ms
    64 bytes from 192.168.1.1: icmp_seq=2 ttl=64 time=0.911 ms
    64 bytes from 192.168.1.1: icmp_seq=3 ttl=64 time=0.924 ms
    64 bytes from 192.168.1.1: icmp_seq=4 ttl=64 time=0.995 ms
    64 bytes from 192.168.1.1: icmp_seq=5 ttl=64 time=0.971 ms
    64 bytes from 192.168.1.1: icmp_seq=6 ttl=64 time=0.964 ms
    64 bytes from 192.168.1.1: icmp_seq=7 ttl=64 time=0.937 ms
    64 bytes from 192.168.1.1: icmp_seq=8 ttl=64 time=0.894 ms
    64 bytes from 192.168.1.1: icmp_seq=9 ttl=64 time=0.874 ms
    --- 192.168.1.1 ping statistics ---
    10 packets transmitted, 10 packets received, 0% packet loss
    round-trip min/avg/max/stddev = 0.874/0.957/1.158/0.075 ms

  • SharePoint 2013 - document libraries and newsfeeds are visible when viewed using Internet Explorer running on the server but not from any other machine

    On a single Windows 2012 R2 server I have installed SQL 2012 and SharePoint 2013 SP1 with the latest update roll ups. When I remote desktop to the server using the farm and site collection admin account  and open page http://server_name_here using
    Internet Explorer, I'm able to see newsfeeds and document libraries.
    If I connected to a separate Windows 7 machine as  the farm and site collection admin account  and open page http://server_name_here using Internet Explorer, I'm able to view the SharePoint pages except I cannot see any newsfeeds or document libraries.
    There's just blank space where they should be. I have repeated this process on several other machines that are not the server and get the same result on every machine (I've tried other servers, desktops, adding the SharePoint site to the trusted sites list
    in IE, even using firefox). I'm using the same account as I did when I logged onto the server directly. Any thoughts as to what's going on?
    Thanks!

    Thanks for the idea, Harsh. What am I looking for?
    It is currently set to the default of http://server_name and http://server_name:port_number (the latter is for Central Admin).
    When I have access to the server, I have always done so the same way, using http://server_name. This was true when I access it from the desktop of the server itself and when I tried to access it from other desktops and servers (the machines where I had the
    issues with the libraries and feeds not showing up). Are there other values I should add?
    I have not tried to add http://server_FQDN as we don't plan on using that to access it but if you think it will help I would be happy to add it.

Maybe you are looking for