32f26272ae
Five tools under one repo, all docs organized per DOCS-GUIDE.md: - aalogcli: .NET 4.8 / x86 CliFx CLI for reading System Platform binary logs (*.aaLGX) for LLM debugging, built on aaOpenSource/aaLog. Commands: last, tail, range, unread, fields. Stable JSON envelope under --llm-json. Build template under lib/build/ for rebuilding aaLogReader.dll. - aot: ArchestrA Object Toolkit 2014 v4.0 reference material. Dev guide (Markdown converted from CHM), API reference for the ArchestrA.Toolkit namespace, and the Monitor / Watchdog VS sample solutions. - graccesscli: .NET 4.8 / x86 CliFx CLI that automates Galaxy configuration via the ArchestrA GRAccess COM interop. Includes session daemon, IPC protocol, and llm-json envelope contract. - grdb: SQL/DDL exploration of the Galaxy Repository database. DDL captures, reusable queries, hierarchy / contained-name <-> tag-name translation notes. - histdb: LLM-oriented reference for AVEVA Historian retrieval. INSQL linked-server, extension tables, every wwXxx time-domain extension, every retrieval mode, alarm/event SQL recipes, REST API. Distilled from the 243-page Historian Retrieval Guide. Root contains: - CLAUDE.md: thin index pointing into each tool's README. - DOCS-GUIDE.md: doctrine for organizing docs for LLM consumption. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
36 lines
1.6 KiB
Transact-SQL
36 lines
1.6 KiB
Transact-SQL
-- Table: gobject
|
|
CREATE TABLE [gobject] (
|
|
[gobject_id] int NOT NULL,
|
|
[template_definition_id] int NOT NULL,
|
|
[derived_from_gobject_id] int NOT NULL DEFAULT ((0)),
|
|
[contained_by_gobject_id] int NOT NULL DEFAULT ((0)),
|
|
[area_gobject_id] int NOT NULL DEFAULT ((0)),
|
|
[hosted_by_gobject_id] int NOT NULL DEFAULT ((0)),
|
|
[checked_out_by_user_guid] uniqueidentifier NULL,
|
|
[default_symbol_gobject_id] int NOT NULL DEFAULT ((0)),
|
|
[default_display_gobject_id] int NOT NULL DEFAULT ((0)),
|
|
[checked_in_package_id] int NOT NULL DEFAULT ((0)),
|
|
[checked_out_package_id] int NOT NULL DEFAULT ((0)),
|
|
[deployed_package_id] int NOT NULL DEFAULT ((0)),
|
|
[last_deployed_package_id] int NOT NULL DEFAULT ((0)),
|
|
[tag_name] nvarchar(329) NOT NULL,
|
|
[contained_name] nvarchar(32) NOT NULL DEFAULT (''),
|
|
[identity_guid] uniqueidentifier NOT NULL DEFAULT (newid()),
|
|
[configuration_guid] uniqueidentifier NOT NULL,
|
|
[configuration_version] int NOT NULL,
|
|
[deployed_version] int NOT NULL DEFAULT ((0)),
|
|
[is_template] bit NOT NULL DEFAULT ((0)),
|
|
[is_hidden] bit NOT NULL DEFAULT ((0)),
|
|
[software_upgrade_needed] bit NOT NULL DEFAULT ((0)),
|
|
[hosting_tree_level] smallint NOT NULL DEFAULT ((0)),
|
|
[hierarchical_name] nvarchar(329) NOT NULL DEFAULT (''),
|
|
[namespace_id] smallint NOT NULL DEFAULT ((1)),
|
|
[deployment_pending_status] bit NOT NULL DEFAULT ((0)),
|
|
CONSTRAINT [PK_gobject] PRIMARY KEY ([gobject_id], [namespace_id], [template_definition_id])
|
|
);
|
|
GO
|
|
|
|
ALTER TABLE [gobject] ADD FOREIGN KEY ([template_definition_id]) REFERENCES [template_definition] ([template_definition_id]);
|
|
GO
|
|
|