Saturday, April 2, 2022

SCCP 2006 availability on MSDN

SCCP 2006 availability on MSDN

Previously, we incorrectly communicated that SCCP 2006 would be available for download by all MSDN subscribers. The download option is available only for Premium-level subscriptions. We apologize for this miscommunication, and for any inconvenience caused.

dinamica dimension in accumulated periods

Good Afternoon
I need collaborate in like handling the following subject to me:
 I have a dimension Product that crosses the Dimension Market. According to the time the product, the product is considered present or new.
 Example:
 01/01/2005 product is new 
/01/02/2005 product is new
01/01/2006 product is new
/01/02/2006 product is new
 01/03/2006 product is Present and seguira present as of that date.
As of month three of the year 2006 that product always will be of the present market. Until aca I do not have problems.
The problem arises when I observe the product and its sales in a period of accumulated time. The system returns of that accumulated period whatever to me were the sales like new and whatever like present.
 Example: first trimester of the 2006
value like nuevo(enero and febrerodel 2006) and
 value like actual(ventas for March). I need that for accumulated periods, it takes I complete value that asumio the product for the example of the trimester the value of marzo(actual) and returns all the sales to me of that trimester but like present and as much new present and not divided market in two memebers(tanto).

Gracias por vuestra colaboración.

 

somenone give me a manual for MDX for SQL?

Good Morning,

Anybody can help me to dowonload a PDF or CHM manual from MDX to SQL?

i´m appreciate any collaboration.

Luz Helena Restrepo

ATI Multi Media Center

I haven't been able to get ATI Multi Media Center to install.  It's for my ATI TV Wonder Pro Remote Control Edition.  Nor can i get the drivers for the card to install.  Amazingly there are drivers for the remote on the windows update site.

Target Account Name is incorrect

We had to reinstall our complete server. It was a bit messed up trying/setinng up account on how to make a good security setup for all our services. we had to implement a Temtec executive Viewer 6.x on our SSAS from a different machine.

Therefore we had to use Kerebos .... Our tech department dit setup a fex things to eneable Kerebos ...

We also messed up with it so we  decided to deinstall and then re-install all (no repair).

Our server is working fine again, we can login mith management studio in all our services (Sql, SSAS, SSRS, SSIS).

But when trying to do connect from a remote computer, with MgtStudio to SSAS we get an error

'The target principal name is incorrect', or when we try to do tis from a Proclarity Client the error is 'The target Account name is incorrect'

We tried the normal computer name, and also its fully qualified domain name ... stil the same error.

Any ideas ??

Not compatable with AVG antivirus

Error message says one of the sys files is not compatable.

Not compatable with Ulead DVD Movie factory

 some visual elements have been disabled is produced after installation.

 

MIIS and User Self-service

Hello all,

While in the midst of a technical design for a miis deployment I keep running into problems of finding the proper solution for user self-service functionality. We have data coming in from several sources but want to give the user the ability to update some of their attributes like a cellphone or a roomnumber, this updated information will eventually sync back into AD for instance...

I have been installing and reviewing: Nakisa, Namescape (all more for AD/AM), looking at BMC software (but this makes MIIS almost obsolete), HP Identity suites and what not, just to find the right "portal solution" for self-service.

I read here Microsoft experience with their own EasyID, but nowhere is there any download to try to built it oneself for test or get an estimate of development time etc. Any hint on this?

Another resource is Microsoft MIIS Series 1.3 which comes with rich documentation and sourcecode luckily, and I am very happy with it, alas I cannot expect the customer to budget for additional time/money to develop this, another problem is that they might need to maintain the custom solution for which they have no capabilities.

I am curious what others are doing or using for self-service functionality, developing thier own portals, buying out-of-the-box solutions, using Sharepoint maybe?

Any tips or insights are very much appreciated,

Thank you,

DannyA
Technical Consultant IDM

 

 


Reply:

You can have a web site/app that takes the user information and dumps into a text file.

Regulary you synchronize the content and you have the solution to your problem. Of course you can save the updated info in a DB and you can synchronize that as well. At this point is your choice. The text file path is the simplest one.

Sorin

 


------------------------------------
Reply:

Besides building your own-self service portal, a quick tool I've used was Imanami's WebDir. It complements MIIS and is pretty flexible.

http://www.imanami.com/products/webdir/default.asp

 


------------------------------------
Reply:

Thanks for the tips everyone. The Imanami Webdir product looks promising, alas it does not work against AD/AM.

Other suggestions, anyone?

Regards,

DannyA


------------------------------------

Error in the metadata manager, the .. attribute returns a member from a different hierarchie

Hello,

I have created and tested a very simple role that has read permission on my cube for all dimensions.

Now, when I give this cube to the final user, he gets this error in his Excel 2003 Front-end, no matter which dimension he tries to use.
He did instal msxml6 and pts 9.

Note that the excel pivot works fine for me however I am the admin so the problem can be with the role.

Any thoughts?

Thanks,
Philippe

 

Sample code for creating and processing a Partition with AMO

//=====================================================================
//
//  Summary:   Sample code for creating and processing a partition in
//             the "Adventure Works" Analysis Services database.
//
//---------------------------------------------------------------------
//
// Copyright (C) Microsoft Corporation.  All rights reserved.
//
// THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
//
//=====================================================================
using System;
using Microsoft.AnalysisServices;

namespace Microsoft.AnalysisServices.CodeSamples
{
    /// <summary>
    /// Connects to Analysis Services and creates a partition in the "Adventure Works" database.
    /// </summary>
    /// <remarks>
    /// This code requires the "Adventure Works" database to be present on the Analysis Services server
    /// and also the "AdventureWorksDW" relational database on SQL Server (for processing the newly
    /// created partition).
    /// </remarks>
    class CreatePartition
    {
        static int Main(string[] args)
        {
            //--------------------------------------------------------------------------------
            // This is the plan of the code:
            //  1. we'll connect to an Analysis Services server
            //  2. we'll locate the "Internet Sales" measure group from the "Adventure Works"
            //     cube from the "Adventure Works DW" database
            //  3. we'll add a new partition "Internet_Sales_2005" to the "Internet Sales"
            //     measure group
            //  4. we'll process the partition
            //  5. we'll remove the partition (cleanup)
            //--------------------------------------------------------------------------------

            string connectionString = "Data Source=localhost";
            string databaseName     = "Adventure Works DW"; // use "Adventure Works DW Standard Edition" if you have the standard edition installed

            try
            {
                //--------------------------------------------------------------------------------
                // STEP 1: connect to Analysis Services server.
                //--------------------------------------------------------------------------------
                Server server = new Server();
                server.Connect(connectionString);


                try
                {
                    //--------------------------------------------------------------------------------
                    // STEP 2: locate the "Internet Sales" measure group.
                    //--------------------------------------------------------------------------------
                    Database database = server.Databases.FindByName(databaseName);
                    if (database == null)
                    {
                        Console.Error.WriteLine("The [{0}] database is missing.", databaseName);
                        return 1;
                    }

                    Cube adventureWorksCube = database.Cubes.FindByName("Adventure Works");
                    if (adventureWorksCube == null)
                    {
                        Console.Error.WriteLine("The [Adventure Works] cube is missing.");
                        return 1;
                    }

                    MeasureGroup internetSalesMeasureGroup = adventureWorksCube.MeasureGroups.FindByName("Internet Sales");
                    if (internetSalesMeasureGroup == null)
                    {
                        Console.Error.WriteLine("The [Internet Sales] measure group is missing.");
                        return 1;
                    }


                    //--------------------------------------------------------------------------------
                    // STEP 3: create the "Internet_Sales_2005" partition.
                    //--------------------------------------------------------------------------------
                    Partition    internetSales2005 = internetSalesMeasureGroup.Partitions.Add("Internet_Sales_2005");
                    // The new partition will contain the facts for 2005; looking at the existing partitions
                    // "Internet_Sales_2001", "Internet_Sales_2002", "Internet_Sales_2003" and "Internet_Sales_2004",
                    // we see that the fact table is [dbo].[FactInternetSales] and the partitioning is done by OrderDateKey.
                    // The partition for 2004 has the OrderDateKey between 915 and 1280, so we'll create the partition for 2005
                    // to include all the facts with OrderDateKey greater than 1280.
                    internetSales2005.Source = new QueryBinding(
                        "Adventure Works DW", // the ID of the DataSource for the partition
                        "SELECT * FROM [dbo].[FactInternetSales] WHERE OrderDateKey > 1280" // the SQL query defining the partition
                        );
                    internetSales2005.Update(); // this will save the partition to the server
                    // Other Partition Source types (in addition to QueryBinding) are:
                    // - TableBinding: for binding to a table (or view) from the relational database
                    // - DsvTableBinding: for binding to a table defined in a DataSourceView


                    //--------------------------------------------------------------------------------
                    // STEP 4: process the newly created "Internet_Sales_2005" partition.
                    //--------------------------------------------------------------------------------
                    internetSales2005.Process();

                   
                    //--------------------------------------------------------------------------------
                    // STEP 5: cleanup.
                    //--------------------------------------------------------------------------------
                    internetSales2005.Drop();

                   
                    return 0;
                }
                finally
                {
                    server.Disconnect();
                }
            }
            catch (Exception e)
            {
                Console.Error.WriteLine(e.ToString());
                return 1;
            }
        }
    }
}

Sql2k SP4 Incomplete Client Upgrade

I discovered this morning two gotchas about SP4:

