Viewing 15 posts - 1,156 through 1,170 (of 13,445 total)
open the dropdown so it shows all your history of connections.mouse hover over an item so it is highlighted, but DO NOT mouseclick/SELECT it.
while the dropdown is still open, and...
March 21, 2016 at 9:42 am
I've also got some CLR's that i deploy to 2008R2 or 2012/2014 .
like you, i've got multiple codebases, for R2,2012 or 2014.
for the 2012/2014 stuff, I've also not been able...
March 21, 2016 at 9:32 am
mw112009 (3/21/2016)
LowellPlease see attached
when the script prompted you for the instance name, you did not type "MSSQLSERVER"
it defaults to SQLExpress if you don't type anything.
you don't have an extra isntance...
March 21, 2016 at 8:41 am
mw112009 (3/21/2016)
Good Answer, Can you help me check whether I have SQL Server installed or not ?Where do I start this ?Suggestions Please
because you got "login failed" you definitely have...
March 21, 2016 at 7:29 am
I would redesign this slightly, but a few things that jumps out at me are:
your query is hitting a view, which i try to avoid when possible. i prefer to...
March 21, 2016 at 7:21 am
All sys objects are either views, or procs or functions. The views are based on the uneditable resource database.
It is not possible to create your own obects in the sys...
March 20, 2016 at 11:12 am
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
Viewing 15 posts - 1,156 through 1,170 (of 13,445 total)