Viewing 15 posts - 46 through 60 (of 116 total)
The Network Team is still thinking that Automatic Windows Update was accidentally enabled on this server. Jeff, are you saying that even if that was the case, only the OS...
November 23, 2016 at 8:43 am
Oh, ok. So maybe not a Windows update. Hmmm...
November 22, 2016 at 2:21 pm
Windows 2012R2.
Our latest suspicion is that someone inadvertently turned on Windows Update on the server. I'll let you know what we find out.
--=Chuck
November 22, 2016 at 2:05 pm
I looked up Backup Encryption, and apparently in SQL Server 2014 it's available for the Standard Edition.
--=cf
November 21, 2016 at 2:21 pm
We're actually discussing this right now at our organization, so this seems like a perfect time to ask for some advice 🙂
While our backups are currently placed in a location...
November 21, 2016 at 10:56 am
That's right on the mark. Thanks a million.
--=Chuck
October 31, 2016 at 2:40 pm
It's a server that's been connecting to it's database via a SQL Server account, until this morning when it started also trying to use this AD machine account. The admin...
September 13, 2016 at 2:05 pm
In this case the login is failing, because it's a new attempt to login with an account that was never setup in the SQL Server environment. Or maybe I'm reading...
September 13, 2016 at 10:54 am
This would have been helpful to know for a preliminary data load we were doing the other day. We simply wanted a quick load of 250,000+ records to see what...
August 23, 2016 at 9:40 am
I tried sending emails in blocks of n emails with m seconds between, and I thought I had it with 30 emails sent with a 60-second wait. But that only...
August 5, 2016 at 11:04 am
Each email is customized for the recipient, so they have to go out separately.
I'll try sending in blocks with a delay. SQL Server seems to be processing the first...
August 1, 2016 at 10:19 am
Even if it's not indexed, with a CASE statement, you're still asking SQL Server to convert every DATE value to a VARCHAR before it can compare it to your string...
July 18, 2016 at 1:50 pm
Maybe this would be better, in the case of DATETIME2, one of the more experienced SQL Server developers could let us know:
WHERE OrderDT > DATEFROMPARTS(2014, 01, 01) and
...
July 18, 2016 at 1:44 pm
I don't think either would be a better performer. The better performer would be
SELECT CASE YEAR(OrderDT)
WHEN 2014 THEN 'Year 1'
WHEN 2013 THEN 'Year 2'
WHEN 2012 THEN 'Year 3'
ELSE 'Year 4...
July 18, 2016 at 1:38 pm
I would say that it had no real-world application, mostly since it prevents you from using any indexing on the OrderDt field. I guess if you were dead-set on using...
July 18, 2016 at 1:10 pm
Viewing 15 posts - 46 through 60 (of 116 total)