Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
inbs
Aged Yak Warrior
860 Posts |
Posted - 2012-08-14 : 04:00:50
|
hihow can i transfer metadata of olap to sql table?thanks |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2012-08-14 : 14:49:53
|
what do you mean by olap? do you mean relational olap db or multidimensional cube?------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/ |
|
|
inbs
Aged Yak Warrior
860 Posts |
Posted - 2012-08-14 : 14:53:20
|
i mean,i have simple query in DMVSELECT [CATALOG_NAME] AS [DATABASE],CUBE_CAPTION AS [CUBE/PERSPECTIVE],BASE_CUBE_NAMEFROM $system.MDSchema_CubesWHERE CUBE_SOURCE=1i want to put the result in relational sql table |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2012-08-14 : 14:57:03
|
use either ofinsert...select or select...into table.... syntaxesdepending on whether table is alreadypresent or not------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/ |
|
|
inbs
Aged Yak Warrior
860 Posts |
Posted - 2012-08-15 : 02:57:21
|
do i need link server to sql table?how is query of olap run on sql session? |
|
|
|
|
|