Viewing 15 posts - 1,171 through 1,185 (of 1,360 total)
These are temporal tables? When you look at the table name in SSMS it says "TableName (System-Versioned)"?
December 12, 2019 at 9:08 pm
Is id the primary key of jobs?
Is siteid the primary key of SiteAddresses?
To get the columns from both tables onto a single row you could use CROSS JOIN. It works...
December 12, 2019 at 3:27 pm
It's possible to pass a user defined table type to a stored procedure as a readonly parameter. This code defines a table type called test_type1. The procedure dbo.test_proc1 declares a...
December 12, 2019 at 1:02 pm
The entire plural column is 'no' including temporal tables. If tables are collections of rows then they should be plural, no? If the table name is 'orders' then one row...
December 10, 2019 at 7:29 pm
They have to want to help for the encouragement to work. Not sure how to get someone who really doesn't want to contribute to do so.
Just...
December 9, 2019 at 3:13 pm
They have to want to help for the encouragement to work. Not sure how to get someone who really doesn't want to contribute to do so.
Just a few...
December 9, 2019 at 1:58 pm
An alternative to nested sets is nested json arrays. Here it is using Jeff's (small) Employee table (renamed to dbo.Test_Employee)
drop table if exists dbo.Test_Employee;
go
CREATE TABLE dbo.Test_Employee
...
December 8, 2019 at 5:12 pm
To see if DesNorton's solution worked (it does) and to see if the interval could be created in Sql 2012 I tried with this sql although I don't have any...
December 6, 2019 at 10:33 pm
By the way, I did have a script published here on SSC that includes an example of nested json arrays. Please see:
December 4, 2019 at 9:48 pm
Json_value() is used to access a single value of up to nvarchar(4000). Openjson() is used to access arrays and can be nvarchar(max). In the example json (with array []'s added)...
December 4, 2019 at 9:04 pm
What you posted is not valid json. The elements of SecondaryData should be in array brackets.
{
"odata.id": "0001",
"MediaId": "0001",
"SecondaryData": [
...
December 4, 2019 at 7:04 pm
Yes there are / will be additional tables where locations and other things will be stored and yes Primary Keys will be introduced as well.
We have literally no choice...
December 4, 2019 at 4:09 pm
This should come with a warning though. If there are repeated 'docdata' dates within a partitioning window, then this code will not produce correct results. If it's possible to implement...
December 4, 2019 at 2:43 pm
Viewing 15 posts - 1,171 through 1,185 (of 1,360 total)