Forum Replies Created

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

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

    maryamzolfaghar (5/14/2012)


    I already have set up the linked server

    is this query returning 1 row in your case

    SELECT TOP 1 * FROM [serverN].MASTER.dbo.sysobjects

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

    u need to setup linked server for "ServerM"

  • 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...

  • 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...

  • RE: script login permissions at database, server level

    GRANT VIEW SERVER STATE TO <<login name>>

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

  • 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...

  • 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...

  • 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...

  • RE: Database locks

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

  • 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 ?

  • 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...

  • RE: Blocking Issue

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

  • 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...

  • 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...

  • 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...

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