You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I'm not completely familiar with PostgreSQL/SQLite nomenclature (i.e.: btree). I don't have an option to create a Clustered index for the Expired column.... can it be Non-Clustered?
Best I can glean from Microsoft's documentation is that both Clustered and Non-Clustered are considered "b-tree structures".
I've got the columns setup. I used datetimeoffset(7) for Expired, if you think that's cool:
[sid] [varchar](255) NOT NULL,
[sess] [nvarchar](max) NOT NULL,
[expired] [datetimeoffset](7) NOT NULL,
The text was updated successfully, but these errors were encountered:
Hello, I'm not completely familiar with PostgreSQL/SQLite nomenclature (i.e.: btree). I don't have an option to create a Clustered index for the Expired column.... can it be Non-Clustered?
Best I can glean from Microsoft's documentation is that both Clustered and Non-Clustered are considered "b-tree structures".
I've got the columns setup. I used
datetimeoffset(7)
for Expired, if you think that's cool:The text was updated successfully, but these errors were encountered: