Viewing 15 posts - 391 through 405 (of 541 total)
balbirsinghsodhi (5/27/2009)
Actually, we are doing some kind of...
May 27, 2009 at 3:32 pm
SSRS db's behave just like regular db's you cannot backup just one report you have to backup the whole database.
Backup and Restore Operations for a Reporting Services Installation
http://msdn.microsoft.com/en-us/library/ms155814(SQL.90).aspx
Moving a Report...
May 12, 2009 at 11:04 am
May 8, 2009 at 2:51 pm
shannonjk (5/8/2009)
The only problem is, I have no idea how to create an ODBC connection or how to set up those privileges to it...
May 8, 2009 at 2:34 pm
Open VBA in Excel draw a command button and in the sub routine insert this code:
Sub ExecuteSQLJOB()
Dim Chan As Variant
'Open a channel to a SQL Server data source
Chan = SQLOpen("DSN=SQLServer")...
May 8, 2009 at 2:13 pm
When you run sql 2005 setup it will ask you if you would like to install as default instance.
Choose default instance and the next option will ask you if that's...
May 8, 2009 at 1:52 pm
Your default instance is 2000 and a 2005 is a named instance.
If you open SQL Server service manager you can see both instances or you can browse to Program Files.
C:\Program...
May 6, 2009 at 10:58 am
since it's a possible index corruption you should rebuild your indexes and schedule it at least once a week via maintenance plan.
May 6, 2009 at 10:34 am
Interesting...
do you see anything when you run dbcc opentran?
Run the same script but give it a different database name and remove replace.
if you still get the error you should restart...
April 23, 2009 at 1:06 pm
Run this:
RESTORE DATABASE [trackit65] FROM DISK = N'C:\test\trackit65_it_cw.bak'
WITH FILE = 1, MOVE N'TRACKIT65_IT' TO
N'C:\SQLData\TRACKIT65_IT.mdf', MOVE N'TRACKIT65_IT_log' TO N'C:\SQLData\TRACKIT65_IT_log.LDF', NOUNLOAD, REPLACE, RECOVERY, STATS = 10
April 23, 2009 at 12:48 pm
Last statements says that restore completed.
Run dbcc checkdb to make sure.
April 23, 2009 at 12:30 pm
Are you running windows 2003 server? or Vista?
You should login as admin and reinstall SP2.
April 23, 2009 at 12:02 pm
homebrew01 (3/15/2009)
March 15, 2009 at 3:56 pm
Gift Peddie & Ellis
Our SSIS packages interact with a 3rd party ETL tool called DataLever which cleans and then loads all the data from 16 different sources into a Staging...
March 12, 2009 at 5:54 pm
homebrew01 (2/27/2009)
I understand it's a good idea to run sp_updatestats in each db. Also set them to compatibility 90.What else ?
DBCC CHECKDB
February 27, 2009 at 10:46 am
Viewing 15 posts - 391 through 405 (of 541 total)