Viewing 15 posts - 1,186 through 1,200 (of 13,460 total)
<SMTPServer>192.168.0.8</SMTPServer> is incorrect. YOUR local machine is not the SMTP server, you are not running an SMTP service.
you want smtp.googlemail.com in that value, which is the address for gmail.
setting up...
Lowell
March 19, 2016 at 6:23 am
your job is probably running under the context of a specific user (operator) in SQL Agent.
If you edit the job step calling the package, what is the name of the...
Lowell
March 18, 2016 at 1:33 pm
you can infer the last accessed time of every database since the server was last rebooted base din the index stats; if you've got something regularly rebooting your server, you'll...
Lowell
March 18, 2016 at 9:17 am
if you connect locally via a Dedicated Admin Connection, you will be able to see the unencrypted definitions. you might have to enable the DAC just to conenct that way,...
Lowell
March 18, 2016 at 7:03 am
i think there is a server wide trigger that is sending an email if a database is created....and the end user creating the database does not have access to the...
Lowell
March 17, 2016 at 1:37 pm
SET @QRY = requires passing a single column value or string value to the variable.
SELECT @DaTE = MAX(CreatedDate) is a decent example
your query says SET = (SELECT PL.Permit_number,
...
Lowell
March 17, 2016 at 12:51 pm
i think your issue is you are storing integer representations of dates; not sure if you have control, but i would change the datatypes to be [date] or [datetime] data...
Lowell
March 17, 2016 at 12:10 pm
yes you can; google for "powershell extract SSRS"
or just "extract SSRS" and you'll find quite a few solutions that query the ReportServer database and extract all the objects out.
Lowell
March 17, 2016 at 9:58 am
q1) I would say the reason is atomicity of the data plus permissions, and yes, portability. the permissions related to the database are contained in the database itself.
backups and...
Lowell
March 17, 2016 at 7:05 am
Pieter-423357 (3/17/2016)
Lowell
March 17, 2016 at 6:53 am
I've seem this before;
What I've seen is that while 99% of the calls to the [production] database are perfectly normal, sometimes the database context gets lost, and the the default...
Lowell
March 17, 2016 at 5:45 am
i'd like to see the actual query and an execution plan;
you might have a non-Sargable query, functions in the Where clause, a catch all query containing a lot of OR...
Lowell
March 16, 2016 at 1:54 pm
typically, you grant on a per-table or per-procedure basis when you want to restrict access to SOME of the tables.
what happens if new tables are added, or a table/proc is...
Lowell
March 16, 2016 at 1:08 pm
exporting to csv is no problem, even if there is 2.5 million rows.
opening it IN EXCEL is an issue, since it will not support that many rows.
open it in...
Lowell
March 16, 2016 at 12:51 pm
monitoring is a big subject, and enterprise level monitoring certainly depends on your budget;
i think a lot of typical apps out there gun for $1K per monitored server, with discounts...
Lowell
March 16, 2016 at 12:06 pm
Viewing 15 posts - 1,186 through 1,200 (of 13,460 total)