Viewing 15 posts - 766 through 780 (of 13,445 total)
so I'm assuming you want a soft fix to the issue, where you are detecting and maybe truncating in the trigger to make it no more than 200 characters, even...
December 5, 2016 at 5:56 am
nal4236 (12/3/2016)
December 3, 2016 at 8:48 am
does that trigger actually work for a non-sysadmin?
looks like you are just logging offenders, and not denying their connection.
any login would need insert permissions on insert master.dbo.CheckLogins , is that...
December 2, 2016 at 1:50 pm
put your code in a try catch, and explicitly bubble up any errors that might occur;
you'll get a better error description than you are currently receiving:
public void Main()
{
[highlight="#ffff11"]try
...
December 2, 2016 at 1:13 pm
Appending strings together to make a filename is tricky; if you are not careful/consistent with ending slashes, you'll get invalid paths.
i would suggest using Path.combine to handle that issue...
December 2, 2016 at 9:43 am
If a Procedure calls another procedure INSIDE it's code, any #temp tables are available to it that exist in the procedure;
if the procedures are called consecutively, then the temp...
December 2, 2016 at 8:48 am
a quick google shows me enterprise licenses for SQL2016 are $7,128 per core, so MSRP would be select 7128.00 * 16 = $114,048.00
At the PASS conference Glenn Berry noted...
December 1, 2016 at 2:47 pm
it's a combination of being on the same subnet, and that sql instances that have the SQL browser service running.
the ODBC drivers poll the network for advertised services.
you can...
December 1, 2016 at 1:36 pm
you can download it from the catalog:
start a new project File>>New>>Project
make sure you choose Templates>>Business Intelligence>>Integration Services>> Integration Services Import Project Wizard.
there you can choose the server,a dn then the...
November 30, 2016 at 2:12 pm
typically something like this is due to an automated process, combined with not a lot of available disk space.
the dmv's will not be any help, as they are really run...
November 30, 2016 at 11:34 am
i'd say look at the SQL server error log first. see exactly what time, and what errors occurred. the error might point to something obvious.
compare that to your job schedules;...
November 30, 2016 at 10:29 am
great job on providing the set up!
i'm a little unclear on what the rule is for the gracemarks, though;
if they have a Practical_mark > 30, they get get a 70...
November 29, 2016 at 6:49 am
darn i missed this one.
day late, dollar short.
November 29, 2016 at 6:15 am
duplicate post.
no need to cross post to multiple forums it fractures the answers you get and makes posters duplicate others work.
the "Recent Posts" link shows us everything.
continue the thread here:
http://www.sqlservercentral.com/Forums/Topic1838607-360-1.aspx...
November 29, 2016 at 6:13 am
A Calendar Table is really handy for this.
As an Inline calculation
the way i would tackle it is with DateMath, and a case statement that checks for Saturday or Sunday
here i...
November 29, 2016 at 5:38 am
Viewing 15 posts - 766 through 780 (of 13,445 total)