1.  You need to copy the sqlcli.bat and sqlcli.iss from the original install directory to the SP4 directory in order for the Client installs to be upgraded to SP4.  Setup.bat runs, and says
everything (MDAC only?) was installed sucessfully.  None of the Client files were touched.

2.  The SP4 Client upgrade does NOT update the following files:

cnfgsvr.exe
scm.exe
sqdedev.dll
sqladhlp.exe
sqlmangr.exe
sqlvdi.dll (must use regsrv32.exe to unregister old, register new dll)

Hope this is fixed/documented soon.

Jim Van Sickler

Alot of software does not play nice with Vista

Many software programs which I have paid for will simply not work with Vista. Vista 'blocks' them and gives me the option to 'check for a solution'. But then there is no 'solution' that can be found. Microsoft needs to work hard to improve program compatibility before releasing vista to the general public or they will receive alot of angry phone calls and emails from future customers.

 

Some of my applications are:

Easy Media Creator 7

Nero 6

Power DVD (OEM and version that came with my dvd writer).

Power Producer

Symantec Antivirus Corporate Version

There are a few more but I cannot remember them all at this time.

I have "paid" for these programs and they all work with XP Professional so it is frustrating. In particular I have noticed from past experience that Roxio refuses to release patches to work with new operating systems. Instead they insist on trying to sell people a 'newer' version of their software.

It is my sincere hope that someone at Microsoft will read this post and do something constructive to resolve this issue.


Reply:
U can use Compat mode for XP on ur Proggies... Just right-click on ur Proggie's Main EXE ,Then properties then u can Switch it there..'cept for Nero it bein an A-hole 'bout that...lol Hope this Helps u ...


Drone1x......

------------------------------------
Reply:

"It is my sincere hope that someone at Microsoft will read this post and do something constructive to resolve this issue."

I can't keep my mouth shut any longer.  This is not Microsoft's problem.  It will be up to the software companies to make changes to their software so that they will work on Vista.  The whole point of the beta test is to test the software out.  Most people seem to think that this is a great way to get a free copy of the latest Windows, then they complain when things don't work their way.

If you want to help, email the companies who coded your software and have them download the vista developers kits and recode their products so that they work.


------------------------------------
Reply:
With all due respect.....

The only reason I posted this note was so that someone at Microsoft can be aware of the problem and hopefully try to address it before the final release.

I know that this is a "beta" version and as such the opportunity to address these issues can be constructive for both Microsoft and potential users when the final version is released.

It "will" be a problem for Microsoft when they start getting large amounts of support requests if these issues are not resolved. Whether or not Microsoft is responsible to make vista work with applications is completely irrelevant in this case.

------------------------------------
Reply:

Well I can see both sides of this argument... But quite frankly MS isn't the the only game in town and could lose huge market share if that's the attitude they take...

I'm into this to learn and to help and am approaching this beta like I would if I were buying it off the self... that's where we're trying to get.. right? And that's what the general public will expect!

I ordered the CD and in good faith loaded it up on my extra laptop ... a nice one... without adjusting anything previously on the box and it's been very buggy ever since... Hey it's a beta... a poor beta... but a beta none the less... I had huge issues right after the load... Vista won't only play well with others... it won't even play with MS Applications like Office 2003... I ended up removing office... and several other things... like a eBay toolbar... now it seems to be fighting with my RealTime Player...

When I can get to the web I have to do it as administrator...  I keep the task manager up all of the time and I wish that when things blow up that they would just go away... but instead Vista keeps trying to solve its own issues... and then reloading the same broken process... this drives me crazy. Put an "END everything in this process Button" on the Task Manager or pop-up... so I can delete off the offending application and move on to the next issue. 

Anyway.. I like the look and feel and I'll keep working with it and try to help MS make it better... I have to ask though... How much of the development of Vista was off-shored... it just seems to be so very poorly done at this point? Not trying to be mean just truthful!

Thanks

TIO

 

 

 


------------------------------------
Reply:

While I appreciate the initial question and its intent, I am going to lock this thread before things get unfriendly.

~Elizabeth Ross - MSFT


------------------------------------

Fact/Dimension/Cube design question with Example

I am setting up an olap database as a proof of concept and need a little help on the design.  What I need to do is compare portfolios to benchmarks based on market values for a number of different categories or groupings.  Example:

 

Portfolio1

 

 

Industry

Rating

GM

100

0.09

AUTO

B-

F

200

0.18

AUTO

B+

BMY

300

0.27

PHARMA

A+

BAC

500

0.45

BANK

A+

 

1100

 

 

 

 

 

 

 

 

Benchmark1

 

 

 

 

GM

150

0.13

AUTO

B-

F

210

0.18

AUTO

B+

BMY

280

0.25

PHARMA

A+

BAC

500

0.44

BANK

A+

 

1140

 

 

 

 

 

 

 

 

Industry Analysis

Weighting

 

 

AUTO

0.86

 

 

 

BANK

1.04

 

 

 

PHARMA

1.11

 

 

 

 

 

 

 

 

Rating Analysis

 

 

 

 

A+

1.06

 

 

 

B+

0.99

 

 

 

B-

0.69

 

 

 

 

I will need to allow them to create new groupings for analysis (industry, rating, possibly currency, etc).  The idea I had was to calculate the weighting in the portfolios using a calculated field, is that right?  Or should I do it when populating the fact table?

 

Also I expect the groupings to expand, do they just become additional dimension tables?

 

Securities may change ratings depending on the day so I have DimRating, DimSecurity, DimIndustry, does that sound right?

 

Thanks in advance I know this is a lot.  I just want to make sure I am on the right track.

Fix to BUG: You receive an error message when you use the Package Migration Wizard to migrate a DTS package

 

 

Article ID : 917420

CAUSE

This problem occurs when one of the following conditions is true:
The name of the DTS package starts with a space.
The name of the DTS package ends with a space.
The name of the DTS package contains a character that is invalid in SQL Server 2005 Integration Services (SSIS).

My Workaroud was execute the follow script in MSDB in SQL 2000

Update sysdtspackages

set name = rtrim(ltrim(name))

This script fix all DTS Package with names with spaces at start and ends.

Jose G. Yovera

MCSE MCDBA

Consein C.A.

Venezuela

 

Projects in SQL Management Studio

I love the template explorer in SQL Management Studio 2005.  However, why can't we save these files to a project we've started in Management Studio.  I hope in the future that we will be able to change the folder names of projects in Management Studio, and that we will be able to drag template items from the template explorer to our project in the Solution Explorer window.

SQL Project team, can you please add this in the future?


Reply:

Ron, thanks for your suggestion.  I will forward on your comments to my team.

http://connect.microsoft.com is a customer portal where our users can file bugs, vote on their importance, and track their progress throughout our project's lifecycles.  You'll be able to connect to the exact member of the team who owns any particular area of SQL Server.  Would you mind submitting this idea there and posting a link back to the forum?

Thanks!

Paul A. Mestemaker II
Program Manager
SQL Server
http://blogs.msdn.com/sqlrem/


------------------------------------
Reply:

I have posted this suggestiong and a few other project-related suggestions in a post on connect.microsoft.com.  Here's the link:

 

https://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=151213

 


------------------------------------

Queries from Excel take too long

Hi,

I'm using Excel's pivot table to query my cube. I'm also using Profiler to take a look at the incoming queries.

  1. I executed a query from Excel but it "hourglassed" on me
  2. I copy and pasted the query from Profiler into SSMS and ran it. It ran and returned results in 250ms according to Profiler
  3. The query as issued from Excel eventually completed in 264000ms  (i.e. Approx 1000 times as long)

Anyone seen similar behaviour? i.e. The same query taking orders of magnitude longer to execute from Excel? I'm guessing there's something wacky going on in the OLE DB Provider but I don't know what and I certainly don't know how to go about doing something about it.

Incidentally, I've pasted the MDX at the bottom of this post. Don't get me started about the MDX it produces - all I did was filter the members on axis 0!!!!

TIA

-Jamie

 

 

 

