Viewing 15 posts - 4,381 through 4,395 (of 6,400 total)
Are you running SSCM on the active node?
July 9, 2012 at 7:56 am
The first link contains the T-SQL to create the alert and the job and the table it logs it too, but you will need to specify the Database and modify...
July 9, 2012 at 7:29 am
duplicate post
reply to this thread
http://www.sqlservercentral.com/Forums/Topic1322306-392-1.aspx#bm1326782
July 9, 2012 at 6:56 am
This will do the trick
DECLARE @d DATETIME = '1984-08-13 00:00:00.000'
SELECT CONVERT(NVARCHAR(10),@d,120)
July 9, 2012 at 6:44 am
Top 5 off the top of my head are
Red-Gate SQL Monitor
Idera Diagnostic Manager
Quest Spotlight
Quest Foglight
SQLSentry
All are differently priced and all have their similarities and differences, I would recommned downloading the...
July 9, 2012 at 6:05 am
Sounds like a catch all query
Please read through this
http://sqlinthewild.co.za/index.php/2009/03/19/catch-all-queries/
July 9, 2012 at 5:42 am
SELECT
U.UserName AS SubscriptionOwner,
C.Path AS ReportPath,
CONVERT(XML,S.ExtensionSettings) AS SubscriptionSettings,
S.EventType AS SubscriptionType,
CONVERT(XML,S.Parameters) AS ReportParameters,
S.DeliveryExtension AS DeliveryMethod,
Sc.Name AS ScheduleName,
Rs.ScheduleID
FROM
Subscriptions S
INNER JOIN
Users U
ON
S.OwnerID = U.UserID
INNER JOIN
Catalog C
ON
S.Report_OID = C.ItemID
INNER JOIN
ReportSchedule RS
ON
S.SubscriptionID = RS.SubscriptionID
INNER JOIN
Schedule Sc
ON
RS.ScheduleID...
July 9, 2012 at 3:02 am
It runs at the same time unless you say on the data source to use a signle threaded operation.
July 9, 2012 at 2:56 am
When you develop a report in BIDS it cache's the data of the initial run.
If you go into the solution folder you will see a number of rdl.cache or cache.rdl...
July 9, 2012 at 2:55 am
http://msdn.microsoft.com/en-us/library/ms186358.aspx
this should help you setup db mail
July 9, 2012 at 2:38 am
Take a look at the accidental DBA e-book (link in my signature below) for the blocking chapter (chapter 6).
July 9, 2012 at 2:35 am
Thats an Execute T-SQL Statement task, you need a Execute SQL task.
July 6, 2012 at 4:19 am
Sorry my bad, there is no parameter mapping option on that task, you will need to use the Execute SQL Task instead.
July 6, 2012 at 4:12 am
Change the select statement to
SELECT ? = MAX(PolicyID) FROM dbo.FactPolicy
Then in the paramter mappings of the task set the mapping to the variable as an output type, that should then...
July 6, 2012 at 4:00 am
Viewing 15 posts - 4,381 through 4,395 (of 6,400 total)