Viewing 15 posts - 1 through 15 (of 117 total)
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:
...
February 11, 2011 at 3:23 am
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
...
August 6, 2010 at 6:11 am
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...
August 6, 2010 at 5:49 am
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.
...
August 4, 2010 at 7:03 am
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....
August 3, 2010 at 6:24 pm
sivaprasad (8/3/2010)
EMPTYFILE
Migrates all data from the specified file to other files in...
August 3, 2010 at 6:21 pm
No other SQL Server Instance installed
August 3, 2010 at 8:51 am
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...
August 3, 2010 at 7:35 am
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...
August 2, 2010 at 6:24 am
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"
July 31, 2010 at 6:02 am
The following are the default service on SQL Server 2008
SQL Server
SQL Server Agent
SQL Server Browser
July 31, 2010 at 5:52 am
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...
July 31, 2010 at 5:31 am
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...
July 30, 2010 at 3:29 am
No, only the SQL Server 2005 Database Engine used on this single node cluster.
July 28, 2010 at 10:17 pm
Viewing 15 posts - 1 through 15 (of 117 total)