Click here to Skip to main content
15,885,757 members
Home / Discussions / Database
   

Database

 
GeneralRe: Data Isolation and Transaction Isolation Pin
devvvy1-Sep-05 22:21
devvvy1-Sep-05 22:21 
GeneralRe: Data Isolation and Transaction Isolation Pin
airbus3802-Sep-05 0:42
airbus3802-Sep-05 0:42 
General"Data Isolation" Vs "Locking" Pin
devvvy3-Sep-05 21:33
devvvy3-Sep-05 21:33 
QuestionHOW I KNOW WHAT TABLES ARE IN A DATA BASE IN CSHARP Pin
alonso2k811-Sep-05 10:40
alonso2k811-Sep-05 10:40 
AnswerRe: HOW I KNOW WHAT TABLES ARE IN A DATA BASE IN CSHARP Pin
Michael P Butler1-Sep-05 11:21
Michael P Butler1-Sep-05 11:21 
AnswerRe: HOW I KNOW WHAT TABLES ARE IN A DATA BASE IN CSHARP Pin
Duncan Edwards Jones1-Sep-05 12:10
professionalDuncan Edwards Jones1-Sep-05 12:10 
AnswerRe: HOW I KNOW WHAT TABLES ARE IN A DATA BASE IN CSHARP Pin
Christian Graus1-Sep-05 15:30
protectorChristian Graus1-Sep-05 15:30 
AnswerRe: HOW I KNOW WHAT TABLES ARE IN A DATA BASE IN CSHARP Pin
miah alom2-Sep-05 4:59
miah alom2-Sep-05 4:59 
What is the database that you are using.
Assuming its SQL Server

To get an *approximate* count for all tables, you can use the following:

SELECT
[TableName] = so.name,
[RowCount] = MAX(si.rows)
FROM
sysobjects so,
sysindexes si
WHERE
so.xtype = 'U'
AND
si.id = OBJECT_ID(so.name)
GROUP BY
so.name
ORDER BY
2 DESC

GeneralRe: HOW I KNOW WHAT TABLES ARE IN A DATA BASE IN CSHARP Pin
miah alom2-Sep-05 5:23
miah alom2-Sep-05 5:23 
Questiongroup by and concat dependent rows Pin
HELP_ME!!1-Sep-05 2:22
sussHELP_ME!!1-Sep-05 2:22 
AnswerRe: group by and concat dependent rows Pin
airbus3801-Sep-05 3:03
airbus3801-Sep-05 3:03 
QuestionMDF files Pin
cberam1-Sep-05 1:23
cberam1-Sep-05 1:23 
AnswerRe: MDF files Pin
airbus3801-Sep-05 2:20
airbus3801-Sep-05 2:20 
Questiontriggers? Pin
Soviet31-Aug-05 23:35
Soviet31-Aug-05 23:35 
AnswerRe: triggers? Pin
Anonymous1-Sep-05 11:23
Anonymous1-Sep-05 11:23 
AnswerRe: triggers? Pin
jonathan151-Sep-05 22:54
jonathan151-Sep-05 22:54 
QuestionReg: MSOLAP (need to load custom data) Pin
kuldeepjangir31-Aug-05 18:47
kuldeepjangir31-Aug-05 18:47 
QuestionIs there example for Oracle connection? Pin
rushing31-Aug-05 17:47
rushing31-Aug-05 17:47 
AnswerRe: Is there example for Oracle connection? Pin
Tigerkatze14-Sep-05 1:47
Tigerkatze14-Sep-05 1:47 
QuestionImport data from Access into SQL Server 2005 Express Pin
AesopTurtle31-Aug-05 16:22
AesopTurtle31-Aug-05 16:22 
QuestionOODBMS Pin
airbus38031-Aug-05 12:01
airbus38031-Aug-05 12:01 
Questionplease Pin
alonso2k8131-Aug-05 9:30
alonso2k8131-Aug-05 9:30 
AnswerRe: please Pin
airbus38031-Aug-05 10:36
airbus38031-Aug-05 10:36 
AnswerRe: please Pin
Mohamad Al Husseiny31-Aug-05 11:29
Mohamad Al Husseiny31-Aug-05 11:29 
Questioni ned help soon please Pin
alonso2k8131-Aug-05 9:28
alonso2k8131-Aug-05 9:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.