Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8562209
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T16:40:56+00:00 2026-06-11T16:40:56+00:00

I am creating a database for an auction in which I have a table

  • 0

I am creating a database for an auction in which I have a table that stores the entries of Items that are put up for auction.

create table items(
item_ID number(5) PRIMARY KEY,
SDate DATE NOT NULL,
EDate DATE NOT NULL, //end date for auction
minBid number(5,2) NOT NULL,
bidInc number(2,2) NOT NULL,
title varchar2(20) NOT NULL,
descr varchar2(255),
currentBid number(5,2)
)

Now after the end date has passed I want the database to automatically delete that entry from the table.
How do I do it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T16:40:57+00:00Added an answer on June 11, 2026 at 4:40 pm

    Well, you could write a job in the Database what will delete rows older than X time, but since you tagged this as C# I’m guessing you want it done in your auction application.

    In that case, you could create a Timer that will run a DELETE FROM items WHERE EDate > XXX query every time it runs.

    EDIT: In that case, you can define a Stored Procedure that will delete old rows, and then you’ll need to schedule it with a DBMS_JOB. I don’t have an Oracle DB at hand to test this, but you could try running this:

    Create a stored procedure:

    create or replace procedure delete_old_auctions
    as
    begin
        delete from items where edate < sysdate
    end;
    

    Then you need to create a job that will execute this stored procedure every X time.

    dbms_job.submit(
        what=>'your_db.delete_old_auctions',
        next_date=>sysdate+1/24,    -- start next hour
        interval=>'sysdate+1/24');  -- Run every hour
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm creating a database table and I don't have a logical primary key assigned
I am creating a database that will help keep track of which employees have
I am creating a database table with the following sql: CREATE TABLE `cs3_ds1` (
I have a list of constant values which are stored in a database table.
Basically put, I have an action that saves a form to a database, then
I am creating database at runtime and I want to create the tables in
I am creating a database in SQL Server 2005 and cannot remember the CREATE
I'm creating some kind of auction application, and I have to decide what is
I'm creating a basic database application in WPF, and I have started using the
I have an ASP.NET MVC 2 application in which I am creating a custom

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.