Forum Replies Created

Viewing 15 posts - 226 through 240 (of 286 total)

  • RE: Several Instances of SQL

    In Windows 2003 you can see user name (add "Users name" column from "View" menu). You will see difference if your instances run under different NT accounts.

  • RE: HELP PASSWORD VALIDATION HELP

    We had similar problems when name server was not avaliable (check DNS or WINS settings).

  • RE: LOCKS - How can I see what type of lock is applied by sql server

    Profiler also shows this information (if you need long time monitoring). Just make sure that you selected "Lock" events to monitor and selected "BinaryData" and "Mode" columns. "Mode"  describes the...

  • RE: SQLH2 error

    Yes, this is server name. But this does not look like error's source. It runs withour errors localy on the same server. I guess, error is because of this procedure...

  • RE: Restoring of database

    If you are sure, that you restored all backups (data and logs), try to run this command in Query Analyzer:

    RESTORE DATABASE DB_NAME WITH RECOVERY

  • RE: SQL Server and Delegation with domain accounts

    Kerberos works on TCP/IP, so make sure that in protocols order (connection utilities) first protocol is TCP/IP and second - Named Pipes. When I tested accounts delegation I could not connect until...

  • RE: Deleting an owner

    Open "Users" folder for this database and check if this account (login) is mapped to "dbo" user. If yes - fix it with procedure sp_changedbowner.

  • RE: MS DTC on win2003. Problem on installing

    I am not sure about clusters, but usually MS DTC installation in Windows 2003 server avaliable from "Control Panel" -> "Add or Remove Programs" -> "Add/Remove Windows Components" -> "Application...

  • RE: Jobs failing with event 208

    What are SQLSEREVER and SQLSERVERAGENT services startup accounts? Local user, system or Domain account? And does this account has access to that web server? Can you give some information about...

  • RE: Growing Log File - Shouldn''''t the backup shrink it?

    You need to backup log more often, try to do it several times a day. It depends on frequency of modifications in your database.

  • RE: Is Transfer Database task available in the DTS programming model

    If you installed samples on SQL Server installation there are samples:

    C:\Program Files\Microsoft SQL Server\80\Tools\Devtools\Samples\Dts\Dtstasks\DTSCopyDatabase

    Another way to run any DTS package from program or script - save package as file, then...

  • RE: WebTask will not work on SQL 2000 on W2K3 Server

    I used Enterprise Manager wizard to create web task and then scripted it. Here is the script and it worked fine, as well as job with SQL 2000 and Windows 2003:

    EXECUTE...

  • RE: Users Last Login Date

    Otherwise you can trace event class "Security Audit -> Audit Login" (best way to do it not with Profiler, but with stored procedures, like sp_trace_create, sp_trace_setevent etc.).

  • RE: Users Last Login Date

    If the user is still connected to server you can find out it from login_time column from sysprocesses table.

  • RE: transaction log backup and truncation in sql 7.0

    Yes, this is the best script to fix permanenently log size. I use it as well for long time (this script is from Microsoft). Also, I suggest you to do...

Viewing 15 posts - 226 through 240 (of 286 total)