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 8602741
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T02:09:30+00:00 2026-06-12T02:09:30+00:00

I have a database with a table in which I store several values along

  • 0

I have a database with a table in which I store several values along with the zone to which it belongs, the date it is from, and the hour it is from. The table will get updated periodically, from a source that may contain both new and old data I already have, new data will be inserted, old data I already stored will be updated, since it may have changed from the time it was created and I need the newest possible.

I have no problem checking wether the zone and the hour already exists:

sql.CommandText = "select 'Y' from dual where exists (select * from mytable where hour= "+hour+" and zone='" + zone+ "')"

But If add the date to the equation it fails when it calls the ExecuteScalar method:

sql.CommandText = "select 'Y' from dual where exists (select * from mytable where hour = " + hour + " and zone = '" + zone+ "' and date_field = '" + datevalue + "')"

I have tried other methods before but none seemed to work, like doing a Select Count(*) and executing the reader or doing a merge sentence.

Any help is appreciated. I’m working on VB, .NET framework 3.5, and Oracle 10g.

  • 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-12T02:09:32+00:00Added an answer on June 12, 2026 at 2:09 am

    The comparison must look like this in oracle:

    ... AND date_field = TO_DATE('27-09-2012', 'DD-MM-YYYY')
    

    Try this, if you want to keep the string version, but using a prametrized query as Magnus has shown, circumvents the date representation problem:

    sql.CommandText = String.Format(@"SELECT 'Y' FROM dual WHERE EXISTS
        (SELECT * FROM mytable
         WHERE hour = {0} AND zone = {1} AND
               date_field = TO_DATE('{2:dd-MM-yyyy}','DD-MM-YYYY'))",
        hour, zone, datevalue);
    

    Note: datevalue is assumed to be a DateTime.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have table which contains double values stored in mysql database ...I need to
i have a large mysql database table in which one column contains values ranging
I have a database table A which stores records, A has a primary key
I have one database table which contains 8 columns. One of the columns is
I have a database table which link locations together; a location can be in
I have a database table which is full-text indexed and i use the CONTAINS-function
In an application we are developing, I have access to a database table which
I have a database table named 'student' in which there is one column named
We have a Oracle 9i database and OrderDetails table which has a column to
So I have a mySQL database with a 'users' table which includes a username,

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.