Forum Replies Created

Viewing 15 posts - 1 through 15 (of 26 total)

  • RE: FTP

    There could be many different issues. This is one of the possible reasons.

    Connection closed by remote host.

    which shows your connections are getting disconnected. High probability that its due to network...

  • RE: FTP

    I would do it on both servers.

    Go to property of network connection.

    Click -> Configure

    Go to Power Management tab

    There you will find check box for "Allow the computer to turn off...

  • RE: FTP

    Check the network card properties and see if "Allow the computer to turn off this device to save power." is checked or not. If it is checked, that could be...

  • RE: Dealing with Multiple resultsets

    I am trying to get both resultsets of stored procedure and save it in tables. Then parse through it.

    I dont want to get code out of procedure and run the...

  • RE: Error 17803 Clustered Windows 2000 Server

    fapel did you get any solution on that?

  • RE: CLUSTER Error: Could not find any IP address that this SQL Server instance depends upon???

    What kind of errors are you getting? Is SQL 2k5 installation completing successfully or is it failing before that? I am sure you are but just out of curiosity are...

  • RE: Automated Database Build from scripts

    based on the naming conventions. You need to name the script so if you order scripts by name it appears in the same order as you want to execute. We...

  • RE: Automated Database Build from scripts

    We are using it for database builds for several projects and it works great.

  • RE: Automated Database Build from scripts

    Did you try Visual Build? We are using visual build and Visual source safe, in visual build you can create build package for full build as well as incremental builds....

  • RE: Backup db via ''''bat'''' file instead of db maint plan.

    You can use sqlmaint utility too. Look in BOL for SQLMaint utility.

  • RE: Index Problem

    Check "DBCC DBREINDEX(Table_Name)" in BOL

  • RE: SQL 2000 and Windows Server 2003

    Microsoft supports SQL 2000 with SP3 or above on Windows 2003. We have around 20 SQL Server 2000 instances on Windows 2003 and we dont have any problems.

  • RE: Logins

    Hi,

    I had same problem about orphaned users, i just ran update query on the sysusers table for all the databases for orphaned users to update their sid to correct one,...

  • RE: List database recovery modes

    You can run following script against master database which will list all databases with their recovery mode on the server.

    ################################################

    Create Table #temp1 (databasename varchar(200), Recoverymode varchar(200))

    Declare dbname CURSOR

    FOR

    select name from sysdatabases

    Declare...

  • RE: Could not find database table ID 2, name tempdb..

    It seems your sysdatabases table in master database doesn't have entry for tempdb. Is SQL Server Running? I had same errors when one of my collegue detached tempdb. If SQL Server...

Viewing 15 posts - 1 through 15 (of 26 total)