SELECT NON EMPTY HIERARCHIZE(Except({AddCalculatedMembers(Except({AddCalculatedMembers(DrillDownLevel({[Year of Account].[Year of Account].[All]}))}, {[Year of Account].[Year of Account].&[-1], [Year of Account].[Year of Account].&[-2], [Year of Account].[Year of Account].&[2039], [Year of Account].[Year of Account].&[2038], [Year of Account].[Year of Account].&[2037], [Year of Account].[Year of Account].&[2036], [Year of Account].[Year of Account].&[2035], [Year of Account].[Year of Account].&[2034], [Year of Account].[Year of Account].&[2033], [Year of Account].[Year of Account].&[2032], [Year of Account].[Year of Account].&[2031], [Year of Account].[Year of Account].&[2030], [Year of Account].[Year of Account].&[2029], [Year of Account].[Year of Account].&[2028], [Year of Account].[Year of Account].&[2027], [Year of Account].[Year of Account].&[2026], [Year of Account].[Year of Account].&[2025], [Year of Account].[Year of Account].&[2024], [Year of Account].[Year of Account].&[2023], [Year of Account].[Year of Account].&[2022], [Year of Account].[Year of Account].&[2021], [Year of Account].[Year of Account].&[2020], [Year of Account].[Year of Account].&[2019], [Year of Account].[Year of Account].&[2018], [Year of Account].[Year of Account].&[2017], [Year of Account].[Year of Account].&[2016], [Year of Account].[Year of Account].&[2015], [Year of Account].[Year of Account].&[2014], [Year of Account].[Year of Account].&[2013], [Year of Account].[Year of Account].&[2012], [Year of Account].[Year of Account].&[2011], [Year of Account].[Year of Account].&[2010], [Year of Account].[Year of Account].&[2009], [Year of Account].[Year of Account].&[2008], [Year of Account].[Year of Account].&[2007], [Year of Account].[Year of Account].&[2005], [Year of Account].[Year of Account].&[2004], [Year of Account].[Year of Account].&[2003], [Year of Account].[Year of Account].&[2002], [Year of Account].[Year of Account].&[2001], [Year of Account].[Year of Account].&[2000], [Year of Account].[Year of Account].&[1999], [Year of Account].[Year of Account].&[1998], [Year of Account].[Year of Account].&[1997], [Year of Account].[Year of Account].&[1996], [Year of Account].[Year of Account].&[1995], [Year of Account].[Year of Account].&[1994], [Year of Account].[Year of Account].&[1993], [Year of Account].[Year of Account].&[1992], [Year of Account].[Year of Account].&[1991], [Year of Account].[Year of Account].&[1990]}))}, {[Year of Account].[Year of Account].&[-1], [Year of Account].[Year of Account].&[-2], [Year of Account].[Year of Account].&[2039], [Year of Account].[Year of Account].&[2038], [Year of Account].[Year of Account].&[2037], [Year of Account].[Year of Account].&[2036], [Year of Account].[Year of Account].&[2035], [Year of Account].[Year of Account].&[2034], [Year of Account].[Year of Account].&[2033], [Year of Account].[Year of Account].&[2032], [Year of Account].[Year of Account].&[2031], [Year of Account].[Year of Account].&[2030], [Year of Account].[Year of Account].&[2029], [Year of Account].[Year of Account].&[2028], [Year of Account].[Year of Account].&[2027], [Year of Account].[Year of Account].&[2026], [Year of Account].[Year of Account].&[2025], [Year of Account].[Year of Account].&[2024], [Year of Account].[Year of Account].&[2023], [Year of Account].[Year of Account].&[2022], [Year of Account].[Year of Account].&[2021], [Year of Account].[Year of Account].&[2020], [Year of Account].[Year of Account].&[2019], [Year of Account].[Year of Account].&[2018], [Year of Account].[Year of Account].&[2017], [Year of Account].[Year of Account].&[2016], [Year of Account].[Year of Account].&[2015], [Year of Account].[Year of Account].&[2014], [Year of Account].[Year of Account].&[2013], [Year of Account].[Year of Account].&[2012], [Year of Account].[Year of Account].&[2011], [Year of Account].[Year of Account].&[2010], [Year of Account].[Year of Account].&[2009], [Year of Account].[Year of Account].&[2008], [Year of Account].[Year of Account].&[2007], [Year of Account].[Year of Account].&[2005], [Year of Account].[Year of Account].&[2004], [Year of Account].[Year of Account].&[2003], [Year of Account].[Year of Account].&[2002], [Year of Account].[Year of Account].&[2001], [Year of Account].[Year of Account].&[2000], [Year of Account].[Year of Account].&[1999], [Year of Account].[Year of Account].&[1998], [Year of Account].[Year of Account].&[1997], [Year of Account].[Year of Account].&[1996], [Year of Account].[Year of Account].&[1995], [Year of Account].[Year of Account].&[1994], [Year of Account].[Year of Account].&[1993], [Year of Account].[Year of Account].&[1992], [Year of Account].[Year of Account].&[1991], [Year of Account].[Year of Account].&[1990]})) DIMENSION PROPERTIES PARENT_UNIQUE_NAME ON COLUMNS , NON EMPTY HIERARCHIZE(AddCalculatedMembers({DrillDownLevel({[Syndicate].[Syndicate Code].[All]})})) DIMENSION PROPERTIES PARENT_UNIQUE_NAME ON ROWS  FROM [Capacity] WHERE ([Measures].[Allocation])

 

Text right align

Hi,

Is there a way to set all measures to display as right-align by default for user-friendliness?

Thanks.

 

Jet

Linked cube

I have cube-A in server1 and cube-B in server2. I need to compare Cube-A against Cube-B. Cube-A has the same dimension names  and measures as Cube-B.

This is the way I did, I created a Linked cube from server1 to Server2 and from there I created a virtual cube between Linked cube and cube B.  when I processed the virtual cube the result wasnt good since in the virtual cube I could see data from only one cube.

The view is similar to this:

                        CubeA                                   cubeB                  

Dimension       Measure1 Measure2       Measure1 Measure2

1                       10      10             
2                       15      15
3                       20      20

The measure columns from cube2 is completely empty. I worked around and found from where the issue is coming. When I created a virtual cube using the wizard,it was showing me two sets of dimension, one from Linked cube(Cube A) and one from cubeB. If I use the dimensions from cubeA then I get a view like the above one and If I use the dimensions from cube B I get the view like the one below.

                            CubeA                                CubeB                  

Dimension       Measure1 Measure2       Measure1 Measure2

1                                                           10          10             
2                                                           15          15
3                                                           20          20


I tried creating a linked cube from cube A and cube B on a different server. Then also I got two sets of dimension in the virtual cube wizard. The problem is linked cube takes the dimensions as private after getting processed  even though source cube has shared dimensions.

Is there any other way to do this? ie., I need to compare Cube-A against Cube-B. Cube-A has the same dimension  and measures as Cube-B existing in different servers.



A Great Whitepaper on the new and improved Platform Networking Features in Windows Server "Longhorn"

If you haven't already checked out this whitepaper or it's been a while since you last visited the link, I suggest you give this a read:

New Networking Features in Windows Server "Longhorn" and Windows Vista

This is a living, technical whitepaper that was just recently updated to reflect the new features and functionality that was introduced in Beta 2.

 

Vista 5456 Download Available

 

FYI, Windows Vista build 5456 is available since 23 Jun 2006 for download at http://connect.microsoft.com/.

This is an interim build and has not been through a rigorous test pass. You are encouraged to move off of Beta 2, start trying build 5456 out and file bugs against this new build.

A new product activation key for this build is not required and existing beta 2 keys will work (5342 and up to activate Ultimate edition).

Some highlights:

- the popular List View is back
- the system clock will not be changed when setting the time zone
- the behavior of UAC has changed a bit e.g. deleting desktop items is much easier
- Upgrade of Beta 2 to RC1 will be a supported scenario

HTH.


Reply:
thx for info.

------------------------------------
Reply:

I am a new TechNet member and am running Beta 2. Where on connect.microsoft.com can I download build 5456? 

 

- Joe


Joe Ruszkiewicz


------------------------------------
Reply:

If you got the beta2 only from Technet, that's mean you are not the early beta tester selected by MS. You cannot use the CONNECT website to download the interim build until MS make it to be public.

 

Thanks!


------------------------------------
Reply:
OK.  Thanks for the quick response.

------------------------------------
Reply:
welcome!

------------------------------------
Reply:
Can we upgrade to 5456 from 5384? I don't seem to be able to do so and each time it runs into error after invoking the setup program.

Regards
Jason Lee

------------------------------------
Reply:

Please check the disk spacw first.

Also, please reference the following:

Things you should know before installing:

 

Remove Applications Before Upgrading

When upgrading Windows Vista Beta2 x64 to Windows Vista 5456 x64 you may be unable to uninstall applications after the upgrade is completed.  We recommend users uninstall any applications prior to upgrade that you may need to remove after the upgrade has completed.

 

Potential Data Loss with Windows Mail

Existing Windows Mail settings AND Data will NOT migrate successfully from Beta 2 to 5456.  Be sure to use Windows Easy Transfer to save any Windows Mail data you care about before upgrading.  You will receive an error message when first booting into 5456.5 that says "Unable to upgrade your message databases."  Once the upgrade completes you can restore your Windows Mail settings and data using Windows Easy Transfer.

 

Last Logged in User Changed on Upgrade

When upgrading from Beta 2 to 5456, the last logged in username shown at the logon screen after completing the upgrade will be Administrator.  You will need to click the "Switch User" button to login as your user account.

 

Xbox 360 as a Media Center Extender

Support for Xbox 360 as a Media Center extender is not included in this Vista build. In order to continue using the Xbox 360 as a Media Center Extender with Vista, please remain on Beta 2 (build 5384). Support for the Xbox 360 as an Extender will be available in a future Vista build.

 

Pseudo Localized Text Present

Parts of the OS contain Pseudo-localized text, or non-english characters placed together to approximate English words. (Text that looks similar to the following: "Щĭηđбш§ Мèðìα Þĺäÿёя")  This is used internally, is known and being addressed in future builds.

 

Username with a . generates error

On a clean install, during OOBE, if you add a username which contains a period (.) in it, you will receive an error message after hitting next that says your computer name is invalid. You will need to remove the period from the computer name to continue.  This is set to be fixed in a future build.

 


------------------------------------
Reply:
Actually, I've just finish installing the OS and Office 2007 plus McAfee 8.5i beta (disabled all antivirus features before upgrade) 2 weeks ago and left it idling before I decide upgrade to 5456 earlier.

The disk space is believe to be more than sufficient as it last free space before initializing the upgrade is 8GB++.


------------------------------------
Reply:

Additionally, it appears this build does not yet have the ActiveSync bits in it...  (at least when doing a full install instead of upgrade)

 


------------------------------------
Reply:
Yes, it was not enable. Maybe MS have fix on it.

------------------------------------
Reply:
How can I download this release?

------------------------------------
Reply:

Sorry, the release was limited to selected users only.

It's not public yet.


------------------------------------
Reply:

I'm attempting to upgrade from 5308 to 5456 and I also get an error when invoking the setup program stating:

