當我試圖從火鳥不同的所有者變更表,我得到這個錯誤: unsuccessful metadata update
MODIFY RDB$RELATION_FIELDS failed
no permission for control access to TABLE TAGS
我已經授予的權限給該用戶,還引用特權,但我仍然收到這個錯誤。 有誰知道如何解決這個問題? 我用火鳥1.5 感謝
我想存儲不同的版本不同的文本和其他數據表。對於文字,我的表是這樣的: id BigSerial, PRIMARY KEY
version Integer
text Text
origin BigInt
現在我想要存儲不同版本的文本此表是這樣的: 1,0,"My Text, first Version",null
2,1,"My Text, second Version",1
3,0,
是否有可能做到這一點在一個單一的查詢:爲限制 CREATE TABLE foo(bar INTEGER);
COMMENT ON foo IS 'my foo table';
COMMENT ON bar IS 'my bar column of the foo table';
喜歡的東西: CREATE TABLE foo
(bar INTEGER COMMENT IS
有些人喜歡用簡單的文本方式描述他們的數據庫結構,而不是使用CREATE TABLE語句。有幾個例子: Foreign key as Primary key Multiple Primary Keys as single foreign key How can I set up a database schema where there are two concurrent many-many re