Forum Replies Created

Viewing 15 posts - 1,021 through 1,035 (of 2,387 total)

  • RE: SQL Agent Job hangs

    What I like you to do is to creaet backup job without using maintenance wizard to see whether it hangs or not. If it works fine, keep it running as...

  • RE: SQL Agent Job hangs

    Have you tried create backup job statement and schedule it to run? When you see job hang, go to server task manager to see how many sqlmaint.exe are there, Kill...

  • RE: Server Log Not Visible

    Right click LOG folder --> Properties --> Security Tab --> Tell us the accounts and permissions accouts have.

  • RE: USE @dbname command

    USE master

    declare @dttm varchar(55)

    select @dttm=convert(varchar,getdate(),113)

    raiserror('Beginning InstPubs.SQL at %s ....',1,1,@dttm) with nowait

    GO

    if not exists (select * from sysdatabases where name='pubs')

    begin

    raiserror('Creating pubs database....',0,1)

    CREATE DATABASE pubs...

  • RE: Adding a new column to a table -Advanced-

    Don't think you can do it with alter table command. You can use EM to insert new column at any position.

    If you really want to place new column in...

  • RE: Server Log Not Visible

    Is your SQL Server service account in the local administrator group?

  • RE: How reboot of two node of cluster server

    Definitely it takes less time than reboot. In my SQL Server clusters, it takes about 30 seconds depending on how many resources SQL server resource depend on.

  • RE: Server Log Not Visible

    I would check the SQL Server service account to see whether it has sufficient right to the directory the log files reside.

  • RE: Permissions to see last TSQL command

    I tried, It doesn't have to permissions to see other people's processes. It can be use to kill processes.

  • RE: How reboot of two node of cluster server

    You can use Cluster administrator to fail-over from one node to another node, reboot the first node, fail-over to first node and reboot second node.

    Depending on which patch you are...

  • RE: SQL 7.0 Server Fatal Error

    What is your MDAC version and SQL Server service pack version?

  • RE: Permissions to see last TSQL command

    Unfortunately you can see only SPID and last statement with dbcc inputbuffer you own if you are not 'sysadmin'.

  • RE: Cannot get SQL Debugging to install/work

    Have you tried to install debugger from SQL Server CD?

  • RE: Permissions to see last TSQL command

    You actually call dbcc inputbuffer command to see the last TSQL command.

    DBCC INPUTBUFFER permissions default to members of the sysadmin fixed server role only, who can see any SPID. Other...

  • RE: Removing secondary node

    From BOL. You may already read it.

    "Removing a Node from an Existing Failover Cluster

    You can remove a node from a virtual server (for example, if a node is damaged). Each...

Viewing 15 posts - 1,021 through 1,035 (of 2,387 total)