An internal Setup error occurred.  Verify that the installation sources are accessible and restart Setup. [Error code: 0xC0000005]

Also when I attempt to boot from DVD and install none of my keys from the CONNECT site are said to be valid.

Thanks in advance, Ryan


------------------------------------
Reply:
Hi, upgrade from old build to 5456 may not be a supported case.

------------------------------------
Reply:

 RichardWu wrote:
Hi, upgrade from old build to 5456 may not be a supported case.

Thanks for the quick reply, since upgrade seems to not be supported from the old Beta 2 release to the RC1 I have tried full install (boot from DVD, etc).  When the software asks for my Product Key it declines all Keys that I have generated from the CONNECT site.  I genarated 2 new as well and neither of these work.  I have the option to generate the following (should I see a Windows Vista Beta 5456 option)?

Longhorn Beta 1 Product Keys

Longhorn 5219 and up Product Keys

Windows Vista Tech Beta 5308 and up Business

... and I have generated keys for:

Vista 5219 and up Product Keys (Ultimate)

Windows Vista Tech Beta 5308 and up Home Premium

Windows Vista Tech Beta 5308 and up Home Basic

... but none of them are working with the 5456 build.

Thanks, Ryan


------------------------------------
Reply:
 Ryan Moore wrote:

 RichardWu wrote:
Hi, upgrade from old build to 5456 may not be a supported case.

Thanks for the quick reply, since upgrade seems to not be supported from the old Beta 2 release to the RC1 I have tried full install (boot from DVD, etc).  When the software asks for my Product Key it declines all Keys that I have generated from the CONNECT site.  I genarated 2 new as well and neither of these work.  I have the option to generate the following (should I see a Windows Vista Beta 5456 option)?

Longhorn Beta 1 Product Keys

Longhorn 5219 and up Product Keys

Windows Vista Tech Beta 5308 and up Business

... and I have generated keys for:

Vista 5219 and up Product Keys (Ultimate)

Windows Vista Tech Beta 5308 and up Home Premium

Windows Vista Tech Beta 5308 and up Home Basic

... but none of them are working with the 5456 build.

Thanks, Ryan

 

The key for "5342 and Up Ultimate Keys" should work on that.


------------------------------------
Reply:

I am an MS ActionPack subscriber and yes, I have installed Vista Beta 2. I Have some problems with my Radeo 9600 Pro which should be fixed with 5456 (as I read somewhere). Is it possible for me to get the lateste build (or one that has fixed this error)?

Thanks in advance.

Mike

 


------------------------------------
Reply:
Sorry mate...newer build is not public yet. Please wait the RC1 release to come.

------------------------------------

Gadgets problem

Gadgets problem

When I load the Sidebar after a reboot, I can click on the "+" to add Gadgets to the sidebar and they appear to work fine.  If I remove the gadget using the "X" beside the gadget, it disappears as expected.  Then, if I click the "+" again to add that gadget back to my sidebar, the gadget doesn't appear to work.

For example:  If I remove the clock and then add the clock back, the hands don't appear.  If I remove the slideshow and add the slideshow back, the images don't appear.  If I remove the puzzles and add them back in, they are blank.

Once I reboot, it works for the first time until I remove each individual gadget.

This doesn't appear to be a problem for the calculator, stocks, notes or feeds gadgets.

Has anyone else run across this?  I know it's minor, but it is still a bug.


Reply:

I can kinda reproduce the bug...

If I take the clock off and then add it back onto the sidebar, the two big hands show up, but no second hand. Additionally, the time seems to be stuck for a minute or so before it gets updated.


------------------------------------
Reply:

Yes, this is a known issue. It was going to be included in the release notes but it got bumped from that file by more serious issues.

 

The Clock, CPU, and Timer gadgets are known to be affected. At this time, there is no workaround other than to close and reopen the affected gadgets.

 

vv

J.O.


------------------------------------

Dimension dinamic for time SQL olap

goog morning


I need collaborate in like handling the following subject to me:
 I have a dimension Product that crosses the Dimension Market. According to the time the product, the product is considered present or new.
 Example:
 01/01/2005 product is new 
01/02/2005 product is new
01/01/2006 product is new
01/02/2006 product is new
 01/03/2006 product is Present and seguira present as of that date.


Until I do not have problems. For month, the dimension is recursive for the time 

The problem appears when I observe the product and its sales in a period of the accumulated time.
 The sales of that product in accumulated periods must assume them member of the dimension of market
 according to I complete month of the observed trimester osea present market

 Example: first trimester of the 2006
value like new(enero and febrero  2006) and
 value like present(ventas for March).
I need that for accumulated periods,
the value of I complete month of the trimester (March is (actual)). and returns all the sales to me of that trimestre  like present market and not divided market in two memebers($ present and $ new).
 
 
thanks for your collaboration

DNS - Bugs

I've found 2 bugs in vista beta 2 (build 5384) 64bit edition regarding DNS.

1) Wireless adapter using DHCP will incorrectly assign DNS ip address 192.168.1.83 insted of 192.168.1.8. (work arround, disable and enable, it will pick up the correct ip)

