Viewing 15 posts - 16 through 30 (of 31 total)
Sushant:
Do you have the backup files of before last night? Please compare if there is big different size with last night that the job failed.
You got email because there are...
August 27, 2010 at 10:07 am
Sushant:
which step is for your output of the script? You mentioned there are two steps in your job. There should be two outputs.
August 27, 2010 at 9:51 am
Please run:
SELECT j.name, s.step_id, s.step_name, on_success_action, on_success_action, on_fail_action, on_fail_step_id
FROM msdb.dbo.sysjobsteps s INNER JOIN dbo.sysjobs j ON s.job_id = j.job_id
WHERE j.name ='YourJobName'
on_success_action
tinyint
Action to be performed when a step is...
August 27, 2010 at 8:28 am
Please run:
select j.name, h.step_id, h.step_name,h.run_status, run_date,run_time,message
from msdb.dbo.sysjobhistory h INNER JOIN msdb.dbo.sysjobs j ON h.job_id = j.job_id
WHERE j.name ='YourJobName'
run_status:
0 = Failed
1 = Succeeded
2 = Retry
3 = Canceled
August 27, 2010 at 7:48 am
David:
Thanks
SERVERPROPERTY('ComputerNamePhysicalNetBIOS') offers local node physical name. I am looking for other node names.
ZYT
August 19, 2010 at 7:32 am
David:
Thanks.
Is there any t-SQL script that can work from Query Analyzer?
ZYT
August 19, 2010 at 7:21 am
magasvs:
Here is the log file. Thanks a lot.
<Header>
<Product>Microsoft SQL Server Reporting Services Version 9.00.4035.00</Product>
<Locale>en-US</Locale>
<TimeZone>Eastern Daylight Time</TimeZone>
<Path>C:\Program Files\Microsoft SQL Server\MSSQL.2\Reporting Services\LogFiles\ReportServerService__main_08_04_2010_11_58_21.log</Path>
<SystemName>NSK1501851908B</SystemName>
...
August 10, 2010 at 6:45 am
magasvs:
Thanks a lot.
Following your direction, it doesn't work.
ZYT
August 9, 2010 at 8:59 am
Steve:
Thanks
Initialization is greyed out in Reporting Services Configuration.
ZYT
August 6, 2010 at 12:15 pm
Sorry to think about SQL Server 2000, Yes, SP3 of SQL Server 2005. Any advice please?
May 20, 2010 at 6:24 pm
Hope this can work:
SELECT name |
FROM msdb.dbo.sysjobs A, msdb.dbo.sysjobservers B |
WHERE A.job_id = B.job_id AND B.last_run_outcome =... |
July 12, 2007 at 6:00 am
EM - Database - Properties - General - Owner
May 3, 2007 at 5:45 am
Map network address as a local hard drive, and give new file name string.
October 27, 2006 at 8:01 am
Map data source as a local hard drive. Change Data Source to be the new one.
October 26, 2006 at 7:53 am
You can create two temperal tabels, #Column and #Table, that have same column as sp_columns and sp_tables return. Then,
INSERT #Column EXEC sp_column
INSERT #Table EXEC sp_tables
Other databases call two tables and get...
June 2, 2005 at 5:07 am
Viewing 15 posts - 16 through 30 (of 31 total)