ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
tip   To Refer this Site to Your Friends   Click Here
Google
 
Categories  >>  Software  >>  Databases  >>  SQL Server
 
 


 

 
 Oracle interview questions  Oracle Interview Questions
 SQL Server interview questions  SQL Server Interview Questions
 MS Access interview questions  MS Access Interview Questions
 MySQL interview questions  MySQL Interview Questions
 Postgre interview questions  Postgre Interview Questions
 Sybase interview questions  Sybase Interview Questions
 DB Architecture interview questions  DB Architecture Interview Questions
 DB Administration interview questions  DB Administration Interview Questions
 DB Development interview questions  DB Development Interview Questions
 SQL PLSQL interview questions  SQL PLSQL Interview Questions
 Databases AllOther interview questions  Databases AllOther Interview Questions
Question
What is the difference between SSAS 2000 and SSAS 2005?
 Question Submitted By :: Padmavasireddy
I also faced this Question!!     Rank Answer Posted By  
 
  Re: What is the difference between SSAS 2000 and SSAS 2005?
Answer
# 1
Many SQL Server developers eagerly anticipate the long-
awaited release of SQL Server 2005, formerly code-
named "Yukon." Major goals for Business Intelligence (BI) 
in the 2005 release are better integration of the somewhat 
loosely-coupled BI components of SQL Server 2000, provide 
enterprise reporting capability in the form of Reporting 
Services, and enable faster and easier development 
of "pervasive" BI, which can reach people at every level of 
the organization. To achieve these goals, each existing 
component of the SQL Server suite has been changed or 
replaced in the 2005 release. Reporting Services, 
originally slated to debut as a new component of SQL Server 
2005, has recently been released independently—but remains 
an integral component of the SQL Server 2005 vision.

SQL Server BI developers are well-advised to learn as much 
as possible about these changes and to start planning how 
to capitalize on them. This article focuses on some of the 
most basic differences between the 2000 and Beta 1 2005 
versions of Analysis Services, and addresses these 
differences in three overlapping areas:

User Interface 
Architecture 
Programming 
Beyond these three major areas, there are many other 
changes in Analysis Services 2005 (AS 2005) that are 
outside the scope of this article. I've listed (but not 
discussed) these at the end of this article. Also not 
covered but worth noting are enhancements to Transact-SQL 
in SQL Server 2005 itself which help facilitate BI 
analysis. For more information, you can find details on all 
the changes in this Microsoft whitepaper.

Keep in mind that the SQL 2005 version discussed in this 
article is still in beta; therefore nothing should be 
regarded as finalized.

User Interface
Analysis Services 2000 (AS 2000) developers use Analysis 
Manager 2000 (AM 2000) to create and manage OLAP (Online 
Analytical Processing) cubes. They also use the SQL Server 
2000 tools Query Analyzer and Enterprise Manager to develop 
the relational star schemas on which the OLAP cubes are 
based, and the Extract Transform and Load (ETL), in the 
form of stored procedures and Data Transformation Services 
(DTS), to load them. In AS 2000, these three tools are 
independent, the user experience is inconsistent, and it is 
almost impossible to establish development standards.

AS 2005 incorporates the functionality of those three 
former tools into two new tools hosted by the Visual Studio 
2005 IDE, "BI Workbench" and "SQL Workbench." You use BI 
Workbench—like AM 2000—to create and manage cubes; however, 
unlike AS 2000, BI Workbench also includes design 
capabilities for DTS (found in Enterprise Manager in SQL 
Server 2000) and Reporting Services. SQL Workbench merges 
the functions of both Query Analyzer and Enterprise Manager 
as well as some of the administrative functions of AM 2000.

The AM 2000 experience has characteristics such as:

The user must explicitly connect to an existing Analysis 
Services Server before any other tasks are possible. Each 
AS server registered with AM 2000 appears as an object. 
The object of coarsest grain is the database, a collection 
of related connection definitions, cubes, shared 
dimensions, data-mining models, and roles. The database, 
archived as a CAB file, is the fundamental unit of 
deployment between AS servers. 
Cubes must be based on a single fact table at the center of 
a star or snowflake schema, which is created and populated 
using other tools. 
Building a cube is a manually-intensive process, even using 
the cube wizard. 
Analysis Services 2000 stores metadata in either an Access 
or SQL Server database.
 
Is This Answer Correct ?    2 Yes 1 No
Ranjit
 

 
 
 
Other SQL Server Interview Questions
 
  Question Asked @ Answers
 
Which stored procedure will you be running to add a linked server?  1
How To Change Column Ordinal Position in SQL Server 2005 using Query i.e I Want To Add Column at Particular Ordinal Position in SQL Server 2005  2
Wht is the difference between stored procedure and trigger TCS4
what is physical sort data and logical sort data in index?  2
what is differece between union and union all  4
I have a website that allows customers to browse and place orders for certain products. I have 2 tables; Customers and Orders. The Customers table holds the customer records and the Orders table holds the orders placed by the customer. Both tables are tied based on the field Cust_ID. Example of the data is shown below: Cust_ID Cust_Name Cust_ID Product Amount Order_Date 1001 John Tan 1001 P-5211 $120.00 2/13/2006 1002 Michael Wong 1001 K-1428 $88.90 1/11/2006 1003 Mary Cheong 1003 C-0923 $82.50 1/27/2006 1004 Ahmad Suffian 1003 K-1428 $88.90 2/2/2006 Write a single SQL statement that extracts all purchase records with the following criteria: 1. Customer names starting with “M” only. 2. Orders placed within the current month only. 3. Amount does not exceed $100.00 The list must be sorted by order date with the latest order showing on top. Techno-Solutions3
What is the order in which the SQL query is executed? list them in order. CTS1
What is the difference between a Application Server and a Database Oracle2
SYNTAX FOR VIEWS WITH EXAMPLE HOW TO LINK TWO TABLES Microsoft1
What is the difference between Stored Procedure , Function and Package, 1. how many blocks in Package and what are they. IBM5
How to write stored procedure to update the data in 10 tables  4
Which virtual table does a trigger use?  3
i have a table #temp1(id, Name groupname ) and record like this 1 R1 S 2 R3 S 3 R2 S 4 R4 D 5 R5 D 6 R6 K 7 R7 K 8 R8 L 9 R9 L 10 R10 L 11 R11 K and i want to display record based on user defind sorting order e.g. 1 R4 D 2 R5 D 3 R6 K 4 R7 K 5 R11 K 6 R1 S 7 R3 S 8 R2 S 9 R8 L 10 R9 L 11 R10 L  4
How to Check Whether a Global Temporary Exists in a SQL Database or not?  2
In performance wise distinct is good or group by is good? eg:select name from emp group by name; select distinct name from emp; Infosys4
What are primary keys and foreign keys?  3
WHAT IS DIFFRENCE BETWEEN TRUNCATE AND DELETE STATEMENT CTS10
wht's the differece between sqlserver05 and sqlserver2000  3
how do we find every fifth record in a table  11
How can I create a plain-text flat file from SQL Server as input to another application?  2
 
For more SQL Server Interview Questions Click Here 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com