2) dns lookups do not work first time out. but eventually will (3rd time usually). This eventually leads ie7 not to load pages. If you let IE wait and time out, it will never connect back to that site at least in 2hour period. (only work arround I've found is to stop the page from loading 5-6 seconds after initializing load, reload, repeat until it loads)

Hope fully these will be resolved shortly.

 


Reply:

Jccondor,

If you believe this to be a bug, please post a bug report directly to MS so that it can be investigated and fixed.

It has been observed that Vista does have some issues obtaining a valid IP address from DHCP. Disable and re-enabling the NIC usually resolves the problem (regardless of WiFi or fixed NIC).

HTH.


------------------------------------
Reply:

I've tried. After several hours I gave up. Couldn't find how to report the bug. (so much for beta testing)

If any one has instructions on how to submit bugs...


------------------------------------
Reply:
There is an icon on the Vista desktop that provides instructions on sending feedback in a default installation.

Check that out and let us know if it helps. Thanks.

------------------------------------
Reply:

I'm not sure what happend(maby I deleted it) I only have one Getting Started. I've clicked on it but can't find submit bug. Please post where the link points to...

Thanks,


------------------------------------
Reply:
Here you go (related post to send feedback):

http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=464740&SiteID=17
 
Please let us know if this helps. Thanks.

------------------------------------

The fastest way to stop SQL Server 2000 without admin permissions... (Bug)

 

Do You want to stop the SQL Server service without admin permissions ? Use this Code :

CREATE TABLE [dbo].[stop_service] (
 [NUMBER] [int] NULL ,
) ON [PRIMARY]
GO

INSERT [dbo].[stop_service](
 NUMBER
)VALUES(
 CONVERT(numeric,43459855,43459855)
)
GO

I've tried contacting Microsoft to report this bug but only subscribers can do...

Don't run the code above in a production environment !! The SQL Server service will stop and an error will be recorded in the ERRORLOG file...

Does anybody know how to submit this error ?


Reply:
You are encountering an access violation that brings down the SQL Server service. You can file a bug at http://connect.microsoft.com. Please attach the dump files generated by the server, errorlog along with the bug report. Btw, the above code will not necessarily have the same effect on other SQL Servers. It can be something specific to your environment, even a corruption in the database and so on.
 
What version of SQL Server are you running? Do you have to latest service pack and hotfixes applied? For SQL Server 2000, it will be SP4 and SP2 + Hotfix package for SQL Server 2005. Start with doing DBCC CHECKDB on the database to check for corruptions. Can you repro it on any other server? If there is none, then apply the latest service pack.

------------------------------------
Reply:

 

I found this bug in a production environment that is running Windows 2000 Service Pack 4 with SQL Server 2000 Service Pack 4 (8.00.2040). I executed the code of the previous message in 4 other servers  and the results are the same, the SQL Server goes down.

I tested the problem on a Windows 2003 box with SQL Server 2000 Service Pack 4 + KB-916287 (8.00.2187) and the problem hapenned again.


------------------------------------
Reply:
Thanks for posting the version of SQL Server. It was helpful for repro purposes. I was able to reproduce the problem on 8.00.2162 build of SQL Server. I will let you know if I find anything more regarding this problem.

------------------------------------
Reply:
Btw, for now the workaround is to use the correct syntax / parameters for CONVERT function like:
 
INSERT [dbo].[stop_service](
 [NUMBER]
)VALUES(
 CONVERT(numeric,43459855)
)
And the convert itself is unncessary since the column is integer and you are converting integer value to numeric and back to integer. Or your repro is simpler than what you actually have. In any case, if it is due to the convert then using the correct syntax will eliminate the AV.

------------------------------------
Reply:

Thanks for Your help Umachandar,

I don't have control over all statements executed in our servers and I'm sure that there are unnecessary conversions. The main problem here is that based on this bug somebody can create a program that submit a malicious code and easily stop the service.


------------------------------------

Need help to write a MDX formula for % OF calculation

I am working with Hyperion, but the MDX language is the same so I think someone here can help me.

I have a cube that tracks a Dollar Value (FACE) accross like 10 different dimensions. I need to write a formula that calculates % Face of Total for ANY possible combination of the dimensions.

In short it looks like this:
[FACE] /
([FACE],
[PORTFOLIO].CURRENTMEMBER.PARENT,
[ACCOUNT].CURRENTMEMBER.PARENT,
[MANAGER].CURRENTMEMBER.PARENT,
<<MORE DIMS HERE>>

).VALUE * 100

The problem is that if I am at the top level (Gen 1) of any of the dimensions, the tuple returns a 0 so I do not get a result until I zoon in on ALL the dimensions. What I basically need to do is build in logic that looks like so:
IIF ( ISGENERATION ([PORTFOLIO].CURRENTMEMBER,1), [PORTFOLIO].CURRENTMEMBER, [PORTFOLIO].CURRENTMEMBER.PARENT)

The problem is that I can not put the IIF statement inside the tuple and with 10 or so dimensions it creates too many posibilities to put the IIF statement outside the tuple.

Any ideas on how I can maybe use variables or something to do this??

THANKS!!

Installaion (Boot from DVD) Won't Allow me to choose HD - Works running setup within XP

Want to know if other people have come across this.

Windows Vistia x32 DVD Beta 2

I booted from the dvd, and it kept insiting it wanted to use Disk 0 because it had enough space to intall vistia and wound not allow me to choose the Vistia partion on Disk 1 I set aside.

It did work when I ran setup from within Windows XP.


I have 3 Hard drives install.

(Disk 1) SATA split in to 3 100 gb partion
(Disk 0) IDE Western Digital 150 GB set as one big partion
IDE Western Digital 40 GB set as one big partion

SATA boots 1st (Vistia did detected SATA drive w/o any problem).

Did anyone else come across it insiting what drive it wanted and not allowing you to choose when booting from the dvd?

Reply:

you need drivers for sata for vista to boot

What you'll need to do is make a copy of the SATA Drivers and put them in the Root of a Floppy so that the Vista Install can grab the necessary drivers.

then you need to make sure that bios of computer is set correctly 


------------------------------------
Reply:
It allowed me to see the SATA partion(s) w/o the use of SATA driver disk (booting off dvd)

When I installed from within XP I also didn't require any driver files.

------------------------------------

dimension dinamic sql olap MDX

goog morning
I need collaborate in like handling the following subject to me:
 I have a dimension Product that crosses the Dimension Market. According to the time the product, the product is considered present or new.
 Example:
 01/01/2005 product is new 
01/02/2005 product is new
01/01/2006 product is new
01/02/2006 product is new
 01/03/2006 product is Present and seguira present as of that date.
Until I do not have problems. For month, the dimension is recursive for the time  
The problem arises when I observe the product and its sales in a period of accumulated time. The system returns of that accumulated period whatever to me were the sales like new and whatever like present.
 Example: first trimester of the 2006
value like new(enero and febrero  2006) and
 value like present(ventas for March).
I need that for accumulated periods,
the value of I complete month of the trimester (March is (actual)). and returns all the sales to me of that trimestre  like present market and not divided market in two memebers($ present and $ new).
 
 
thanks for your collaboration
 

mode function

Hi,

Does anybody know how to calculate automatically the mathematical function MODE in a cube using an MDX expression and store it as calculated member?

Thanks for the help!

How to set MDSCHEMA_PROPERTIES.PROPERTY_CONTENT_TYPE and MDSCHEMA_LEVELS.LEVEL_TYPE?

Hi

In AS2005 we could set DimensionAttribute.Type.

What effect does it have on the value of the following fields:

MDSCHEMA_PROPERTIES.PROPERTY_CONTENT_TYPE and MDSCHEMA_LEVELS.LEVEL_TYPE

that are only accesible with MDSCHEMA_ discovery queries?

Are there another way to get information about DimensionAttribute.Type?

What is the exact functional dependensy between DimensionAttribute.Type and
both MDSCHEMA_PROPERTIES.PROPERTY_CONTENT_TYPE and MDSCHEMA_LEVELS.LEVEL_TYPE

 

Jobs on the SQL Server Integration Services team at Microsoft!

Would you like to help realize the vision of making Microsoft SQL Server Integration Services the most powerful and reliable data integration platform in the world? Would you like to come in every morning knowing that the work you do today will impact thousands of companies all around the world, on hundreds of thousands of computers, from desktops to datacenters? Are you looking for a role on a team that empowers you to influence every aspect of the product, from technical implementation details all the way up to vision and strategy?

If you answered, "Yes!" to any of these questions, the SSIS team at Microsoft is looking for you! Here are a few of the positions we're looking to fill, now:

If you think you're the right fit for any of these positions, or if you've got talent that you think could help us in a role we haven't thought of, yet, get in touch with our recruiter, brynam ~at~ microsoft ~dot~ com.

Thanks!

Cim Ryan
Test Lead, SQL Server Integration Services

Arithmetic Operation with Dates

Hi I'm trying to get the difference between two dates. I need to create a Calculated member to show it. I'm using this formula

                        PeriodDays = LastDate - FirstDate

For example, I have a Time Dimension, I choose two dates:

       FirstDate = 07/04/2006 it's identity is 300

      LastDate = 15/04/2006 it's identity is 308

                       PeriodDays = 308 - 300 = 8  this value I need to show in a Calculated Member

The Time dimension has three levels

     Year, month and date

What happens when I choose only a month?

Thanks


Reply:

Dear,

I dont understand onething u are talking about date diffrence and u are giving an identity example.

Pls explain in detail.

Regards

Sufian


------------------------------------
Reply:

Hi, ohh, I will try to explain again

I need to get how many days are between two dates, For example, I choose two dates from my Time dimension

Date1 = 07/04/2006

Date2 = 15/04/2006

Days = Date2 - Date1 = 15/04/2006 - 07/04/2006 = 8 days and this value I need to show in a Calculated member

Is it possible?

My time dimension has three levels

Year, Month and day

Can I do this operation, with the month level?

Regards

Thanks


------------------------------------

SQL Server 2000 - Format Date fetching different dates for each run

Hi Guys,

I have created some reporting services reports using MDX and it was working fine for the last two years. Suddenly one of my queries which fetches current date/ previous day from system is not in consistent values for every run.

Select
{(strtomember("[Time].[JC].[JC Day].&["+ format(Date(),"m/d/yyyy" )+ " ]").prevmember )}on Rows,
{[Measures].[Primary Sales Tons]} on columns
from [Primary Sales]

This query should give me yesterdays date which is 20060703 always. For first time I run this query on the MDX sample application i Get 20060406 ( which is considering today as 20060407 in YYYYMMDD format).

The second time I run it gives the correct date.. 20060703.

I am running SQL server 2000 with SP4 applied.

Can any one help with this.

Thanks & Regards

Ram

 

 

 

 

 

Multiple items working the wrong way?

Hi,

I have created a standard dimension with several items, when  i analise the values for one of each items the values are correct but when i choose multiple items the value always comes null... why it doenst shows me the SUM of the selected items?

Imagine:

Item 1 : $500 ( It returns ok )

Item 2: $500 (It returns ok )

Multiple items (1,2): $1000 ( It returns Null / Empty )

It seems to me that this is another AS Bug... Anyone experiencing this problem?

 

Best Regards,

Luis Simões

MDX Statement create CalcMemebers

Hello together,

 

I want to get the value (Measure) of a Cube "4711", and this Value I want to display in an other Cube "XY" as a CalcMember.

Do you have an idea for the rigth syntax???

MDX: Reference ROOT when subcube is used (database totals)

I am trying to create a calculated member that returns the database (not visual) total of a measure.

CREATE MEMBER CURRENTCUBE.Measures.Test AS ([Measures].[Purchase Value], ROOT([Supplier])

Now, this works in the following query

SELECT [Measures].[Test] ON 0,

[Supplier].[Supplier].[Supplier].Members ON 1

FROM Analysis

WHERE [Supplier].[Supplier Group].&[3434]

But when the query is executed using a subcube:

SELECT [Measures].[Test] ON 0,

[Supplier].[Supplier].[Supplier].Members ON 1

FROM (SELECT [Supplier].[Supplier Group].&[3434] ON 0 FROM Analysis)

.... Analysis Services applies VisualTotals and my calculated member is the result of the total for the supplier group specified in the subcube statement.

I cannot control the behavior of my client application, which builds the query using a subcube, so I need to specify my calculated member in such a way that it is able to 'look outside' the subcube and return the database total.

How can I do this?

PivotTable - Expanding a member for details retreives all other member details!!

Hi, Am using OWC 11 PivotTable Component and I have noticed the following behavior while using pivotTable lists.

The issue is that whenever I expand an item, the pivotTable will retrieve and apply the calculation for all siblings of the expanded items eventhough, it keep them unexpanded. It seems that it always cache all members in the level I have expanded to.

I also noticed that at the last level of the hierarchy the data retreived will be limited to the item am expanding to.. which is the behavior i want no matter what level am expanding to.

I used profiler to grab the queries generated. I noticed that when the expand indicator is clicked the query will retrieve all members: A.B.members while in the second case where am drilling down to the lowest level the query uses the descendants function: Descendants(A.B.&[expandedMember], levelAmExpandingTo)

I wonder why it is behaving like that... it is really hitting the performance and bandwidth by retrieving data that i may never look at.

I hope there is way to force it to use the Descendants function so the data retreived is only the data for the member being expanded.

Thanks in advance.

 

After you have downloaded Windows Vista Beta 2, you get an icon or image of a blank piece of paper.

 

 For those of you who have downloaded Windows Vista Beta 2 version is discovering an image or an icon that looks like a blank piece of paper thinking that it was a bad download. Technically, it is not, unless otherwise you would have gotten a message during a download reading something like "Cannot download" or the like. This image or icon of a blank piece of paper is actually an ISO image which must be converted through the DVD burning process. After the DVD burning process is completed, if you look on your DVD by inserting it in your DVD player, you will see a different icon or image if you will, it will appear as an opened package with a CD sitting in front of it. When you see that, you will know that you do have a good downloaded copy. 

  For some of you complaining of the Windows Vista freezing up on your computer is usually associated with the hardware fixtures. You want to make sure that your primary hard drive is jumpered to Master. Another problem could very well be is by changing the ribbon cable to a new one located on the back of your hard drive. Also make sure that the DVD player is hooked up in either way: 1st option: Set the DVD player to Slave by moving the jumper in the back of it and plug in the same ribbon cable that the hard drive is on. 2nd option: Make sure that the DVD player is set to Master or "MA" (imprinted on the back of it.). Plug the second ribbon cable up to it and make sure that the other end is plugged into the Secondary slot on the mother board. That should resolve the freeze up problem. If you have the DVD burner hooked up in there, unplug it completely until the Windows is fully loaded on and then you can re-configure everything back to the way they were. Hopefully that will solve the problem for you. Good luck!

SSAS2005 Actions

Dear all,

After spoiling a day i think it is better to ask for help.

I created a hetrogenious cube in AS2005 with more then 30 Dimension and 3 Time dimension (time and system dimension).

2Days back the user given me a requirement the on purticulat vedor dimension i want to see vendor profile.

So i cretated 2 actions (Action and Report Action).But when i process the cube i cant see the action anywhere.

I created the action on dimension and in condition i had writen these lines

iif([Product Vendor].[Vendor ID]>65,-1,1)

and given the URL.

But again i process the cube i cant see the action.

I connected to Analysis services through management Studio .But still i have nothing in my hand.

SP1 already installed for all services.

Pls help me in this regard.

This is the XML Command of the report action

<Actions>

<Action xsi:type="ReportAction">

<ID>Report Action</ID>

<Name>ShowReport_Vendor_id</Name>

<TargetType>Hierarchy</TargetType>

<Target>[Product Vendor].[Vendor ID]</Target>

<Condition>iif([Product Vendor].[Vendor ID]&gt;1,-1,1)</Condition>

<Type>Report</Type>

<Invocation>OnOpen</Invocation>

<Application></Application>

<ReportServer>svr_test\sql_2005</ReportServer>

<Path>http://svr_test/ReportServer$SQL_2005/Pages/ReportViewer.aspx?/Matrix&amp;rs:Command=Render</Path>

<ReportFormatParameters>

<ReportFormatParameter>

<Name>rs:Command</Name>

<Value>Render</Value>

</ReportFormatParameter>

<ReportFormatParameter>

<Name>rs:Renderer</Name>

<Value>HTML5</Value>

</ReportFormatParameter>

</ReportFormatParameters>

</Action>

from

mohd sufian

How can I destect if a member exist in an other hierarchy of the same dimension ?

Hy,

I have a dimension (unit) with two hierarchies.
I would like to condition a calculation by testing the member existing in the other hierarchy.

How can I destect if a member exist in an other hierarchy ?



Georges

SCCP now available to MSDN subscribers

We're happy to announce that System Center Capacity Planner 2006 is now available to MSDN premium-level subscribers! It went out as part of the March 2006 shipment; you can also download it directly from Subscriber Downloads (under Servers/System Center Capacity Planner)

System Center Capacity Planner 2006 employs state of the art modeling technology to bring unprecedented functionality and flexibility to the process of performance analysis and planning of Microsoft Exchange Server 2003 and Microsoft Operations Manager 2005 deployments. With System Center Capacity Planner the IT Professional will get the guidance required to plan a deployment in the most efficient manner, while also allowing for "what-if" analysis for future planning.


Reply:
That is great.  Though unfortunately, even though I am an MSDN subscriber, the download is still not available to me.  Is there a link that you could send to me? 

------------------------------------
Reply:

Hi mindcube - the instructions I've been given are "from MSDN Subscription Management go to Subscriber Downloads and Product Keys, then the path is Servers\System Center Capacity Manager\System Center Capacity Manager 2006 (English)."  Subscription Management's URL is: https://msdn.microsoft.com/subscriptions/account/managesubscription.aspx

You could also try this direct URL - let me know if it works for you. https://msdn.one.microsoft.com/home.aspx?ApplicationID=3FF5C83B-C145-4388-BA64-F94B1F31946A&CultureCode=en-US&SourceSystemCode=XEN&BenefitDetailGuid=120C6FFC-A8C2-4C81-975B-6DA0A86BFB50&AccessGuid=0B2619F0-3DB9-4F09-B242-196722806B1A&SubscriptionStatus=Active


------------------------------------
Reply:
Hello there,

neither of those links work.  Is the SCCP available to every type of MSDN subscription?  This tool would be invaluable to us as we are planning an exchange upgrade soon...

------------------------------------
Reply:

 mindcube wrote:
Hello there,

neither of those links work.  Is the SCCP available to every type of MSDN subscription?  This tool would be invaluable to us as we are planning an exchange upgrade soon...

Hi mindcube - we're actively trying to track down this issue. Can you confirm that you can get to the MSDN Subscriber Downloads page? If so, what do you see when you expand the tree control on the left of that page, to drill down into the Servers category?


------------------------------------
Reply:
Update: we've identified why some MSDN subscribers aren't seeing the download, and we're working with two other groups to get the problem fixed. I'll post again as soon as I have any more information.

------------------------------------
Reply:
Update: Sorry for the mess-up here, guys. SCCP is only available to premium-level MSDN subscribers.

------------------------------------

IE7+ prompts should save our answers, site-based

IE7+ prompts should save our answers, site-based

Sorry I didn´t find any newsgroup for IE'Beta3'. Please let me know.

If we set IE to ask confirmation in several zone security items, e.g. "sites in less privileged zones may navigate to this zone", or "allow mixed content", every access always have to be confirmed. It is anoying when we have to frequently visit a site (and maybe we "relatively" trust it) which uses some kind of this page "techniques".

IE should show server/site name trying to execute the asked action and offer to save the answer to that server/site (pretty much like popup blocker does). Does this could be implemented to RC?

Moderator, excuse me again if this is not right place, if so please cross-post to the appropriate group ;-o

ZoneAlarm Internet Security Suite-Failure to Install

The Installation (ZAISS) Fails at serveral points during the install process.  It ends with a critical failure which appeared to be reported automatically to MS.  The issue has been reported to Zone Labs.

Reply:
I am moving your question to the applications forum, as they may be able to assist you.

------------------------------------
Reply:

There are 2 Security Suites in Beta for Vista available now. One is from CA (EZ Trust) and Trend Micro (PC-Cillin). I downloaded and install PC-Cillin and it works fine. But remember the built in security of Vista is much more effective than XP. The firewall in Vista blocks both in-bound and out-bound spys. The only missing piece of security for Vista out of the box is Anti-Virus.

  


------------------------------------

MSN not compatible+

Everytime i install Vista, I can get into MSN, but it says its not compatible.  It wont let me change my parental controls or add any extra screenames.  Last nite, my IE was in a funny position, the toolbars were huge and the webpage was small.  I had to use fullscreen to see any of the webpage.

Reply:
Why not download and install the most recent Live messanger as it works just fine with vista.

------------------------------------
Reply:
I am moving your question to the applications forum, they should be able to assist you.

------------------------------------

Diablo 2 LOD

Game installs faster than on XP. Looks fresh and actually better; however, once you close down the program and try to run it again you get the error message "battle.net was unable to properly verify your application version". The tech page for battle.net stats that this is caused from a virus that rewrites files. This is not the case. So far I know of 5 people with the same issue. The only correction for this is to uninstall reinstall every time you want to play it.  Anyone with ideas it would be greatly appreciated. It is the only game I play daily :) sad but true.

Reply:
I am moving your question to the applications forum. They should be able to assist you

------------------------------------

CMD: %ERRORLEVEL% and %0 behaviors; vars delayed expansion

Sorry if I post this in wrong folder, I didn´t find any for script support in Vista.

FIRST:

Well, we use several .CMD old-way scripts in unattended setups for XP, and trying with Vista we still have same problems.

One problem is about %ERRORLEVEL% behavior when it is used in same line after the command. Try this (right at prompt or in a .CMD):

dir|find "#" &if not "%errorlevel%"=="1" echo *
dir|find "#" &if not "%errorlevel%"=="1" echo *
dir|find "b" &if not "%errorlevel%"=="1" echo *
dir|find "b" &if not "%errorlevel%"=="1" echo *

You will see ERRORLEVEL always reporting a previous line result, not "find" result of its own line.

The solution is put IF in a line below the command we wanna test, but this complicates much our scripts, and in some cases when we have to nest IFs depending on testing different command results, this is VERY complicated.
For example: dir|find "x.$$$" &if  "%errorlevel%"=="1" (xcopy x.$$$ %windir%\deploy &if  not "%errorlevel%"=="0" goto ERRSTP)

In the case of ERRORLEVEL, we use it in SEVERAL (many, really) scripts in our deployment routines. A simple revision in CMD processing of this variable (evaluate last command result in same line) would save us time in debugging BATs and CMDs, enhance legibility of scripts (more structured) and reduce their sizes.

I believe this would not affect compatibility, as we believe the current behavior is a wrong one and we have to "deal" with it in scripts (put IFs in a subsequent line to test previous issued command); if behavior changes, scripts would be unaffected in their current logic, due IFs are in subsequent line of a command, but tons of new scripts could be written using the new behavior.

SECOND:

If you call some .CMD from UI, %0 is auto-appended double quotes. If you call it from prompt, this not occurs. For example, if a file Z.cmd just one line: echo %0 & pause

Call Z.cmd from UI and after from prompt...

As we does not know how some of staff call our setup scripts, we ALWAYS have to test %0 in CMDs for presence of "" (this is hard work, believe), then proceed to the rest of script.

We'd wishing auto-"" from UI not happening in Vista, but... you guess it. If you could change we would appreciate TOO much :-)

THIRD:

We would like CMD environment variables "delayed expansion" be on BY DEFULT (not have to change registry/reboot to do that).

LAST:

I know this is an "old stuff" post, but we would like to get the opportunity of participate in a new windows version build, to correct some "little things" since NT times that were not productive. This might be the right time.

Ratio determined from another dimension?

Can it be done and is it a normal practice to calculate a ratio based on another dimension's hierarchy?


I have a portfolio hierarchy/dimension which from a business perspective is used in many calculations.  Other dimensions such as "Rating", "Issuer", and many risk characteristics are compared to it (i.e. % of "A" rated bonds in a given portfolio).  In my calculated field I am planning to take the market value of the "A" rated bonds and divide it by the Market Value of the portfolio even though "Portfolio" and "Rating" are different dimensions.  I am trying to make sure that I am going down the right path.  Many examples just show ratios based on a different level in the same hierarchy.

Feature or Bug?

Service Broker will let you create two services with the same name (one with contract and another without)

CREATE SERVICE [Order Msg Recieve] AUTHORIZATION [dbo] ON QUEUE [dbo].[Order Return Msg Queue]

CREATE SERVICE [Order Msg Receive] AUTHORIZATION [dbo] ON QUEUE [ODS].[Order Return Msg Queue] ([OrderSubmission])

When you delete the service....

drop service [Order Msg Recieve]

It will only drop the first one.  In the BOL there is no syntax for telling it to delete the second one, however you can drop it from SQL Management Studio.

I stumbled over this by accident.   Just FYI

Gary

 


Reply:

Neither feature nor a bug. Typo. One service is named 'Receive', one is named 'Recieve'. Note the 'cei' vs. 'cie'.

HTH,
~ Remus


------------------------------------

no need

i dont see a need for a cd-key on a free-ware product. im sorry but i think it was a stupid idea tp put the cd key on it in the first place. if they wanted money from it, i can see why. but it's free ware people. why should they care

Reply:

Hi,

First of all, Vista is not a freeware. The beta2 avaliable from MS is a retail product preview version. So, using CD-Key is normal for a retail products.

Besides, MS want to control the number of install of the beta2. That's why a CD-Key was required.


------------------------------------
Reply:

A more accurate way of putting it - Vista is NOT freeware. The idea behind a beta release is to let people test a product for you. In RETURN for the free use of the software, they test and report back any flaws, bugs or issues they might come across so they get fixed.

Secondly... Ok. Let's say they leave the product key part out of the beta. Now, let's flash forward to say a cold day in January. The big day's finally come. Vista will be released to the masses. So, you bop on down to your favorite software vendor and stand in line (ok.. Maybe that's a bit of wishful thinking. But then again, it never hurts to think BIG!) and you finally get to the front of the line and plunk down your duckets and make a mad beeline home.

