Viewing 15 posts - 76 through 90 (of 125 total)
Hi,
Would you run the DBCC CHECKDB with the REPAIR_REBUILD option (after recovery from a backup/HA solution)? I seem to remember that this was the preferred option the MS 2005...
January 29, 2013 at 2:18 am
Ness (8/14/2012)
Use the following to verify that it exists on the server and make sure that the integration services service is running to view via ssmsSELECT
COUNT(*)
FROM
msdb.dbo.sysdtspackages
:blush: I humbly...
August 15, 2012 at 4:18 am
Yep - it works fine... As long as you do not use an alias, and use the server name and it's the default instance it works fine. It listens by...
August 15, 2012 at 3:41 am
You could always run a server side trace looking for the events and especially the TM: Rollback Tran Starting/Completed event to spot if the transaction was rolled back
August 15, 2012 at 3:24 am
Hi,
That should show you the packages if you used the option to save them into SQL rather than via the file system. Did you deploy and use a manifest...
August 14, 2012 at 10:13 am
Use the following to verify that it exists on the server and make sure that the integration services service is running to view via ssms
SELECT
COUNT(*)
FROM
msdb.dbo.sysdtspackages
August 14, 2012 at 9:45 am
Re:
Keep in mind that should you ever need to use the dedicated admin connection, the browser service will need to be running and 1434 will need to be accessible.
I have...
August 14, 2012 at 9:16 am
I may be thinking along the wrong lines but I think that you can use the dmv's to get this info utilising the cached plans for 'adhoc/prepared' plans. From this...
August 14, 2012 at 8:05 am
Hi Guys,
Nice script but I would not advise putting this on a production box due to the SQL injection risk of the
-- Execute passed SQL.
EXEC (@SQLToRun)
part of...
August 3, 2012 at 7:58 am
You could always try using SQL profiler when you open the report to capture the sql behind it and reverse engineer what you need 🙂
July 26, 2012 at 5:44 am
OPTION RECOMPILE is your friend in this case, if you can use it. or read up on parameterization.
Alternatively, I believe if you declare a new set of variables and...
July 19, 2012 at 10:24 am
Try creating a SystemDSN entry on the machine you are trying to connect from AdminTools > ODBC DataSource Administrator > System DSN
This can be a good initial test of connectivity
July 19, 2012 at 10:03 am
Thanks for the responses but I'm not sure that I am being clear. Restoring clears the cache for the instance, so if you are hosting more than one client on...
July 19, 2012 at 8:44 am
Viewing 15 posts - 76 through 90 (of 125 total)