Viewing 8 posts - 1 through 8 (of 8 total)
This is exactly what I was looking for 😀 !
The following statement provides all the schemas
CALL ASSP.Discover("DISCOVER_SCHEMA_ROWSETS");
And if any of the schemas is executed then I get schema details
CALL ASSP.Discover("MDSCHEMA_HIERARCHIES");
Thanks...
January 5, 2009 at 1:26 am
Well, I went through MSDN Q. & A. on creating indexed views and found the solution... There are two ways to handle this
1. If you want to apply index on...
October 2, 2008 at 9:21 am
You can have functioin by passing the EmployeeId and get the required data.
The join provided above is called bulk update where multiple records can be updated as single statement. The...
September 8, 2008 at 9:40 am
But I think you will have to include all the columns in join with source to create surrogate key.
So in relational DB PK will not define uniqueness of the data;...
September 5, 2008 at 8:21 am
In this particular example SSN can be treated as unique number so there is no need to join on all 5 columns. If you want to transfer this data to...
September 5, 2008 at 7:55 am
You can basically create one table defining surrogate key. For example if you have tables like
Region
(idRegion
RegionName
)
and
Country
(idCountry
idRegion
CountryName)
if your composite key in Country is idRegion and CountryName then you can create a...
September 5, 2008 at 7:32 am
So does it mean, the index sequence can be decided on any order? Or is there any logic to decide the index ordering?
Will Index (FirstName, LastName) be exactly same as...
September 5, 2008 at 7:13 am
I went through a lot of topics by Ralph Kimball and found that primary key is not used in fact table. This is because the fact key will not be...
September 5, 2008 at 5:11 am
Viewing 8 posts - 1 through 8 (of 8 total)