Sunday, March 25, 2012
analysis service
I was doing steps on page 15 / 16 of attached sheet
I was doing the microsoft example about cube to setup DSN SOURCE CONNECTION to ACCESS database (food mart) when i do a test it works
but after i do design storage and go to Process the cube
it gives me error
'test connection failed because of an error in initializing provide
(microsoft) ODBC DRIVER manager data source name not found and no default driver specified
one more error found
Microsoft ODBC DRIVER MANAGER driver sql connect attr failed: IMOO6
ThanksOriginally posted by sjumma
Hi
I was doing steps on page 15 / 16 of attached sheet
I was doing the microsoft example about cube to setup DSN SOURCE CONNECTION to ACCESS database (food mart) when i do a test it works
but after i do design storage and go to Process the cube
it gives me error
'test connection failed because of an error in initializing provide
(microsoft) ODBC DRIVER manager data source name not found and no default driver specified
one more error found
Microsoft ODBC DRIVER MANAGER driver sql connect attr failed: IMOO6
Thanks
Ensure you have applied SP3. I'm pretty sure there is an MDAC upgrade.|||Hi
I have already upgraded with the patch but still does not work
Thursday, March 22, 2012
Analysis management object Cubes help
please help me AMO cube making
send me working example of AMO diminsion , cubes
thanks
I think this is what you're asking for:
http://www.codeplex.com/MSFTASProdSamples/Wiki/View.aspx?title=SS2005%21Readme_AMOAdventureWorks&referringTitle=Home
|||Check here:
http://technet.microsoft.com/en-us/library/ms124924.aspx
Regards!
Analysis function
calculations.
Found that it's part of Analysis services.
Is there anyway I can get these fuctions in Standard edition of SQL
Server2000.
If not how can I achevice this .My application connect to SQL Server 2000
Standard edition.
ThanksAbraham,
I have a few examples of using SQL to calculate statistical information at
http://www.users.drew.edu/skass/sql/
The least squares fit example will get your linear regression slope.
SK
"Abraham" <binu_ca@.yahoo.com> wrote in message
news:ukKwkPp4DHA.1428@.TK2MSFTNGP12.phx.gbl...
> I want to use Linear Regression functions -- example :LinRegSlope -- .in
my
> calculations.
> Found that it's part of Analysis services.
> Is there anyway I can get these fuctions in Standard edition of SQL
> Server2000.
> If not how can I achevice this .My application connect to SQL Server 2000
> Standard edition.
> Thanks
>
Analysis function
calculations.
Found that it's part of Analysis services.
Is there anyway I can get these fuctions in Standard edition of SQL
Server2000.
If not how can I achevice this .My application connect to SQL Server 2000
Standard edition.
ThanksAbraham,
I have a few examples of using SQL to calculate statistical information at
http://www.users.drew.edu/skass/sql/
The least squares fit example will get your linear regression slope.
SK
"Abraham" <binu_ca@.yahoo.com> wrote in message
news:ukKwkPp4DHA.1428@.TK2MSFTNGP12.phx.gbl...
quote:
> I want to use Linear Regression functions -- example :LinRegSlope -- .in
my
quote:
> calculations.
> Found that it's part of Analysis services.
> Is there anyway I can get these fuctions in Standard edition of SQL
> Server2000.
> If not how can I achevice this .My application connect to SQL Server 2000
> Standard edition.
> Thanks
>
Saturday, February 25, 2012
An Access OnFormat procedure would be replaced in SQL Reporting Services by what?
In the field, the operators are presented with 5 categories, each category having between 3 and 5 possible selections, for example:
Weather - clear(1), cloudy(2), rain(4) or snow(8).
If the operator selected cloudy and rain, the value of Weather would be 6.
I want to print a report in the office that will list the categories and the available selections for each, putting an "X" next to those selections that were checked by the operators.
In Access, it was easy - I plugged a decode procedure into the OnFormat event...
cnum = obj![WEATHR]
If cnum - 8 >= 0 Then
obj![SNOW] = "X"
cnum = cnum - 8
End If
If cnum - 4 >= 0 Then
obj![RAIN] = "X"
cnum = cnum - 4
End If
If cnum - 2 >= 0 Then
obj![CLOUDY] = "X"
cnum = cnum - 2
End If
If cnum - 1 >= 0 Then
obj![CLEAR] = "X"
End If
Making the change to SQL Reporting Services, I'm clueless...as you can tell, I'm not even sure how to ask the question.
Any help would be greatly appreciated.
There are probably a number of other ways to do this, this is just the first that came to mind.
Add the following on the Code tab of your project (select Report..Report Properties):
Public Function DecodeWeather(ByVal Weather As Integer, ByVal WeatherType As String) As String
DIM cnum AS Integer = Weather
If cnum - 8 >= 0 Then
If WeatherType = "SNOW" Then
Return "X"
Else
cnum = cnum - 8
End If
End If
If cnum - 4 >= 0 Then
If WeatherType = "RAIN" Then
Return "X"
Else
cnum = cnum - 4
End If
End If
If cnum - 2 >= 0 Then
If WeatherType = "CLOUDY" Then
Return "X"
Else
cnum = cnum - 2
End If
End If
If cnum - 1 >= 0 Then
If WeatherType = "CLEAR" Then
Return "X"
End If
End If
End Function
Then add a calculated field to your dataset (on the Layout tab, right click the dataset and choose add) named Snow and add the following to the expression:
=Code.DecodeWeather(Fields!ID.Value, "SNOW")
Repeat for the other fields, passing the appropriate name to the function.
Hope this helps.
|||
Excellent answer!
Thank you.
Sunday, February 19, 2012
AMO - Memory Error !!! PLEASE HELP
-
private void AddTable(Microsoft.AnalysisServices.DataSourceView dsv, OleDbConnection connection, String tableName)
{
OleDbDataAdapter adapter = new OleDbDataAdapter(
"SELECT * FROM [dbo].[" + tableName + "] WHERE 1=0",
connection);
DataTable[] dataTables = adapter.FillSchema(dataSet, SchemaType.Mapped, tableName);
DataTable dataTable = dataTables[0];
dataTable.ExtendedProperties.Add("TableType", "Table");
dataTable.ExtendedProperties.Add("DbSchemaName", "dbo");
dataTable.ExtendedProperties.Add("DbTableName", tableName);
}
-
when i try to create the Dim product calling this function i got this error:
Memory error: While attempting to store a string, a string
was found that was larger than the page size selected. The operation
cannot be completed.
Errors in the OLAP storage engine: An error
occurred while the 'LargePhoto' attribute of the 'DimProduct' dimension
from the 'teste2005' database was being processed.
Errors in the
OLAP storage engine: The process operation ended because the number of
errors encountered during processing reached the defined limit of
allowable errors for the operation.
-
And i know that this functions works well because if i comment the creation of DimProduct, everything works fine, so the problem is with some atributes, like ' LargePhoto' for example,
How can i fix this memory error ?, i read some posts in the forum, but i didn't get a concrete answer,
PLEASE HELP !!!!!This may help:
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=145355&SiteID=1
C
Thursday, February 9, 2012
Alternative to IIF ? Case ?
Need to display a value in a text box based upon perhaps one of four
values a parameter could have. This example is great for two values, = iif(UCASE(Parameters!SUPPID.Value) ="HHH", "Defense & Space", "Defense")
Is there an alternative , case... anything if we need to test for over
parameter values i.e. HHH1, or HHH2.
Many thanks, Steve.Try Switch:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vblr7/html/vafctSwitch.asp
--
Cheers,
'(' Jeff A. Stucker
\
Business Intelligence
www.criadvantage.com
---
"saustin99" <saustin99@.discussions.microsoft.com> wrote in message
news:77DEB13A-6813-415E-A4A2-58190F3A7CF4@.microsoft.com...
> Hi,
> Need to display a value in a text box based upon perhaps one of four
> values a parameter could have. This example is great for two values, => iif(UCASE(Parameters!SUPPID.Value) ="HHH", "Defense & Space", "Defense")
> Is there an alternative , case... anything if we need to test for over
> parameter values i.e. HHH1, or HHH2.
> Many thanks, Steve.|||Report parameters have a Value and a Label property. You could use the Label
property for this purpose.
Regarding alternatives for IIF please check the following MSDN links:
* =Choose(...)
http://msdn.microsoft.com/library/en-us/vblr7/html/vafctchoose.asp
* =Switch(...)
http://msdn.microsoft.com/library/en-us/vblr7/html/vafctswitch.asp
--
This posting is provided "AS IS" with no warranties, and confers no rights.
"saustin99" <saustin99@.discussions.microsoft.com> wrote in message
news:77DEB13A-6813-415E-A4A2-58190F3A7CF4@.microsoft.com...
> Hi,
> Need to display a value in a text box based upon perhaps one of four
> values a parameter could have. This example is great for two values, => iif(UCASE(Parameters!SUPPID.Value) ="HHH", "Defense & Space", "Defense")
> Is there an alternative , case... anything if we need to test for over
> parameter values i.e. HHH1, or HHH2.
> Many thanks, Steve.|||Thank you Robert !
"Robert Bruckner [MSFT]" wrote:
> Report parameters have a Value and a Label property. You could use the Label
> property for this purpose.
> Regarding alternatives for IIF please check the following MSDN links:
> * =Choose(...)
> http://msdn.microsoft.com/library/en-us/vblr7/html/vafctchoose.asp
> * =Switch(...)
> http://msdn.microsoft.com/library/en-us/vblr7/html/vafctswitch.asp
> --
> This posting is provided "AS IS" with no warranties, and confers no rights.
>
> "saustin99" <saustin99@.discussions.microsoft.com> wrote in message
> news:77DEB13A-6813-415E-A4A2-58190F3A7CF4@.microsoft.com...
> > Hi,
> > Need to display a value in a text box based upon perhaps one of four
> > values a parameter could have. This example is great for two values, => > iif(UCASE(Parameters!SUPPID.Value) ="HHH", "Defense & Space", "Defense")
> >
> > Is there an alternative , case... anything if we need to test for over
> > parameter values i.e. HHH1, or HHH2.
> >
> > Many thanks, Steve.
>
>|||Switch rocks !!! Thanks Jeff. Happy New year.
"Jeff A. Stucker" wrote:
> Try Switch:
> http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vblr7/html/vafctSwitch.asp
> --
> Cheers,
> '(' Jeff A. Stucker
> \
> Business Intelligence
> www.criadvantage.com
> ---
> "saustin99" <saustin99@.discussions.microsoft.com> wrote in message
> news:77DEB13A-6813-415E-A4A2-58190F3A7CF4@.microsoft.com...
> > Hi,
> > Need to display a value in a text box based upon perhaps one of four
> > values a parameter could have. This example is great for two values, => > iif(UCASE(Parameters!SUPPID.Value) ="HHH", "Defense & Space", "Defense")
> >
> > Is there an alternative , case... anything if we need to test for over
> > parameter values i.e. HHH1, or HHH2.
> >
> > Many thanks, Steve.
>
>