Sign Up |  Live StatsLive Stats    Articles 35,345| Comments 159,791| Members 17,820, Newest waheguruhelpme| Online 200
Home Contact
 (Forgotten?): 
    Sikhism

   
                                                                     Your Banner Here!    

get most recent inserted record

Our Donation Goal : Why Donate? : Donate Today! : Donate Anonymously (ਗੁਪਤ) : Our Family of Supporters
Goal this month: 400 USD, Received: 35 USD (9%)
Please Donate...
Related Topics...
Thread Thread Starter Forum Replies Last Post
Rapes (per capita) (most recent) by country kds1980 General Discussion 8 09-Jan-2011 08:04 AM
Sikhs Must Learn from Recent Violence Aman Singh Sikh Sikhi Sikhism 1 26-Apr-2010 22:52 PM
Picture won't stay inserted Robert Information Technology 2 28-Jul-2006 08:11 AM
have data access page open with new record or blank record. drose2112 Information Technology 1 29-Oct-2005 12:35 PM


Tags
most, recent, inserted, record
Reply Post New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!
  #1 (permalink)  
Old 01-Nov-2005, 13:40 PM
Steve's Avatar Steve
Guest
 
Posts: n/a
   
   
get most recent inserted record

  Donate Today!   Email to Friend  Tell a Friend   Show Printable Version  Print   Contact sikhphilosophy.net Administraion for any Suggestions, Ideas, Feedback.  Feedback  

Register to Remove Advertisements
I am trying to get the ID of a newly inserted record. After initial insert,
the rows can have the same values(Except the PK) so I can't be assured that
I'm getting the most recent record, in fact 100% I'm not.

Is there a way that I can SELECT a single record from a table and only
return the row that has the highest value for a given column?
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/information-technology/6314-get-most-recent-inserted-record.html
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6314

Thanks for any help,
Steve



*








 
Do share your immediate thoughts or reactions on this issue? We value your views! Login Now! or Sign Up Today! to share your views with us.. Gurfateh!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 01-Nov-2005, 13:40 PM
Van T. Dinh's Avatar Van T. Dinh
Guest
 
Posts: n/a
   
   
Re: get most recent inserted record

Do you insert Record by code or through the Form process?

Explain the process you use to insert Record and post code if appropriate.

--
HTH
Van T. Dinh
MVP (Access)



"Steve" wrote in message
news:OIZ4BJn3FHA.696@TK2MSFTNGP09.phx.gbl...
>I am trying to get the ID of a newly inserted record. After initial
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6314
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6314
>insert,
> the rows can have the same values(Except the PK) so I can't be assured
> that
> I'm getting the most recent record, in fact 100% I'm not.
>
> Is there a way that I can SELECT a single record from a table and only
> return the row that has the highest value for a given column?
>
> Thanks for any help,
> Steve
>
>



Reply With Quote
  #3 (permalink)  
Old 01-Nov-2005, 13:40 PM
KARL DEWEY's Avatar KARL DEWEY
Guest
 
Posts: n/a
   
   
RE: get most recent inserted record

You need to add a DateTime field to your table with a default =Now() so the
when the record is created it will have the date and time.

"Steve" wrote:

> I am trying to get the ID of a newly inserted record. After initial insert,
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6314
> the rows can have the same values(Except the PK) so I can't be assured that
> I'm getting the most recent record, in fact 100% I'm not.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6314
>
> Is there a way that I can SELECT a single record from a table and only
> return the row that has the highest value for a given column?
>
> Thanks for any help,
> Steve
>
>
>

Reply With Quote
  #4 (permalink)  
Old 02-Nov-2005, 11:47 AM
bruce@aristotle.net's Avatar bruce@aristotle.net
Guest
 
Posts: n/a
   
   
Re: get most recent inserted record


Steve wrote:
> I am trying to get the ID of a newly inserted record. After initial insert,
> the rows can have the same values(Except the PK) so I can't be assured that
> I'm getting the most recent record, in fact 100% I'm not.
>
> Is there a way that I can SELECT a single record from a table and only
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6314
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6314
> return the row that has the highest value for a given column?


Yes...e.g. if your table is named MyTable and the 'given column' is
MyID use:

SELECT MyTable.*
FROM MyTable INNER JOIN (SELECT Max(MyTable.MyID) AS MaxOfMyID
FROM MyTable)
AS MaxMyTable ON MyTable.MyID = MaxOrders.MaxOfMyID;

HTH,
Bruce

Reply With Quote
  #5 (permalink)  
Old 02-Nov-2005, 11:47 AM
bruce@aristotle.net's Avatar bruce@aristotle.net
Guest
 
Posts: n/a
   
   
Re: get most recent inserted record

