解决删除记录,愿君中奖100分(100分)

  • 主题发起人 主题发起人 武松
  • 开始时间 开始时间

武松

Unregistered / Unconfirmed
GUEST, unregistred user!
当用Tdataset 时,发现它只能进行逻辑删除,而不能进行物理删除,即当用了delete命令后,数据库的大小并不会减小。
 
如果是dbf,就要 dbiPackTable

另外如果是其他数据库一般也不缩小,为了性能,它的空间还留着再写入的时候用这些空间
 
如果是Paradox or dBASE使用下法物理删除。如是Access就没办法了。如果是
Oracle这样的大型数据库,要用特殊的语句释放空间。

//Delphi中的BDE的帮助中的示例
procedure PackTable(Table: TTable);
var
Props: CURProps;
hDb: hDBIDb;
TableDesc: CRTblDesc;
begin
// Make sure the table is open exclusively so we can get the db handle...
if not Table.Active then
raise EDatabaseError.Create('Table must be opened to pack');
if not Table.Exclusive then

raise EDatabaseError.Create('Table must be opened exclusively to pack');

// Get the table properties to determine table type...
Check(DbiGetCursorProps(Table.Handle, Props));

// If the table is a Paradox table, you must call DbiDoRestructure...
if Props.szTableType = szPARADOX then begin
// Blank out the structure...
FillChar(TableDesc, sizeof(TableDesc), 0);
// Get the database handle from the table's cursor handle...

Check(DbiGetObjFromObj(hDBIObj(Table.Handle), objDATABASE, hDBIObj(hDb)));
// Put the table name in the table descriptor...
StrPCopy(TableDesc.szTblName, Table.TableName);
// Put the table type in the table descriptor...
StrPCopy(TableDesc.szTblType, Props.szTableType);
// Set the Pack option in the table descriptor to TRUE...
TableDesc.bPack := True;
// Close the table so the restructure can complete...
Table.Close;
// Call DbiDoRestructure...

Check(DbiDoRestructure(hDb, 1, @TableDesc,
nil, nil, nil, False));
end
else
// If the table is a dBASE table, simply call DbiPackTable...
if (Props.szTableType = szDBASE) then
Check(DbiPackTable(Table.DBHandle, Table.Handle, nil, szDBASE, True))
else
// Pack only works on PAradox or dBASE; nothing else...
raise EDatabaseError.Create('Table must be either of Paradox or dBASE ' +

'type to pack');

Table.Open;

end;

 
只有Paradox or dBASE这种文件型数据库才有逻辑删除和物理删除的区别.
Access,SQL等数据库删除数据,数据库大小不一定变小.这些数据库另外有整理数据库
的命令,一般有数据库管理员负责,客户端不用管.
 
呵呵,现在我放心了起码这不是我们管的范围
 
我还从没拿过 专家分,不过感谢 以前大家的帮助,
今天看到这个问题, 我还能说上两句, 希望对你有所帮助:
以SQL SERVER 为例: 建立库时库文件大小就缺省是1M , 每次库文件放满了数据后,
允许文件自动增长以容纳新的数据, 它可以 每次增加固定大小 比如2M,或以一定比例增长 如10%,
这样在一定范围内 增加或删除记录 库文件的大小是 不会变化的。
 
hehe
你删除了就行了。
其他是数据库的事了。
 
Access也可以,先repair后compact即可。
access 2000不用。
 
要将cachedupdate设为true,另外要注意是否返回的是只读集,而非活动集,我遇到这种情况解决的方法是更改相关空件的属性,观察是否为活动集
 
CachedUpdate=False才能立即删除
空间回收有一条SQL语句,好象叫Truncate l什么的,(没带书,不记得了》
 
如果CachedUpdate=False可以立即删除。。。。。
如果CachedUpdate=True;要加上一句:
applyupdates() or applyupdate(-1);
记不太清楚了,查查就行。。。。
以前我也碰到过这个问题,就是用这个方法解决的。。。
 
to pie:
想看得专家分秘籍么?找俺吧。
 
唉,怎么老虎把武松给吃了呢?
 
接受答案了.
 
后退
顶部