Viewing 15 posts - 61 through 75 (of 233 total)
Don't really understand what is your objective but may be you are looking for
select *
from msdb..sysmail_allitems
May 22, 2013 at 7:11 am
run
select * from msdb..sysjobactivity
check for next_scheduled_run_date.
You have to reschedule the job if the next_scheduled_run_date is off.
May 21, 2013 at 1:40 pm
Then use-
Convert(char(10),getdate(), 120) -- for date
Convert(char(8),getdate(),114)-- For time
Replace getdate(), with our column name.
May 20, 2013 at 3:28 pm
Not sure about the question.But if it is datetime column, you can use
Covert(char(19),date, 120)
May 20, 2013 at 3:16 pm
Do the agent which is configured to run snapshot agent have access (read/write permission)to snapshot folder?
May 20, 2013 at 8:46 am
If you are only worried about generating snapshot, which will affect both B & C, Use Server A as Publisher for both, and instead of initializing from snapshot, choose initialize...
May 20, 2013 at 8:14 am
Please check the below link..
http://stackoverflow.com/questions/2330439/access-is-denied-when-attaching-a-database
May 20, 2013 at 8:06 am
If this is scalar valued function, you have to give Grant Execute Permission on the function.
On TVF you have to give Grant Select.
May 18, 2013 at 9:13 am
In the Transitional Replication Schema Changes are propagated when Distribution agent runs.
You do not have to drop subscription.
Read through this.
http://msdn.microsoft.com/en-us/library/ms151870(v=sql.90).aspx
May 17, 2013 at 8:44 am
You can ignore this error. This is not related to you job not running.
Can you try one thing drop and re-create your job and see if it starts running...
May 17, 2013 at 8:32 am
Index rebuild itself update stats so, you do not have to update stats after index rebuild.
here is one script from web. But if you google it you will find...
May 17, 2013 at 8:21 am
SQL Server Agent--> Error Logs.
May 17, 2013 at 8:13 am
What error you are getting?
Also even using DB_Owner role is not security best practice. I would suggest using db_datareader & db_datawriter
role. But if you post the error message that...
May 17, 2013 at 8:09 am
Viewing 15 posts - 61 through 75 (of 233 total)