Viewing 15 posts - 541 through 555 (of 1,497 total)
Just remember that you might not be the only person taking backups.
eg Your systems team might be taking VSS backups which could be differential as well as full.
You...
September 26, 2018 at 9:15 am
Hi Deepak,
Thank you for your timely article.
I have no experience of Azure but we have been asked to look at the possibility of moving some of...
September 20, 2018 at 5:08 am
DECLARE @t decimal(10,2) = 3.25;
SELECT CONVERT(char(8), DATEADD(second, @t%1 * 60, DATEADD(minute, @t, 0)), 114);
August 9, 2018 at 7:16 am
Try specifying the date in ISO format:
AND SLD.docenimerosisdate >='20180202'
July 25, 2018 at 4:45 am
March 19, 2018 at 6:49 am
A few things about the VSS solution are not clear.
It does not look as though it will do a point in time recovery to a Test or Dev DB.
January 29, 2018 at 11:16 am
Please ignore this.
Using the config file here seemed to solve the problem.
https://support.microsoft.com/en-gb/help/3186435/fix-sql-server-2016-database-mail-does-not-work-on-a-computer-that-doe
I am not sure why it worked initially and then failed when the box...
January 15, 2018 at 10:08 am
WHERE orderDateTime
BETWEEN DATEADD(hour, 10, DATEADD(day, DATEDIFF(day, 2, CURRENT_TIMESTAMP), 0))
AND DATEADD(hour, 17, DATEADD(day, DATEDIFF(day, 1, CURRENT_TIMESTAMP), 0))
November 21, 2017 at 9:12 am
The SQL2008 evaluation edition still seems to be available:
https://www.microsoft.com/en-us/download/details.aspx?id=1279
You had better check the licensing implications.
If you do use this, I would be inclined...
October 2, 2017 at 5:31 am
I would be inclined to disable them for at least a month first.
USE YourDB
GO
REVOKE CONNECT FROM "UserToDisable"
GO
June 30, 2017 at 5:45 am
Using Service broker, with triggers, would solve the 'connection tolerant' problem. Service broker will work with SQL Express as long as it is connecting to a non-Express edition:
https://msdn.microsoft.com/en-us/library/ms345154.aspx#sseover_topic10
June 29, 2017 at 8:27 am
You could also look at using triggers with Service Broker.
Again, conflict resolution might take some work to be robust.
June 29, 2017 at 6:06 am
I think the Sync Framework would be the normal way to approach this.
You could look at using a third party data compare tool that can be scripted. It might...
June 29, 2017 at 5:44 am
You should really provide DDL to get a good answer.
1. I strongly suspect your dates are acutally datetimes and a poor effort has been made to do comparisons.
Casting...
June 13, 2017 at 10:31 am
Viewing 15 posts - 541 through 555 (of 1,497 total)