Click here to Skip to main content
15,914,322 members
Home / Discussions / Database
   

Database

 
GeneralRe: Database design question Pin
Eric Dahlvang14-Jun-06 6:16
Eric Dahlvang14-Jun-06 6:16 
GeneralRe: Database design question Pin
ToddHileHoffer14-Jun-06 7:44
ToddHileHoffer14-Jun-06 7:44 
Questionwhere to store big data? Pin
Yelow14-Jun-06 1:58
Yelow14-Jun-06 1:58 
AnswerRe: where to store big data? Pin
albCode14-Jun-06 2:06
albCode14-Jun-06 2:06 
GeneralRe: where to store big data? Pin
Yelow14-Jun-06 2:53
Yelow14-Jun-06 2:53 
GeneralRe: where to store big data? Pin
jonathan1514-Jun-06 4:43
jonathan1514-Jun-06 4:43 
GeneralRe: where to store big data? Pin
r.stropek15-Jun-06 0:32
r.stropek15-Jun-06 0:32 
QuestionFull Text Search(Sql Server 2005) Pin
fetras14-Jun-06 0:54
fetras14-Jun-06 0:54 
QuestionHow trace that where the connection is open Pin
hi_arv13-Jun-06 20:52
hi_arv13-Jun-06 20:52 
QuestionGetting data from a grid to a dataset to save [modified] Pin
IMC200613-Jun-06 15:39
IMC200613-Jun-06 15:39 
AnswerRe: Getting data from a grid to a dataset to save Pin
Colin Angus Mackay13-Jun-06 20:20
Colin Angus Mackay13-Jun-06 20:20 
GeneralRe: Getting data from a grid to a dataset to save Pin
IMC200614-Jun-06 7:32
IMC200614-Jun-06 7:32 
Questiondeploy database on multiple computers Pin
schilled13-Jun-06 4:08
schilled13-Jun-06 4:08 
QuestionSQLServer problem! Pin
andrei_dalcu13-Jun-06 0:27
andrei_dalcu13-Jun-06 0:27 
AnswerRe: SQLServer problem! Pin
Jim Conigliaro13-Jun-06 1:46
Jim Conigliaro13-Jun-06 1:46 
GeneralRe: SQLServer problem! Pin
andrei_dalcu13-Jun-06 1:48
andrei_dalcu13-Jun-06 1:48 
GeneralRe: SQLServer problem! Pin
Jim Conigliaro13-Jun-06 3:37
Jim Conigliaro13-Jun-06 3:37 
Questionsqlserver prob Pin
vivek-g12-Jun-06 21:07
vivek-g12-Jun-06 21:07 
AnswerRe: sqlserver prob Pin
Colin Angus Mackay12-Jun-06 23:38
Colin Angus Mackay12-Jun-06 23:38 
Question50 Tables(Urgent) Pin
kirthikirthi12-Jun-06 20:04
kirthikirthi12-Jun-06 20:04 
AnswerRe: 50 Tables(Urgent) Pin
Michael P Butler12-Jun-06 21:06
Michael P Butler12-Jun-06 21:06 
AnswerRe: 50 Tables(Urgent) Pin
r.stropek12-Jun-06 21:21
r.stropek12-Jun-06 21:21 
Hi!

You can generate the query you need using the following SQL-Statement:
select 'select [name], [year], [date] from '+table_schema+'.'
       +table_name+' union all '
       from INFORMATION_SCHEMA.TABLES

Execute this statement with result type = text, copy the result to a new query windoe and delete the last "union all". It will give you a union all of all your tables -> your 50 tables combined into one.

Hope this helps.

Regards,
Rainer


Rainer Stropek
Visit my blog at http://www.cubido.at/rainers
GeneralRe: 50 Tables(Urgent) Pin
kirthikirthi12-Jun-06 22:07
kirthikirthi12-Jun-06 22:07 
GeneralRe: 50 Tables(Urgent) Pin
r.stropek12-Jun-06 22:25
r.stropek12-Jun-06 22:25 
GeneralRe: 50 Tables(Urgent) Pin
Mahesh Sapre14-Jun-06 1:43
Mahesh Sapre14-Jun-06 1:43 

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.