Issue regarding SSAS features while trying to process a cube in BIDS - ssas

I recently adventured into BI and am currently trying to process a cube onto the ssas (by using a BIDS SASS project). I originally had the SQL 20008 R2 Standard version and therefore got the following error:
"Errors related to feature availability and configuration: The 'Perspectives' feature is not included in the '64 Bit Standard' edition of Analysis Services"
So...i downloaded the Enterprise version of SQL 2008 R2, upgraded my whole instance, restarted and proceeded to try again. STILL i got the same issue over again...
What could i do to fix this?
Thanks in advance!

The issues with Enterprise version.Use the Standard version.
Keep one thing in your mind give sysadmin permissions to NT AUTHORITY\NETWORK SERVICE
Thanks

Try restarting the SQL SERVER ,SQL SERVER ANALYSIS SERVICES from Services.msc . I got it resolved the same issue by doing this.

Related

How to add SQL Server Analysis Services instance?

I have installed SQL Server with SQL Server management, but when I want to go to the Analysis server instance, there is no one.
I checked the SQL Server management but there is no Analysis Services process to enable.
I went to the SQL Server 2019 setup to add the Analysis server feature but it's not showing to install.
What can I do?
Solved.
I had to do a clean install.
The screen shot in this link shows "Analysis services"
But, since it is missing for you, I am guessing, you have selected an different edition of SQL Server 2019 setup (Web edition, may be ?).
If you using it as Developer, try the developer edition of SQL 2019 setup.
https://www.microsoft.com/en-us/sql-server/sql-server-downloads

Deploy SQL Database to MS Azure Storage - Error: 40804 [duplicate]

I'm trying to move my databases to a newer Azure subscription. I used to simply click "Deploy to Azure" on a local database from SSMS and have it deployed to a specified Azure server. Importing/Exporting a BACPAC file also works. However, I can't seem to do any of this on the new server. I keep getting the error:
"The service objective 'Web' specified is invalid."
Googling around, I found this thread explaining the need to update the CREATE DATABASE template to accommodate Azure Databases (Azure upgrade, I'm guessing). However, the hotfix provided is specifically for SQL Server 2014 and I'm using SQL Server 2012. I checked other cumulative updates for 2012 here but found no fix for the issue.
Is there any other way I can fix this without having to upgrade to 2014?
Just to summarize my software versions:
SQL Server 2012
SQL Management Studio 11.0.2100.60
Local database: SQL Server 10.50.16000
Old Azure server: SQL Server 11.0.9230
New Azure server: SQL Server 13.0.15
You are getting this error because the latest V12 servers are not supporting the Web and Business Editions anymore. If you don't want to upgrade to SSMS 2014, you can create a V11 server and import your DB on this server. However this is only a temporary solution as Web and Business edition databases will be retired in September. At this point you will have to work with the latest tools to avoid this problem.
There is a Hotfix for it you can download and install on your machine. Please navigate to:
https://support.microsoft.com/en-gb/kb/2936603
You need to enter your email then download link will be sent to your email address. Then install it on your machine and you can see the following options:
Install the database as a Data Project into Visual Studio,
Set the target framework in the properties window to SQL Azure,
Build the project and resolve any unsupported issues.
Publish to your azure site.
I have tried the above and did not work for me - this solution worked!

SQL Server 2014 - No services installed in SQL Configuration Manager

I have Installed Microsoft® SQL Server® 2014 Express , but I can't find SQL Server Services to run it in the "SQL Server Configuration Manager", so I can't connect to SQL server.
It's a problem because when I launch Sql Server Management Studio and that I try to connect me on the database server with server name "(local)", "localhost", "SQLEXPRESS",(local)/SQLEXPRESS, it doesn't work
I've seen in services.msc and I saw "SQL Server VSS Writer" launched automatically.
Do you have a solution ?
Thank you
If you download from http://www.microsoft.com/en-us/download/details.aspx?id=42299, make sure use SQLEXPRADV_x86_ENU.exe or SQLEXPR_x86_ENU.exe. SQLManagementStudio_x86_FRA.exe does not contains database engine.
I want to think that I had the same issue. When this happened to me, I went to the Configuration Manager only to learn that I had no Services whatsoever. I solved it by installing the SQL Server Express with with Advanced Services version from Microsoft.
I don't know whether you do need all its functionality, though. But what I do know is that it will solve your issue.
The problem is actually, I am pretty sure, that you have installed the Management Studio, not the Database Engine itself. You have to install the Database Engine. The response #Edward gave will lead you to the Database Engine for SQL Server Express 2014, that will do the trick.
I hope this helps to clarify what the problem was.

Can SQL 2008 R2 and a SQL express installation coexist on same machine without problems?

I have SQL 2008 R2 on my computer and it works fine with the database. If I install Visual Web Developer 2010 express it says I have to install SQL Express , per it is a dependency. I would prefer to only install web developer.
Will an express installation effect my current installation's operation at all?
Yes they can coexist as they will be installed as separate services - see this forum post
Officially, they can coexist.
Unofficially, my experience with a joint installation is painful. SQL Server patches would fail mysteriously on machines with a joint install. Sometimes you could find fix information in a KB article, sometimes not. Sometimes reinstalling SQL Server worked, sometimes an OS reinstall was required.
You can take the risk on a development server, but I wouldn't do this in production.

SQL Server 2005 Reporting Services (x64) on Windows 2K8 -> CleanCurrentUserName() not found

I have installed SQL Server 2005 three times now on the same box. I cleaned up registry settings, files, you name it.
All along I have been trying to install SQL Server 2005 Database and Reporting Services (x64) on a Windows 2008 Server. I have also applied the SP3 patch. Installing and Restarting the Server at every point. Verified that the installation was 64bit. ASP.NET and IIS7 are both running under 64bit.
Also, I have installed multiple instances (SQLDEV64, SQLQA64, SQLSTAGE64) of the Database and Reporting Services.
I started to go through the Reporting Services Configuration manager, installing the Reporting Database along with setting up IIS. When I go test the website I get the following error and there lies my question. How can I get around this error?
http://localhost/reportserver
Reporting Services Error
--------------------------------------------------------------------------------
An internal error occurred on the report server. See the error log for more details. (rsInternalError)
Method not found: 'Void Microsoft.ReportingServices.Diagnostics.UserUtil.CleanCurrentUserName()'.
--------------------------------------------------------------------------------
SQL Server Reporting Services
Any help would be greatly appreciated.
I found the solution to my issue by pure chance. It looks like the SP3 upgrade only upgraded the last reporting services instance that was installed. So I had to manually copy the files under:
C:\Program Files\Microsoft SQL Server\MSSQL.9\Reporting Services\ReportServer
to the other instances. This seemed to fix the missing reference issue. I work with Microsoft products and defend them every day, but some of their developer tool install files are just wonky and ill packaged.