Forum Replies Created

Viewing 15 posts - 31 through 45 (of 57 total)

  • RE: There is no space in the server

    You can start by backing up the TLOG to a network location and then shrinking the log files, which will start to free up some space.

    If you add additional storage,...

  • RE: server name

    This is because the servername(or network name) must have changed in the past. the serverproperty('servername') will reflect the new name. however @@servername will reflect the old name.

    To fix this issue,...

  • RE: Need to change the log file to grow un-restricted

    The Max LogSize allowed in 2TB. it is pretty big a size for a log file and i will be surprised if you are reaching that limit!

    You can specify multiple...

  • RE: Permissions in Sql 2005

    Books On Line will be helpful.

    you can read about some of these views for a start:

    sys.server_principals

    sys.server_permissions

    sys.database_principals

    sys.database_role_members

    sys.database_permissions

  • RE: User administration best practice

    Users will generally be placed in the databases they would need access to. they will be mapped to Logins which reside in the master database. if the Login does not...

  • RE: Performance Tuning in SQL Server 2005

    beejug1983 (8/24/2010)


    How can I get these CPU, Network & Memory details ? Can you guide me ?

    You can use a profiler or one of the Set Statistics [time / IO]...

  • RE: Grouping records issue

    would this help?

    declare @tblattendance table ([Week Number] tinyint identity(0,1), num_att_on_day int, [Site ID] smallint)

    insert into @tblattendance

    select count(*) as num_att_on_day, [site id]

    from tblattendance

    where [Attendance date], > DATEADD(wk, DATEDIFF(wk,...

  • RE: Problem with installing SP3 on SQL server 2005 Failover Cluster

    Why are you trying to pause the inactive node. from my understanding, the installation will need both nodes and will apply the SP on both of them. The first error...

  • RE: Linked Server security

    One way I generally achieve this is by setting the default database for those users to a database that they dont have access to. for e.g. Database2(they DONOT have access...

  • RE: Is it possible to combine the values from more than 1 record into 1 resultset?

    try using CTE.

    you can also use cursor(smartly) or a while loop for all the duplicate appointmentids..

  • RE: Reorganize and rebuilding of indexes, transaction log growth

    Yes the rebuild will increase the transaction log. however, if you carefully do the index maintenence, the increase can be controlled. there is no need to do index maintenence on...

  • RE: T-log and T-Log Backup

    1. During transaction log backup, is it the inactive portion of the log (LSN< MINLSN) that is actually archived?

    This is correct.

    2. If so, does the inactive VLFs...

  • RE: SQL Execution Order with multiple Joins

    Shriji (8/17/2010)


    Thanks for the replies guys.

    While waiting on the reply, I created this small script and it proves what I assumed. The results are different:

    create table #a (x int, y...

  • RE: Index Defragmentation

    You should check page splits through perfmon. if there are a lot of page splits occuring, then you need to look and adjust the fill factor. Also look at the...

  • RE: Error accessing remote server in a scheduled job

    you need to make the database trustworth.

    Try this:

    alter database [DBNAME] set trustworthy on

Viewing 15 posts - 31 through 45 (of 57 total)