account transaction procedure in database? [closed] - sql

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
i am creating db design for supermarket so now i need to normalize account transaction in customer and dealer .
I like to know about the transaction procedure in super market or Departmental stores for My database design.
If anyone know about whats the link between customer and dealer in a supermarket.
Let me know.
Thanks in advance...

I am not sure about your question. But I think this is what you need to read.
http://www.versant.com/products/fast-objects
Just learn some basic stuff. This may be helpful

Related

only one record sql [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
When I have for example only one record for administrators (only one administrator) with id and password, is it necessary to create a table administrator or not? Why?
There's nothing inherently wrong with a one record table. It's a function of your design. For example, an administrator is not a type of user so you wouldn't stick an administrator in the user's table. But that's a design decision.

How to use openLdap? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm sorry, but I'm not sure if this is the right place to ask. But is there anyone out there that can teach me a step by step guide on how to use OpenLdap? There isn't any GUI and I'm unfamiliar with it. I'm trying to create a user in there.
Thanks in advance. :)
Use an LDAP browser. There are many free ones available, e.g. Userbooster Light, JXplorer, ...

Determining average from database using VB6 [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I’m trying to work out an average grade from a database file using the ‘Do Loop’ method; I’m completely clueless how to even start it. Does anyone have any tips or is able to help me?
Regards, Jack.
Rather than looping in vb, calculate the average in SQL.
E.g.,
select StudentID, avg(Grade) as AverageGrade
from StudentGrade
group by StudentID

What is User define function and how to execute that? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
What is user define function in sql server 2005.How Can I see them from design point of view.
I wanted to create and execute the function.Can anybody explain me.I have not done it before.
User-Defined Functions from MSDN Books Online

Anyone know a SQL schema (scripts or something) for a forum's Start up? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
We are searching for a while now on google to find out some good SQL scripts to
create a "forum". Does anyone know some great start up kit (Image, scripts, schema view) from what I could start? We want something with the most functionalities as possible (such as number of views, ranking, etc).
Check the existing forum projects like phpbb.