Viewing 15 posts - 1,066 through 1,080 (of 3,738 total)
Simon D Richards (3/13/2013)
March 13, 2013 at 9:25 am
AS400 DB2. I have an AS400 login so that is not the issue.
March 13, 2013 at 6:29 am
SQLRNNR (3/12/2013)
Try changing the sql agent service account using configuration manager. Even just reset it back to the same service account currently in place.
I tried that a few times...
March 12, 2013 at 5:10 pm
No File System Operations.
It pulls Data from Oracle and loads into into aSQL Server Staging area.
It is not just one package but all ETL packages that I have tested.
March 12, 2013 at 5:01 pm
If you want to identify the SPID on the remote Server you need to connect to the Remote Server.
I often use sp_who3 and sp_WhoIsActive. They will only show active...
March 12, 2013 at 4:56 pm
March 12, 2013 at 4:52 pm
It is stored in MSDB, thanks.
I will open a new thread.
March 12, 2013 at 4:45 pm
I get this error when I attempt to run the Package using the Domain Account, SQLServerAgent.
Message
Executed as user: MyDomain\SQLServerAgent. Microsoft (R) SQL Server Execute Package Utility Version 10.50.2500.0 for 64-bit...
March 12, 2013 at 2:31 pm
Thanks.
The folder was hidden granted permissions and I still get the error.
March 12, 2013 at 2:29 pm
ESAT ERKEC (11/19/2012)
You can give persmion temp folder SQLServerSqlAgentUser$InstanceName
I can't find this folder.
What is the entore path?
Thanks!
March 12, 2013 at 12:28 pm
I have the following code:
SELECT DISTINCT j.name as job_name, run_duration,
msdb.dbo.agent_datetime(run_date, run_time) AS [run_datetime],
DATEADD(second,DATEDIFF(second,0,msdb.dbo.agent_datetime(19000101, run_duration)),msdb.dbo.agent_datetime(run_date, run_time)) AS [run_endtime]
,SUBSTRING(run_duration, 1, 2) + ':' + SUBSTRING(run_duration, 3, 2) + ':' +
...
March 11, 2013 at 9:24 am
SQLRNNR (3/11/2013)
Jeff Moden (3/11/2013)
David Burrows (3/11/2013)
SELECT DISTINCT j.name as job_name,
msdb.dbo.agent_datetime(run_date, run_time) AS [run_datetime],
DATEADD(second,DATEDIFF(second,0,msdb.dbo.agent_datetime(19000101, run_duration)),msdb.dbo.agent_datetime(run_date, run_time)) AS [run_endtime]
FROM msdb..sysjobhistory h
INNER JOIN msdb..sysjobs j ON h.job_id = j.job_id
WHERE j.name NOT LIKE...
March 11, 2013 at 9:00 am
Lynn Pettis (3/10/2013)
March 10, 2013 at 2:26 pm
Aspet Golestanian Namagerdi (3/4/2013)
In sysmail_unsentitems,In includes all the test emails I have tried
In sysmail_event_log does not show that DatabaseMail process has been started to...
March 5, 2013 at 9:27 am
Viewing 15 posts - 1,066 through 1,080 (of 3,738 total)