Easily find this page again using the shortlink: https://bct.azrcrv.co.uk/2000000107
Table Type: System
Table Name: Isolated Storage
Database Table Name: Isolated Storage
Due to how Dynamics BC tables and columns are named, square brackets need to be wrapped around the table name and column names. Below are example queries showing how Isolated Storage can be queried.
Show/hide an example select of all columns
SELECT
*
FROM
[Isolated Storage]
Show/hide an example select of all columns by name
SELECT
[App Id]
,[Scope]
,[Company Name]
,[User Id]
,[Key]
,[Value]
,[Encryption Status]
,[Target Value Type]
,[$systemId]
,[$systemCreatedAt]
,[$systemCreatedBy]
,[$systemModifiedAt]
,[$systemModifiedBy]
FROM
[Isolated Storage]
Show/hide an example select of all columns including those from all joined tables
SELECT
*
FROM
[Isolated Storage] AS [Isolated Storage]
LEFT JOIN
[Company] AS [Company]
ON
[Isolated Storage].[Company Name] = [Company].[Name]
LEFT JOIN
[User] AS [User]
ON
[Isolated Storage].[SystemCreatedBy] = [User].[User Security ID]
LEFT JOIN
[User] AS [User]
ON
[Isolated Storage].[SystemModifiedBy] = [User].[User Security ID]
Show/hide columns in Isolated Storage table
Field No. | Field Name | Field Caption | Class | Type | Length | SQL Column Name | SQL DataType |
---|---|---|---|---|---|---|---|
1 | App Id | App Id | Normal | GUID | 16 | App Id | uniqueidentifier |
2 | Scope | Scope | Normal | Option | 4 | Scope | int |
Available options are:
| |||||||
3 | Company Name | Company Name | Normal | Text | 30 | Company Name | nvarchar(60) |
Key to join to the Company table.Show/hide example querySELECT [Isolated Storage].[Company Name] ,[Company].[Name] FROM [Isolated Storage] AS [Isolated Storage] LEFT JOIN [Company] AS [Company] ON [Isolated Storage].[Company Name] = [Company].[Name] | |||||||
4 | User Id | User Id | Normal | GUID | 16 | User Id | uniqueidentifier |
5 | Key | Key | Normal | Text | 200 | Key | nvarchar(400) |
6 | Value | Value | Normal | BLOB | 8 | Value | image |
7 | Encryption Status | Encryption Status | Normal | Option | 4 | Encryption Status | int |
Available options are:
| |||||||
8 | Target Value Type | Target Value Type | Normal | Option | 4 | Target Value Type | int |
Available options are:
| |||||||
2000000000 | $systemId | System ID | Normal | GUID | 16 | $systemId | uniqueidentifier |
2000000001 | SystemCreatedAt | Created At | Normal | DateTime | 8 | $systemCreatedAt | datetime |
2000000002 | SystemCreatedBy | Created By | Normal | GUID | 16 | $systemCreatedBy | uniqueidentifier |
Key to join to the User table.Show/hide example querySELECT [Isolated Storage].[$systemCreatedBy] ,[User].[User Security ID] FROM [Isolated Storage] AS [Isolated Storage] LEFT JOIN [User] AS [User] ON [Isolated Storage].[$systemCreatedBy] = [User].[User Security ID] | |||||||
2000000003 | SystemModifiedAt | Modified At | Normal | DateTime | 8 | $systemModifiedAt | datetime |
2000000004 | SystemModifiedBy | Modified By | Normal | GUID | 16 | $systemModifiedBy | uniqueidentifier |