Well, perhaps I spoke too soon...this answers your question but the
answer to your question may not solve your initial problem, i.e., 'how
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6314
do I get the ID of a newly inserted record'. If this is a database to
which you have exclusive access and each successive PK is larger than
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6314
the previous one this SQL will return the last inserted record. If you
are in a multi-user situation it may well return the last inserted
record, but this record may be a record that someone else inserted, not
_your_ last inserted record. If you are trying to retrieve the ID of
the last record that you inserted you will need to insert the record
using VBA with an ADO or DAO recordset in order to accurately retrieve
that ID.

Bruce

Reply With Quote
  #6 (permalink)  
Old 02-Nov-2005, 11:47 AM
Ron Hinds's Avatar Ron Hinds
Guest
 
Posts: n/a
   
   
Re: get most recent inserted record

"Steve" wrote in message
news:OIZ4BJn3FHA.696@TK2MSFTNGP09.phx.gbl...
> I am trying to get the ID of a newly inserted record. After initial

insert,
> the rows can have the same values(Except the PK) so I can't be assured

Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6314
that
> I'm getting the most recent record, in fact 100% I'm not.
>
> Is there a way that I can SELECT a single record from a table and only
> return the row that has the highest value for a given column?
>
> Thanks for any help,
> Steve


Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6314
SELECT TOP 1 Field1_Name[, Field2_Name, Fieldx_Name...] FROM Table_Name
ORDER BY PK_Field_Name DESC



Reply With Quote
  #7 (permalink)  
Old 03-Nov-2005, 11:35 AM
Steve's Avatar Steve
Guest
 
Posts: n/a
   
   
Re: get most recent inserted record

  Donate Today!  
Thanks guys!
Bruce, I am the sole user at this time. In the event that we add more
users, I will move the app over to SqlServer and asp.net as the users will
be out in the field.

Thanks for your answers, everything is up and running now


"Steve" wrote in message
news:OIZ4BJn3FHA.696@TK2MSFTNGP09.phx.gbl...
> I am trying to get the ID of a newly inserted record. After initial

insert,
> the rows can have the same values(Except the PK) so I can't be assured

that
> I'm getting the most recent record, in fact 100% I'm not.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6314
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6314
>
> Is there a way that I can SELECT a single record from a table and only
> return the row that has the highest value for a given column?
>
> Thanks for any help,
> Steve
>
>



Reply With Quote
   Click Here to Donate Now!

Support Us!
Become a Promoter!
Gurfateh ji, you can become a SPN Promoter by Donating as little as $10 each month. With limited resources & high operational costs, your donations make it possible for us to deliver a quality website and spread the teachings of the Sri Guru Granth Sahib Ji, to serve & uplift humanity. Every contribution counts. Donate Generously. Gurfateh!
ReplyPost New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!

Bookmarks


(View-All Members who have read this thread : 0
There are no names to display.

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Tools Search
Search:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On

» Gurbani Jukebox
Listen to Gurbani while surfing SPN!
» Active Discussions
sikhism need urgent advice.......
Today 10:03 AM
7 Replies, 87 Views
sikhism Who is "Mohan"?
Today 08:46 AM
22 Replies, 348 Views
sikhism How important is Matha...
Today 08:12 AM
59 Replies, 1,041 Views
sikhism ਨਾਮਾ
Today 06:37 AM
2 Replies, 53 Views
sikhism Sikh Diamonds Video...
Today 04:23 AM
6 Replies, 120 Views
sikhism Are Creator and Creation...
Today 01:30 AM
44 Replies, 2,837 Views
sikhism Herman Hesse,...
Today 00:54 AM
13 Replies, 230 Views
sikhism On a Scale of Most...
Yesterday 21:42 PM
30 Replies, 1,277 Views
sikhism I became victim by...
Yesterday 19:50 PM
0 Replies, 46 Views
sikhism Sikh Books downloads
Yesterday 15:39 PM
2 Replies, 66 Views
sikhism Salok Sheikh Farid ji...
Yesterday 09:35 AM
0 Replies, 47 Views
sikhism In Punjab, three farmers...
Yesterday 05:36 AM
0 Replies, 49 Views
sikhism Supernatural Sikhs, what...
Yesterday 03:45 AM
19 Replies, 416 Views
sikhism Sukhmani Sahib Astpadi...
26-May-2012 22:57 PM
0 Replies, 51 Views
Do You Think You Are...
26-May-2012 09:59 AM
94 Replies, 8,258 Views
» Books You Should Read...
Powered by vBadvanced CMPS v3.2.2

All times are GMT +6.5. The time now is 10:21 AM.
Powered by vBulletin® Version 3.8.6
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.5.2 Copyright © 2004-12, All Rights Reserved. Sikh Philosophy Network


Page generated in 0.34866 seconds with 30 queries