Search Results

1
vote

Ant is not able to delete some files on windows

You don't say if your build is run as the currently logged on user. If not, the fact that explorer.exe or other process has the directory shown can cause it to be locked as well. But deleting it in …
5
votes

Is there an easy way to clone the structure of a table in Oracle?

CREATE TABLE tablename AS SELECT * FROM orginaltable WHERE 1=2; Edit: The WHERE clause prohibits any rows from qualifying. …