Viewing 15 posts - 1,186 through 1,200 (of 13,469 total)
szejiekoh (3/20/2016)
SQLSlammer (3/17/2016)
The answer to the second question is because the sys.databases is marked as a system object meaning it can be called from any database, so no matter which...
March 20, 2016 at 8:52 am
<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...
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...
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...
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,...
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...
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,
...
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...
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.
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...
March 17, 2016 at 7:05 am
Pieter-423357 (3/17/2016)
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...
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...
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...
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...
March 16, 2016 at 12:51 pm
Viewing 15 posts - 1,186 through 1,200 (of 13,469 total)