Viewing 8 posts - 16 through 23 (of 23 total)
Jeffery, thanks for the reply and check on my logic.
Through some iterations I lost track and conflated NOT NULL and DEFAULT value that was in the original iteration.
The...
January 3, 2019 at 6:35 am
This is actually looking like some type of AOG issue at least loosely.
Others working on this issue have found that by removing the AOG the queries work fine. Recreate...
August 9, 2018 at 11:40 am
A few quick questions to consider:
April 26, 2017 at 10:09 am
Are you connecting the computer 1 instance? Or are you attempting to use the same .mdf file as on multiple instances (2, 3, 4, and 5)?
Each SQL Server instance...
March 10, 2017 at 8:31 am
What user mode is the database in?SELECT d.name
, d.user_access_desc
FROM sys.databases AS d
;
March 10, 2017 at 8:23 am
As Luis pointed out, you'll want to fully qualify the column names. Essentially, the [date] column is used by more than one table and SQL Server does not know...
March 3, 2017 at 1:20 pm
When doing bulk load with a lot of data, i.e. data warehouse, it can be turned off to improve performance.
Couple of write ups on the topic:
http://www.sqlservercentral.com/blogs/waterox-sql/2014/10/17/untrusted-foreign-keys/
March 3, 2017 at 11:23 am
Your comment about 24x values, are you looking for 24 hours? It appears that you are selecting 48 hours of data.
Either update the @enddate or remove the DATEADD() if...
March 2, 2017 at 3:18 pm
Viewing 8 posts - 16 through 23 (of 23 total)