我删除了表中的ColumnA,并希望删除ColumnB。
ALTER TABLE Project.Schema.Table DROP COLUMN ColumnB;
但我有个错误
Column `ColumnA` was recently deleted in the table `Table`. Deleted column name is reserved for up to the time travel duration, use a different column name instead.
为什么我不能删除ColumnB?怎么做?只是重新创造了桌子?
我想要创建一个bash脚本来清除历史,即类似于命令的工作方式。
history -c
所以我从下面的代码开始:-
#!/bin/bash
history #displaying history
history -c #clearing history
他们都不起作用。在一些搜索中,我了解到bash默认禁用非交互式shell中的历史,但我们可以打开它。因此,在编辑之后,我尝试了以下代码:
#!/bin/bash
HISTFILE=~/.bash_history # Or wherever you bash history file lives
set -o history