Вниз
Скачать: CL | DM;

View vs Table   Найти похожие ветки 

 
xxxx   (2004-01-30 16:25) [0]

Здраствуйте!
как програмным путем (при помощи запроса) различить
v


 
ZrenBy ©   (2004-01-30 16:28) [1]


select
table_type
from
information_schema.tables
where
table_name="MyName"


 
xxxx   (2004-01-30 17:24) [2]

use master - дает список баз
БД1, БД2, БД3 и т.д.

1) далее пишем
use БД1

2) получаем список tables
ADOConnect


 
ZrenBy ©   (2004-01-30 17:50) [3]


use pubs
--Список таблиц в БД pubs
select name from sysobjects where xtype="U"
--или
select table_name from information_schema.tables where table_type="base table"

--Список вьюх в БД pubs
select name from sysobjects where xtype="V"
--или
select table_name from information_schema.tables where table_type="view"

--Список SP в БД pubs
select name from sysobjects where xtype="P"
--или
select specific_name from information_schema.routines

--Список полей в таблице authors
select
column_name,
data_type,
character_maximum_length
from
information_schema.columns
where
table_name = "authors"


 
xxxx   (2004-01-31 10:39) [4]

OGROMNOYE SPASIBO!!!!!!!!!!!



Страницы: 1 вся ветка

Скачать: CL | DM;



Память: 0.45 MB
Время: 0.017 c
1-79813
siriusP
2004-02-10 19:22
2004.02.25
Как вставить в ImageList прозрачную картинку?


14-80204
Hkr
2004-01-29 10:48
2004.02.25
Автозагрузка


7-80315
Denius
2003-12-04 19:37
2004.02.25
Определение температуры процессора? Кто-нибудь кто-нибудь знает?


1-79923
Budy
2004-02-07 10:34
2004.02.25
Добавление ярлыков


1-79796
Vlad
2004-02-11 11:42
2004.02.25
Как получить String имея указатель и длину ?




   Наверх