0
votes
2answers
72 views
How can I make my batch script for deletion of old files work?
Inside a folder (say c:\test) I want to delete the oldest file if the number of files are over 21.
This is what I came up with, issue is that it one time deletes the oldest file, …
1
vote
3answers
225 views
SQL: Complex Deletion help
I basically created some tables to play around with: I have Two main tables, and a Many-Many join table. Here is the DDL: (I am using HSQLDB)
CREATE TABLE PERSON
(
PERSON_I …
2
votes
5answers
189 views
Re-using soft deleted records
If I have a table structure that is:
code+description+isdeleted
where code is the primary key.
The user creates a record, then later on deletes it. Because I am using soft dele …