You pop the DVD into your computer's drive and proceed to boot from the DVD. (Now, of course, you've been preparing this computer for weeks - backing everything up should something go horribly wrong. Right?) So the Vista DVD spins up and starts loading Vista's basics. It checks out your hardware and starts loading drivers. The GUI pops up and asks you for your product key.

So you find the product key on the package and type it in and click Next. Now, instead of getting the next screen, the program starts complaining that the product key you supplied is invalid. Whoops.

You check it again, you type in in over again, thinking you might have made a mistake (that 8 looks an awful lot like it might be a B or the 0 looks like an O...) Still no joy.

You call Microsoft. Only you get a busy signal for the next couple of days - because other people's product keys are also marked as invalid and the line's jammed. DOH!

Rule #1 in any testing regimen - TEST EVERYTHING! No matter how trivial something might be, if there's a chance it will blow chunks and cause problems - it will. Better for something to blow up on you during a beta phase than on opening day.

 


------------------------------------
Reply:
agree!

------------------------------------

Welcome!

Welcome to the new Windows Server Failover Clustering newsgroup!

You will notice I called it "Failover Clustering", because that's the new name for the feature which you previously knew in Windows 2000 Server and Windows Server 2003 as "Server Clustering" or in Windows NT 4.0 as the Microsoft Cluster Service (MSCS).  Longhorn is bringing some exciting changes for Failover Clustering, and this is going to be our biggest release ever!

