Forum Replies Created

Viewing 15 posts - 961 through 975 (of 2,462 total)

  • RE: grant select to a table on a linked server

    u need to setup linked server for "ServerM"

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Restores is failed

    but right now. In Production databases, Log files used to be 60-100 MB before but right now it increases upto 14 GB.

    so I try that command above manually and I...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Backup Plan for new midweek SQL databases

    below query can help you to list down all db for backup but you need to cutomize your current scripts

    declare @tbl_backup_list table (id int identity ,[db_name] nvarchar(200))

    insert into @tbl_backup_list

    select...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: script login permissions at database, server level

    GRANT VIEW SERVER STATE TO <<login name>>

    This will grant <<login_name>> VIEW ANY STATE permission.

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Opening & Saving Multiple Trace Files ?

    homebrew01 (5/11/2012)


    I want to look through about 30 trace files from this past week. I can open each one, then "Save as Trace Table" to a SQL table to run...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Security Configuration

    durai nagarajan (5/11/2012)


    NT AUTHORITY\NETWORK SERVICE

    NT AUTHORITY\SYSTEM

    ServerName\SQLServer2005MSFTEUser$ServerName$MSSQLSERVER

    ServerName\SQLServer2005MSSQLUser$ServerName$MSSQLSERVER

    ServerName\SQLServer2005SQLAgentUser$ServerName$MSSQLSERVER

    does the mentioned users should have access to connect to SQLserver or shall i remove them.

    if access needed what access should i need to configure.

    i...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Error :64(The specified network name is no longer available.)

    Nagendra Rao (5/10/2012)


    Hello Bhuvnesh,

    I have the same problem. Can you please tell me what Network issue you had. In my case,

    1. I am able to navigate from my SQL...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Database locks

    set the sql profiler and trace the lock and deadlock there.

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: sqlagent job failing

    it will be get reflected automatically to all the area/section wherever used.

    but haven't you hard coded rthe password anywhere ?

    have you checked the job history for error ?

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: why i can't shrink tempdb data file

    mike schreiner (5/9/2012)


    2. Go to cmd prompt and Run as Administrator

    5.Go to the Binn directory of the SQL Server instance. In this case it was d:\Program Files\Microsoft SQL Server\MSSQL10_50.AFVCSQLSERVER01\MSSQL\Binn

    6.In...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Blocking Issue

    Set trace on performance monitor see if there are high IO spikes

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Find out why a SP failed.

    capn.hector (5/7/2012)what i expected to hear. what im figuring is one delete occurred the other got rolled back which caused the issue. thanks for the help.

    It...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Just a Quick Question

    .Netter (5/7/2012)I understand what every one has written and i appreciate your time on this subject, but my point was if im not going to use them columns then why...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Separating Users for each Application

    Having separate users can help you to track and restrict their usage or activities.If you are using SQL 2008R2, resource governor can help you to manage resources usage for every...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Should I convert my non-clustered index into a clustered index

    you can keep your historical /old data on other disk by setting some archival job(hourly basis or may be trigger) and later use these two different tables to fetch current...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

Viewing 15 posts - 961 through 975 (of 2,462 total)