Clustering

Technical Article

RE: Code Client Forms in the Database

  • Reply

 Look into the way the Switchboard works.  This is a built-in item in Access.  As it is it has an 8 item limit but once you understand how it works it wouldn't be too hard to program a similar form with many more possible items. PcDave -xXx- 

You rated this post out of 5. Change rating

2004-03-28

Technical Article

RE: A design question

  • Reply

I would create a view if the number of AttributeId was 16 or less in total. But, from you post I would guess higher. If the total number of AttributeId per product (ProductId, AttributeId pairs) is small enough 16 or less I might still try a view, but not sure how to code it. See […]

2004-03-19

Technical Article

RE: probably a n00bie sort question

  • Reply

One way would be if object_id('test_q') is not null drop table test_q go create table test_q( m char(3), b int, l int ) insert into test_q (m,b,l) values('10',10,1) insert into test_q (m,b,l) values('10',10,2) insert into test_q (m,b,l) values('10A',10,2) insert into test_q (m,b,l) values('10',10,3) select * from test_q order by m desc,b,l m b l ---- […]

You rated this post out of 5. Change rating

2004-02-27

Technical Article

RE: Database Implementation Question

  • Reply

Access superior in some way to anything! Really?  I didn't even know that Access had anything that could be called security.Unless that password stuff is being referred to as security.  I've occasionally been asked what can be done with access databases that were password protected and someone forgot the password.  It usually takes about 1 […]

You rated this post out of 5. Change rating

2004-02-12

Technical Article

RE: Stored procedures with .mdb type app

  • Reply

Thought others might benefit from Mary Chipman's comments (from newsgroup):An mdb is a better choice since you also have the flexibility of storing static data locally in Jet tables, allowing you to decrease round trips across the network to fetch data that rarely changes. You can't update the results of a pass-through query, and that […]

2004-02-04

1 reads

Technical Article

RE: Calculate Last and First Day of the Month

  • Reply

Ain't date handling marvellous?  All sorts of ways of "skinning the cat".  My approach to getting the first day of the month and first of the next is as follows ... (I always use alpha for the month ... saves confusion).declare @today datetime select @today=getdate()select  '01 '+substring(convert(char(11),@today,106),4,11),   '01 '+substring(convert(char(11),dateadd(month,1,@today),106),4,11)01 Feb 2004 01 Mar 2004

You rated this post out of 5. Change rating

2004-02-02

Blogs

Small Data SF 2024

By

I can’t remember how I heard about Small Data SF 2024, but it caught...

A New Word: Moledro

By

moledro – n. a feeling of resonant connection with an author or artist you’ll...

Snowflake + Azure blob

By

Let’s go back to data platforms today and I want to talk about a...

Read the latest Blogs

Forums

7 sept, scheduled book

By philip.scott

Comments posted to this topic are about the item 7 sept, scheduled book

7 sept, schedlued article

By philip.scott

Comments posted to this topic are about the item 7 sept, schedlued article

6 sept, published book

By philip.scott

Comments posted to this topic are about the item 6 sept, published book

Visit the forum

Question of the Day

Azure Data Lake Storage Gen 2

Azure Data Lake Storage Gen 2 is built on ...?

See possible answers