Viewing 15 posts - 871 through 885 (of 13,465 total)
thanks for the code review,m.martinelli! you've pointed out items taht made some vast improvements!
i incorporated all your ideas, but in my own coding style;
i had not tested against the newer...
July 29, 2016 at 8:35 am
Alan.B (7/28/2016)
July 28, 2016 at 8:16 pm
i use a variant of this to find procedures that take longer than 15 seconds, tune them one by one, and then lower my threshold until it's a diminishing return...
July 27, 2016 at 9:59 am
Linqpad[/url] is a good alternative; it supports a object explorer type of panel, and multiple tabs with syntax highlighting like SSMS does.
it's also "portable", meaning you don't have to...
July 25, 2016 at 12:46 pm
thanks for the info guys, i'm diging through the details now.
I've got a solid handle on what i was after now, a fresh set of eyes got me started.
I'll post...
July 25, 2016 at 9:30 am
a feature of almost all email programs is to not show images without extra user interaction, or not show from untrusted sources. check your application, and see if you can...
July 25, 2016 at 4:52 am
Will Stillwell (7/22/2016)
...the email body doesn't get populated AT ALL....
I'm betting you are not handling nulls correctly; you have to isnull every column as you build the string, so that...
July 22, 2016 at 1:04 pm
ahh, so you are using some custom data types you've created, right?
i had assumed the longest string datatype was "uniqueidentifier", and that's where the 16 came from.
good catch, i'll wiggle...
July 20, 2016 at 9:38 am
only a domain account can access server shares, so you'll need to change the service account that SQL is currently running under. NT Service\MSSQLSERVER is not a domain account, so...
July 16, 2016 at 1:28 pm
there's a nice confidence builder to get started:it's testing for basic proficiency with SQL Server.
MTA 98-364 Database Fundamentals is $115, and there is a track on Virtual Academy for...
July 13, 2016 at 10:27 am
I've seen upgraded packages change the delimiter to "_0x0044" or something like that, instead of leaving the original comma;
open the package, and review what the delimiter is in the package...
July 8, 2016 at 12:12 pm
some more information, i see in the system event view errors referring to mount points being invalid: the network admin is not aware of any mount points being used, if...
July 6, 2016 at 6:49 am
here's a coded example.
create table #MyExample(Id int identity(1,1) not null primary key,StartTime datetime, OriginalValue varchar(30) )
INSERT INTO #MyExample(StartTime,OriginalValue)
SELECT '1899-12-30 07:45:00.000','1899-12-30 07:45:00.000'
SELECT DATEADD(minute,240,StartTime) As NewTime FROM #MyExample
UPDATE...
June 30, 2016 at 8:30 am
i get the sense you might be new to both powershell and SMTP;
think it through...you cannot use a feature without using the service behind it, so you must use...
June 29, 2016 at 4:52 am
SMTP is the only way to send mail.
you don't have to use YOUR smtp server, you can send via a gmail account, yahoo, but it is not possible to send...
June 28, 2016 at 2:53 pm
Viewing 15 posts - 871 through 885 (of 13,465 total)