First off you will notice the look and feel of clustering is brand new.  Our Cluster Administrator management tool has been rewritten and is task oriented.  Many things in Longhorn Failover Clustering are completely new, from the way storage is managed, to the way nodes communicate with each other, the security model, to the way you administer one.  If you want an overview of all the features coming, here's a link to a WebCast that will give you more information:

http://msevents.microsoft.com/CUI/WebCastEventDetails.aspx?EventID=1032271683&Culture=en-US

Failover Clustering is in Beta 2 and is ready for you to start trying out.  So please, install it, try it out, and post what you think here.  We are very interested in your feedback!


Thanks!!

Elden Christensen

Program Manager

Windows Failover Cluster Group

Microsoft Enterprise Server Products

 

Of course, this posting wouldn't be complete without a nice, juicy disclaimer from our lawyers: This posting is provided "AS IS" with no warranties, and confers no rights. You assume all risk for your use. © 2006 Microsoft Corporation. All rights reserved.  http://www.microsoft.com/info/cpyright.htm 

DM Graphs

I'm having the same issue. It's different depending on the algorithm. For example, in Mining Model Viewer, if I have a tree displayed and I right click on the tree, I get the options to "Copy Graph View," and "Copy Entire Graph." Those options will allow me to paste the tree graph into a Word doc. But if I'm in Cluster Analysis, I only get "Copy" when I right click on the chart. If I select it, and try to paste it into a Word doc, I get a table instead. I just assumed that the software wasn't finished yet and you couldn't copy those charts. But maybe it's a bug? I'm using SQL server standard edition on my desktop, single CPU.

Reply:

That's the design of the copy functionality.

The graphical views copy as bitmaps and the tabular views copy as tables.  There's a fine distinction between what's "graphical" and what's a "table" - essentially anything that looks "table-like" is a table, otherwise it's graphical.

The intention is that the graphics can easily be created from the table data.  For example, if you download the Office 2007 beta and paste in what you copy from the Cluster Characteristics view, you can use the databars feature in Excel 2007 to easily create a facsimile of the Cluster Characteristics view.

For some views, notably the Cluster Overview view, the format of the table isn't very useful.  This is fixed in SP2, which will release later this year. 


------------------------------------
Reply:
Can we use the tabular data, say from Cluster, in Excel 2003 to recreate the "graphic" from Cluster analysis?

------------------------------------

Error 80070241 Solution

Hi all,

To Get around this error,

i used the system recovery in the vista setup screen, Open up Two Command Line Panels goto your DVD Rom Drive For Example D:\

then go cd source Directory Note: This is where setup files are and the install.wim file is located which is causing the issue maybe due to its 3GB big

ok inside the other command line panel goto your C:\ and create a folder called vista

