Forum Replies Created

Viewing 15 posts - 1 through 15 (of 117 total)

  • RE: RSTemp Folder

    By default the location is on C:\Program Files\Microsoft SQL Server\MSRS10.<<Instance Name>>\Reporting Services. Change this by modifying the rsreportserver.config file and adding the entry to the <Service> tag:

    ...

  • RE: Curiosity

    Thanks Gail for letting me know this feature.

  • RE: Curiosity

    As Gails Shaw advised DBCC CLEANTABLE can not help you.

    DBCC CLEANTABLE reclaims space after a variable-length column ( varchar, nvarchar) is dropped.

    You can just try;

    1. Before truncating the table

    ...

  • RE: Cluster upgrade

    If I understand your query correctly, you are asking is there possible to upgrade Active / Passive SQL Server 2005 cluster to SQL Server 2008.

    Yes SQL Server 2005 cluster can...

  • RE: Recovery Mode

    On the simple recovery model, the transaction log is automatically truncated. If you must remove the log backup chain from a database, switch to the simple recovery model.

    ...

  • RE: move files to different file group

    GilaMonster (8/3/2010)


    sivaprasad (8/3/2010)


    2. Detach the files to be moved to different filegroup

    ...

    4. Attach the files to the Filegroups created.

    How? Detach detaches an entire database, not a file. Same with attach....

  • RE: move files to different file group

    sivaprasad (8/3/2010)


    1. To move the file, Empty the file ,using DBCC SHRINKFILE with EMPTY option

    EMPTYFILE

    Migrates all data from the specified file to other files in...

  • RE: Single node SQL Server 2005 upgrade to SQL Server 2008 fails

    No other SQL Server Instance installed

  • RE: move files to different file group

    1. To move the file, Empty the file ,using DBCC SHRINKFILE with EMPTY option

    EMPTYFILE

    Migrates all data from the specified file to other files in the...

  • RE: Jobs and Secutiry Info

    Query of below can help you on direction of security

    set nocount on

    go

    --- 1. Details about the Fixed Server Roles

    PRINT '1. Details about the Fixed Server Roles'

    GO

    sp_helpsrvrolemember

    -----2. Details about the Database...

  • RE: Install SQL 2008 64bit

    Is the login you used to install have the "Local Administrator" privileges on the the host?

    Check on the setup error place on "C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log"

  • RE: Install SQL 2008 64bit

    The following are the default service on SQL Server 2008

    SQL Server

    SQL Server Agent

    SQL Server Browser

  • RE: Enterprise edition features Vs Developer Edition features

    Developer edition has the all the feature of Enterprise Edition.

    However the Developer Edition has a few limitation like memory , CPU and of course limited on the license to development...

  • RE: Working MS SQL Remotly

    Yes, it is possible using detach and attach of database.

    Please refer the KB article for details

    How to move SQL Server databases to a new location by using Detach and Attach...

  • RE: Single node SQL Server 2005 upgrade to SQL Server 2008 fails

    No, only the SQL Server 2005 Database Engine used on this single node cluster.

Viewing 15 posts - 1 through 15 (of 117 total)