Forum Replies Created

Viewing 15 posts - 1,201 through 1,215 (of 1,335 total)

  • RE: Reindexing replicated tables

    Better schedule your DBCC job to run in all servers. By this way you guarantee the same.

  • RE: Rollback SP on Error problems

    use ST XACT_ABORT ON and then try executing the query for transactional related errors.

    Also i do hope as u said u have to create the view before using it else...

  • RE: Linking Servers and querying same column names

    1. Create a linked server

    2. Use the four part naming convention to access the remote server.

    3. Use table alais for refer the table and column names as you say that...

  • RE: Import SQL 2000 DB into SQL 2005

    Just backup the database from the 2000 server and restore the backup file in sql server 2005. this should be doing fine for your requirement.

  • RE: BEGIN TRY.......BEGIN CATCH error

    The TRY...CATCH block in sql server 2005 needs SET XACTABORT set to be on so that the rollback transaction can be handled in the catch block of the TSQL statement....

  • RE: moving ldf file

    check if the path is correct in master..sysaltfiles table. it where ur ldf file will be created.

  • RE: problems installing DatabaseMail

    try ping the smtp server. if pinging successful. Then try telnet smtp server 25. Port 25 is by default used as the smtp port if telnet is successful with that...

  • RE: 3 questions on database mirroring

    Answer for ur third is add a entry in the client configuration to point to servername,portnumber with alais as ur servername then u can use ur servername itself to connect...

  • RE: data protector restore failing

    since thats database with a size of just 600MB i advise u to restore the database backup from tape to the local disk then try restoring the database from the...

  • RE: LIKE keyword - is it case sensitive or not ?

    case sensitivity depends on the server/database collation and it does not affect sql operators, statements and internal commands directly. it depends on your database and/or the server.

  • RE: server slow

    Does it happen regularly or rarely. if regularly use profiler to trace the sql performance and check for the root cause. if it occurs rarely monitor the performance of the...

  • RE: transact log size

    just run this query

    DBCC SQLPERF(logspace). This will return the size of the log file for the database and the percentage space effectively used. once u find that you can...

  • RE: Update query

    I hope u requirement can be met using CASE statement. try with tat.

  • RE: New to SQL Server Administration

    Boss, You will get everything in Books Online.

  • RE: DTS/BCP transaction log full error

    What is the recovery model that is been set in that particular database?

Viewing 15 posts - 1,201 through 1,215 (of 1,335 total)