Viewing 15 posts - 376 through 390 (of 545 total)
Maybe your system Databases are hidden...
ChecK--> right click SERVERNAME--> Edit SQL Server Registration Properties. anc check to see if the "Show system Databases and system Object" is checked. if...
June 30, 2008 at 11:30 am
did you check the path to the Access Database and the Autoexec File.
use a UNC insted of mapped Drive. something like\\Server\path\file.bat
June 30, 2008 at 8:35 am
see if this is helpful:
June 30, 2008 at 8:30 am
You need to connect to "INTEGRATION SERVICES" and then you will be able to see the packages either under MSDB or File System.
Object Explorer->Connect-> "Integration Services"
June 30, 2008 at 7:55 am
Checkout some samples on http://www.sqldts.com or http://www.sqlis.com
Rather check this: http://www.sqldts.com/215.aspx
June 30, 2008 at 7:40 am
in the default instance text box try \\ or \ in the start (first characters) Or try MSSQLSERVER\\NAME
June 30, 2008 at 7:33 am
kill is not ending it. How to fix this?
-----------------------------------------
When you kill the SPID, DOes it go into a ROLLBACK Situation and stay there right?
It gets converted into a...
June 30, 2008 at 7:27 am
Also Try using the IP Address instead.
June 30, 2008 at 7:19 am
It Creates this location, because the locaiton you specified in your RS Solution Properties is the same. Check the Report Solution Properties and the Location. Remove "\"
June 30, 2008 at 7:02 am
You need to check for the Folder here:
USE MSDB
exec sp_executesql N'exec [msdb].[dbo].[sp_dts_getfolder] @P1, @P2',N'@P1 nvarchar(17),@P2 uniqueidentifier',N'Maintenance Plans','00000000-0000-0000-0000-000000000000'
and then add the Folder like this:
Add the folder if missing:
exec sp_dts_addfolder '00000000-0000-0000-0000-000000000000','Maintenance Plans','08AA12D5-8F98-4DAB-A4FC-980B150A5DC8'
Or...
June 30, 2008 at 7:00 am
Well, you can check your Cube(s) (Analysis Services Database) Complexity against Performance.
If you have Many Dimensions and Fact Tables and Millions of Rows and it is a performance hit on...
June 29, 2008 at 9:19 pm
well you will have to loop through the folder where these files will exists.
you cna use the for loop component task in SSIS to take care of this, or VBScript.
check...
June 29, 2008 at 8:57 pm
TRY THIS:::
RESTORE DATABASE DATABASENAME
WITH REPLACE,
MOVE 'LOGICAL DATA FILENAME' TO 'PATH TO MDF FILE',
MOVE 'LOGICAL LOG FILENAME' TO 'OATH TO LDF FILE'
June 29, 2008 at 8:36 pm
Well, you can do a ServerSide trace using the same patterns.
June 29, 2008 at 8:25 pm
Viewing 15 posts - 376 through 390 (of 545 total)