Home All Groups Group Topic Archive Search About

How to look for values in a table



Author
10 Dec 2008 3:07 PM
stacko111
Hi - pretty basic question but I want to look up for a certain value in a
table.

I have the need to modify the data in a table from time to time, the table
is very large and doesn't seem to be in any specific order. Currently I have
to find the right row by sight.

Is there a way I can do a search for a value.

I don't want to do this via query as you can't edit the data from that, I
know I could write an update query to do this but if possible I just want to
locate the value and amend it - much easier and quicker.

Any help? Thanks

Author
11 Dec 2008 10:04 AM
Ekrem_Önsoy
You should develop your own customized application for this purpose. It
would be very easy to do that using Visual Studio.

--
Ekrem Önsoy




Show quoteHide quote
"stacko111" <stacko***@discussions.microsoft.com> wrote in message
news:E95B5922-2CD9-4548-84C4-63A8B25CD9FE@microsoft.com...
> Hi - pretty basic question but I want to look up for a certain value in a
> table.
>
> I have the need to modify the data in a table from time to time, the table
> is very large and doesn't seem to be in any specific order. Currently I
> have
> to find the right row by sight.
>
> Is there a way I can do a search for a value.
>
> I don't want to do this via query as you can't edit the data from that, I
> know I could write an update query to do this but if possible I just want
> to
> locate the value and amend it - much easier and quicker.
>
> Any help? Thanks
Are all your drivers up to date? click for free checkup

Author
12 Dec 2008 4:42 PM
stacko111
Hmm yes - easy for someone with the knowledge to do so, unfortunately I
don't. Was just wondering if there was an easy way to find a value in a table
like how you can do in Access and Excel.

Show quoteHide quote
"Ekrem Önsoy" wrote:

> You should develop your own customized application for this purpose. It
> would be very easy to do that using Visual Studio.
>
> --
> Ekrem Önsoy
>
>
>
>
> "stacko111" <stacko***@discussions.microsoft.com> wrote in message
> news:E95B5922-2CD9-4548-84C4-63A8B25CD9FE@microsoft.com...
> > Hi - pretty basic question but I want to look up for a certain value in a
> > table.
> >
> > I have the need to modify the data in a table from time to time, the table
> > is very large and doesn't seem to be in any specific order. Currently I
> > have
> > to find the right row by sight.
> >
> > Is there a way I can do a search for a value.
> >
> > I don't want to do this via query as you can't edit the data from that, I
> > know I could write an update query to do this but if possible I just want
> > to
> > locate the value and amend it - much easier and quicker.
> >
> > Any help? Thanks
>
Author
14 Dec 2008 3:50 PM
Ekrem_Önsoy
Well, there's no an interface like Access' s in SQL Server. I know you said
that you do not want to bother yourself with T-SQL, but you may want to
write a Stored Procedure for once and search the value using this view and
another SP to amend data.

Also, I remember that there is a way called Pass-Through to link tables from
Access to SQL Server and I just have googled about it now and I found this
link: http://www.mssqltips.com/tip.asp?tip=1482  This feature may work for
ya?

--
Ekrem Önsoy



Show quoteHide quote
"stacko111" <stacko***@discussions.microsoft.com> wrote in message
news:D7C56B07-85BF-4AD7-8023-9B252C9C2136@microsoft.com...
> Hmm yes - easy for someone with the knowledge to do so, unfortunately I
> don't. Was just wondering if there was an easy way to find a value in a
> table
> like how you can do in Access and Excel.
>
> "Ekrem Önsoy" wrote:
>
>> You should develop your own customized application for this purpose. It
>> would be very easy to do that using Visual Studio.
>>
>> --
>> Ekrem Önsoy
>>
>>
>>
>>
>> "stacko111" <stacko***@discussions.microsoft.com> wrote in message
>> news:E95B5922-2CD9-4548-84C4-63A8B25CD9FE@microsoft.com...
>> > Hi - pretty basic question but I want to look up for a certain value in
>> > a
>> > table.
>> >
>> > I have the need to modify the data in a table from time to time, the
>> > table
>> > is very large and doesn't seem to be in any specific order. Currently I
>> > have
>> > to find the right row by sight.
>> >
>> > Is there a way I can do a search for a value.
>> >
>> > I don't want to do this via query as you can't edit the data from that,
>> > I
>> > know I could write an update query to do this but if possible I just
>> > want
>> > to
>> > locate the value and amend it - much easier and quicker.
>> >
>> > Any help? Thanks
>>
Author
15 Dec 2008 2:11 PM
Ekrem_Önsoy
I performed a test about linking a table from SQL Server to Access.

You did not mention what version of Access you use, however I performed the
test using 2007 and I remember I did this before with 2003 version too.

(2007) Simply, you need to go to External Data (from the ribbon menu
interface) and click "More" from Import. Then create an ODBC Database
connection by choosing "Link to the data source by creating a linked table."
option. Create a DSN to connect to your SQL Server Instance and choose the
appropriate database name as the default database while creating the DSN.

Then create a Form according to your needs from Access for this updatable
table. So, changes you perform from this Access application will be applied
to the table in your SQL Server database.

--
Ekrem Önsoy



Show quoteHide quote
"stacko111" <stacko***@discussions.microsoft.com> wrote in message
news:D7C56B07-85BF-4AD7-8023-9B252C9C2136@microsoft.com...
> Hmm yes - easy for someone with the knowledge to do so, unfortunately I
> don't. Was just wondering if there was an easy way to find a value in a
> table
> like how you can do in Access and Excel.
>
> "Ekrem Önsoy" wrote:
>
>> You should develop your own customized application for this purpose. It
>> would be very easy to do that using Visual Studio.
>>
>> --
>> Ekrem Önsoy
>>
>>
>>
>>
>> "stacko111" <stacko***@discussions.microsoft.com> wrote in message
>> news:E95B5922-2CD9-4548-84C4-63A8B25CD9FE@microsoft.com...
>> > Hi - pretty basic question but I want to look up for a certain value in
>> > a
>> > table.
>> >
>> > I have the need to modify the data in a table from time to time, the
>> > table
>> > is very large and doesn't seem to be in any specific order. Currently I
>> > have
>> > to find the right row by sight.
>> >
>> > Is there a way I can do a search for a value.
>> >
>> > I don't want to do this via query as you can't edit the data from that,
>> > I
>> > know I could write an update query to do this but if possible I just
>> > want
>> > to
>> > locate the value and amend it - much easier and quicker.
>> >
>> > Any help? Thanks
>>

Bookmark and Share