now back to your other Command line pannel at your dvd rom drive type xcopy /E /T *.* c:\Vista [Note: this will copy all the files from your dvd to that folder even including subdirectorys this will take aprox 10 - 15 mins+ depending on the speed of the dvd rom

once its complete goto your c:\Vista\Source directory and type attrib -r *.*

then run setup.exe within c:\vista\source .. this will bypass that error you will no longer reciveve due to all the install files are running off c:

 


Reply:
 Anthony Bell wrote:

Hi all,

To Get around this error,

i used the system recovery in the vista setup screen, Open up Two Command Line Panels goto your DVD Rom Drive For Example D:\

then go cd source Directory Note: This is where setup files are and the install.wim file is located which is causing the issue maybe due to its 3GB big

ok inside the other command line panel goto your C:\ and create a folder called vista

now back to your other Command line pannel at your dvd rom drive type xcopy /E /T *.* c:\Vista [Note: this will copy all the files from your dvd to that folder even including subdirectorys this will take aprox 10 - 15 mins+ depending on the speed of the dvd rom

once its complete goto your c:\Vista\Source directory and type attrib -r *.*

then run setup.exe within c:\vista\source .. this will bypass that error you will no longer reciveve due to all the install files are running off c:

 

Not to rain on the parade, but I attempted this before and it did not get around the issue for me.  I still got the 80070241 error.


------------------------------------
Reply:
Talk about raining on your parade, Ive tried the same with the same error.  over and over on two seperate computers to no avail. So now what?

------------------------------------
Reply:

now back to your other Command line pannel at your dvd rom drive type xcopy /E /T *.* c:\Vista [Note: this will copy all the files from your dvd to that folder even including subdirectorys this will take aprox 10 - 15 mins+ depending on the speed of the dvd rom

once its complete goto your c:\Vista\Source directory and type attrib -r *.*

_____________________________________

In the command line, for copy all files, launch first:

xcopy /E /T *.* c:\vista

and after:

xcopy /E /H *.* c:\vista

 for last launch the command:

ATTRIB -R C:VISTA\*.* /S

the copy is correctly complete!

bye guys ,:)

 

monverdark

 


------------------------------------
Reply:

/T specifies to copy directory structure only without copying files.

I think xcopy with /E /H /Y will work better ?

 


------------------------------------
Reply:

is best use first the /T parameter to keep directory structure, secondarily with /H for copying files.

/Y is only if you have copied file and/or directory previously and you want overwrite without the confirm question.

 

bye ,:)


------------------------------------
Reply:

I had this problem on all of my machines ranging from p4 1.6 (northwood) on a gigabyte 8IRX with 1Gb DDR to my P4 2.8 (prescott) on a gigabyte 8IPE1000 Pro with 1Gb DDR.

This workaround allowed me to finally install!

Thanks.


------------------------------------
Reply:
I'm happy for having helped you and the other people whom they will read this post ,:)

------------------------------------
Reply:
Didn't work here...

------------------------------------
Reply:
How do I get to the command line to type that?  Vista already formated my computer.  But how to I xcopy the disc to my drive?

------------------------------------
Reply:
so for us struggling to install this Vista beta 2... if we follow those instructions we have to use the installer to get it to install because this copying method doesnt edit the boot file with the OS list... am i correct?

------------------------------------
Reply:
All this method does is skip the "Copying Files" portion of the installer for you, which seems to be where most peoples problem is.

------------------------------------
Reply:
Surely if the ISO is corrupt, the ISO is corrupt! and no amount of CMD stuff is going to fix it. It's a pity that half of the BETA debugging comes down to downloading an ISO. It would be a nightmare for this to happen to the home user having paid $x. I wonder if it will be available as a download? At any rate a segmented download would be useful, ie 5 cd size ISO's... or a utility which checks the integrity of the download and re downloads that portion only... 'cos it is a pain in the neck, and Russian roulette as to whther you get 5% or 95%. I am still trying new downloads 'cos I am pretty curious.

------------------------------------
Reply:
seems to be that way

------------------------------------
Reply:

Hi,

I make everything that you say but when I run the setup.exe.

I get this error Setup was unable to find windows end user license Agreement, please ensure that you are runing setup from valid installation media.

Now what can I do or what I make wrong.


------------------------------------
Reply:

HI

PLZ GIVE ME PROPER SOLUTION OF ERROR 80070241

I COUND NOT GET THE SOLUTION OF Anthony Bell .

NOW WHAT TO DO?

Anthony Bell  CAN PLZ DISCRIBE YOUR SOLUTION.

I CAN'T UNDERSTAND.

PLZ EMAIL ME MY ID IS BELOW

hardiksoni1234@gmail.com


------------------------------------

example setting up of semi-additive measure in a cube for ssas 2005

Is there an example of setting up a semi-additive measure for SSAS 2005.  I've seen some for 2000 but hear that 2005 has great support for them.


Additionally I have heard of "built in balances" which might apply to my situation.  Does anybody know of any articles on the subject?

 

smooth move

WOW nice screw up on the talentless programmers part. they put soo much work into this product. why do they need to secure it with a cd-key. im sure if it was to say what your current cd key is, if you have XP or something. WE'VE DOWNLOADED THIS CD YOU IDIOTS, SMOOTH MOVE. makes me feel like an idiot for spending the time to download this.

Reply:

 Hi Patrick,

 Most product to install on a pc require a product key to unlock them, once they are on your system. I don't think that could be blamed on the programmers, but rather, on modern technology.  Is there a certian problem you are experiancing?  I don't think bashing the programers with names will solve your problem. But if you can post the problem you are experiancing, I am sure the forum participants would be more than happy to help.


------------------------------------
Reply:

Well Patrick...

What can I say... Vista is not FREEWARE. Vista is a BETA product. Meaning, it's not quite perfect as yet. And as it is a BETA product, one of the things that people who are taking part of the beta program do is TEST the product. That means FULLY testing everything.

That includes the installation routines.

That includes the routines that revolve around the CD Key.

That includes activation.

Just think for a minute if Microsoft didn't include the CD Key bit in the Vista Beta. So there you are, you've tested Vista, you've played with it and it's now expired. So you bop on down to your local computer shop and buy the full upgrade. You insert the DVD and it wants your CD Key.

Only the CD Key doesn't work. The program freezes or rejcts the CD Key. Mind you, it's a legit key. Microsoft's tech support (that is, when you actually do get ahold of them since they're swamped with tech calls from everyone else who's bought a copy and can't get it to work for the same reason) has confirmed it's a legitimate key. 

So now what? Gee, ya think it might have been better to beta test it first?

So... While you may feel like an idiot for downloading the file without getting the CD key first, your posts only confirm it.


------------------------------------
Reply:

Hi Patrick,

It sounds like you aren't part of the Beta program, but the bits were readily available, you downloaded them with good intentions and then couldn't get them to install. That is a frustrating position that many folks on the forum are complaining about. I've already posted a link for folks who are part of the Beta to mail to get correct keys. I will now research and respond back on a generic thread with what I find out for folks in your spot, and why we did it this way in the first place. It has been confusing for a number of folks.

Thanks, Shawn


------------------------------------
Reply:

Hi Patrick,

Please see my threads "I Have Vista Product Keys" and "I Need Vista Product Keys".

Thanks, Shawn


------------------------------------

How to define time-dimension in SQL Server Analysis Services 2005

I have following database structure.

Fact Table Name : Tests

KeyDateTime (PK)  (datetime field type)

UnitId (PK)

EmissionTestCost (Measure)

VIN (Attribute)

 

Dimension Table Name: Vehicles

VIN

Plate

ModelYear

ModelName

 

I want to define time dimension. but i don't know how i do this? Tests.KeyDateTime have Date and Time part.

Windows Explorer Request: Drag & Drop comfirmation prompt

Hi,

Could an option PLEASE be added to Windows Explorer to display a confirmation prompt before the completion of a drag & drop operation? There are many people on web-forums looking for this functionality!

For the umpteenth time we have just had a case this week of a folder mysteriously disappearing because someone accidentally moved a folder. I don't blame the person who did it, I've done it myself. It is simply too easy to move a folder with a slip of a mouse button, and not even notice it happened!

I could not find a Microsoft Windows suggestions webpage, so figured this forum is the most appropriate. So can I also make a suggestion for a Windows suggestions page?

Thankyou

Installation comments

Windows Vista installed first time. That's good.

I burned my own DVD image at lower speed than maximum (8x) of my DVD recorder: 4x.

This is day 2 of use and so far I have a couple of comments about the installation:

- First, I live in Argentina. In one of the first setup screens it asks you to enter your location, so I chose: Spanish(Argentina). Now this is the thing: Here in Argentina, the computer dealers brought different kinds of keyboards: The three more common ones are US, Latin American and Spanish. Windows Vista Setup allows me to choose the first two, but Spanish keyboard has to be chosen after installation in the Control Panel. It would be nice to be able to choose another kind of keyboard layout during setup (how about an option <Other>) .

- I had spent some time trying to configure the network, since I am using a virtual machine to test Windows Vista and found out some comments in the help guide of the virtual machine software to make it work.

- One other point is that when the machine is put to sleep: When I resume there is no network connection. I have to restart Windows Vista to make the network connection available.

 

For now, that's all

Daniel.Ziukas

Argentina

managing ssis behind a firewall

Just a comment for people who are experiencing problems.

We are managing our ssis servers from a subnet that is blocked off from our production network via a firewall as I'm sure many people do.  The problem we were facing was that when we tried to connect to an ssis instance we could get to dcom through port 135 which BOL states should be open.  What BOL does not say is that dcom then arbitrarily assigns a high numbered port for the management interface to connect to.  This was not very desirable since we would have had to open a gaping hole in our firewall.

The solution we have come up with is in windows 2003 you can map a static port to a com server through a registry key.

First you must find the applicationid (guid) of MsDtsServer in the HKEY_CLASSES_ROOT\AppID\ registry hive.  From what I can tell this is always {F38B7F09-979B-4241-80D9-2EADED02954F}.

You then need to specify a new REG_MULTI_SZ value named Endpoints with the value of ncacn_ip_tcp,0,<port number>.  You can only set one port, not a range.

Now you should be able to restart SSIS and connect through the port you specified (you still need port 135 for dcom though).

The specific process is detailed in more in http://support.microsoft.com/default.aspx?scid=kb;en-us;Q312960

 

Let me know what you guys think, we haven't put this through the testing gauntlet yet  

Link attribute to hierarchy level -- MDX script doesn't work

I created a calculated measure based hierarchy level but that MDX Script doesn't work for any attributes from that dimension.

I have measure [accounts sold 1case] as

Count( Filter

(([Regular Cases] * descendants([Customers].[Customer Hierarchy].currentmember,

[Customers].[Customer Hierarchy].[Customer], self)),

[Regular Cases] > 1

) ,excludeEmpty)

Please help me how I can set a reference on [Customers].[Chain Name] to [Customers].[Customer Hierarchy].[Chain Name]

 

Any guidance would be appreciated, Baagi

New SSIS Mini-Webcasts

You may be interested in a number of videos that are posted on SSIS here for free. There is one on getting started, checkpoints, the data flow and the script transform.

http://www.jumpstarttv.com/Channel.aspx?cat=c871236d-8554-42e3-8683-4d422356c0bd

Brian

HTML 3.2 Rendering

Hello RS users,

As you may know, the HTML 3.2 rendering extension is a deprecated feature in Reporting Services 2005:

http://msdn2.microsoft.com/en-us/library/ms143509.aspx

In the next major release of Reporting Services, we will likely remove
support for this old HTML standard from the product.  Do any of you use the
HTML 3.2 renderer today?  If so, how and why?  If you will be impacted by
this decision, I want to hear from you.  Please email me if you have any feedback.  You can get my email address from my profile page, but please remove the "online" part before sending.

Thanks,
Chris
Program Manager
SQL Server Reporting Services

Setup is Split Across Multiple CDs

Setup is Split Across Multiple CDs Lately I've seen a bunch of people hitting installation errors that have to do with the fact th...