Viewing 15 posts - 856 through 870 (of 13,445 total)
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
scrubbing data is really nothing more than an update statement, but you have to come up with a pattern for your updates.
in my case, I've got a suite of tables...
June 28, 2016 at 2:40 pm
preview mode creates a cache file, and does not always call the server to get the data; if you look, you should see a rdl.data file, i believe.
delete that file,...
June 28, 2016 at 2:09 pm
i looked at sp_applock, and it would not give you any granularity at the object level.
I'm not sure if the OP is just second guessing SQL locking, and is...
June 28, 2016 at 12:31 pm
I believe that only Standard and Enterprise have paths for in-place upgrades;
all other versions, like express, require an uninstall and re-install, i think.
so you'll want to either do a side-by-side...
June 27, 2016 at 11:25 am
answering my own question, by converting ms_ticks to seconds, i think i see what i was after:
--ServerRestartTimeServiceRestartTimeServiceUpTimeInDays
2015-08-22 21:46:51.9802016-03-29 08:34:07.89087
-- select
DATEADD(second, -1 * ( ms_ticks / 1000),getdate()) as ServerRestartTime,
...
June 24, 2016 at 12:59 pm
Viewing 15 posts - 856 through 870 (of 13,445 total)