Viewing 15 posts - 331 through 345 (of 1,409 total)
exec msdb.dbo.sp_start_job @job_name = 'enter you jobname here'
You can enter this code as the last step of the first job. Change the text string to the name of the second...
September 29, 2014 at 6:46 am
jacksonandrew321 (9/29/2014)
Gazareth (9/29/2014)
Can you provide the full error message, and the configuration values you've set in Database Mail (excluding any sensitive data of course)?Thanks
Account name- jacksonandrew
Outgoing SMTP
Email- jacksonandrew321@gmail.com
Reply-email- jacksonandrew321@gmail.com
Server name-...
September 29, 2014 at 6:13 am
I can understand restarting the SQL Agent could be offered as a workaround, but it's not solving the root cause.
Can you check if the LOG-file is locked by anything. Can...
September 29, 2014 at 6:05 am
Did you look at this article Setup SQL Server Database Mail to use a Gmail[/url]? You need to double check on the provider (i.e. GMAIL) to see if they changed...
September 29, 2014 at 5:54 am
This script will generate the CREATE LOGIN commands. These commands can be copied to the target server. The SID and passwords remain the same.
select
sp.name, *
, sp.type_desc
, 'CREATE LOGIN [' +...
September 29, 2014 at 5:48 am
Staggerlee (9/29/2014)
...We are finding a lot of the boxes are failing on the Agent Error Log, ....
Sorry, without you telling us the error message and other related information, there's little...
September 29, 2014 at 4:21 am
If you are not able to restore within the requested time frame (due to size and/or performance) you need to look at other options. Take a look at Logshipping, Mirroring,...
September 29, 2014 at 1:53 am
This is a forum for SQL server. Many queries for SQL are not compatible with MS Access. You will have better and more accurate respons if you post your question...
September 25, 2014 at 7:21 am
GilaMonster (9/25/2014)
HanShi (9/25/2014)
September 25, 2014 at 5:05 am
Read up about FULL and LOG backup Back Up and Restore of SQL Server Databases. Like Gail mentioned a FULL backup doesn't clear anything in the LOG files.
With a FULL...
September 25, 2014 at 3:57 am
this sounds like you want to UNPIVOT the table and change rows into columns.
September 25, 2014 at 3:44 am
with a UPDATE statement you can only update one single table at the time. You could filter the rows from that table using multiple tables with a JOIN statement in...
September 25, 2014 at 3:39 am
Can you post the code that is being executed and that is generating this error?
It looks like you execute an action with multiple steps. Somewhere inbetween the connection is lost...
September 25, 2014 at 3:22 am
double post
pleasy reply only to post http://www.sqlservercentral.com/Forums/Topic1619567-364-1.aspx
September 25, 2014 at 3:18 am
Did you execute all steps to enable and setup FULL TEXT on the database/table?
September 24, 2014 at 6:58 am
Viewing 15 posts - 331 through 345 (of 1,409 total)