sql-graph Questions

1

Solved

I am researching about graph databases. I stumbled into SQL Server 2017 and learned that they added the option to use a graph database. But I have some uncertainties about the performance. I watche...

2

Imagine a social network app. Users follow other users and users take photos. Photos have tags of other users. I'm trying to get an effective Cosmos db implementation of a graph for that app. I pr...

2

Assume I'm working with the graph database from this sample (SQL Server 2017): https://learn.microsoft.com/en-us/sql/relational-databases/graphs/sql-graph-sample I have the following SQL query: ...

1

question: I have the following (directed) graph: And this table: CREATE TABLE [dbo].[T_Hops]( [UID] [uniqueidentifier] NULL, [From] [nvarchar](1000) NULL, [To] [nvarchar](1000) NULL, [Dista...
Cosgrove asked 18/8, 2011 at 10:21

3

Solved

I've got a SQL server table in which each row represents an edge in a graph network. The FromNodeID and ToNodeID are foreign keys to a node table, and the schema is something like this: CREATE TAB...
Persia asked 26/1, 2011 at 21:0
1

© 2022 - 2025 — McMap. All rights reserved.