After deployment of ssas tabular cube,I could not see any Object under any folder. can you please help me with this - ssas-tabular

I created the SSAS Tabular Data Model Solution in VS 2019 and Deployed that in SSAS 2017 Analysis services. After deployment I could not see any Object under any folder. can you please help me with this.
enter image description here

In VS 2019, open Model.bim and click on a table in the model viewer. Then select Project > Your_Model Properties (This is the last option in the Project menu). Under Deployment Server, validate the server and database names. I also recommend changing Processing Option from Default to Full under Deployment Options if your model processes quickly.
To deploy, use either of two the Deploy options under the Build menu. You should get a message after the model has deployed, or error messages under View > Error List.
If this does not resolve your issue, please show a picture of your model from the Tabular Model Explorer in VS and the message you get after deploying.

Related

Create new team project with custom process is failing

Im unable to create a new team project with the custom process as it is failing with "Project creation operation failed". But the new project creation works fine with any existing process template(i.e., Agile, Basic e.t.c.,)
The steps i followed to create a new process template
Export Agile process template
Edited ProcessTemplate.xml with new name, version and GUID. No other changes done.
Saved the file and created a zip folder.
Uploaded it in TFS under "Upload process template".
While uploading showed the below warning, have clicked continue ignoring the warning
[![enter image description here][1]][1]
The upload is successful and can see my new process listed.
Selecting the new process template and create new project is failing with the below error.
[![enter image description here][2]][2]
As the error doesnt have much info , im not sure what is missing. As i have downloaded a teplate and just changed name,version and GUID. Any help on this regards will be very helpful. Thanks in advance
[1]: https://i.stack.imgur.com/4m2PI.png
[2]: https://i.stack.imgur.com/P6eyG.png
Below is the solution. My TFS server is on premise and the inherited process is not available. Hence installed TFS process template editor ( https://marketplace.visualstudio.com/items?itemName=KarthikBalasubramanianMSFT.TFSProcessTemplateEditor ). This creates a new sub menu in Tools named process editor. Where i exported the work item. renamed and imported it with desired elements.

Need help on publishing xml report with the plugin parasoft findings in TeamCity

I added a build step for my project in teamcity which consists on using the plugin Parasoft Findings to publish an XML report of all the code violations. the problem is that teamcity is failing to parse XML report. It says there is an unexpected report format and to see log (which I couldn't find).
I already checked the report location pattern which is right. I don't use SOAtest but C++ test so I only put "Parasof analyzers 10.x" for the report type
I'm sorry but you did not provide any additional details regarding your question and it's hard to help you.
Please, provide:
error message
your configuration of build step and version of TeamCity and C++test
command line used to start C++test ( if you are using variables,
replace variables with real values used in your run)
By log I think, you should check your build step log, and provide us the right content.
You can find such logs on two different ways:
You can download it by clicking "Download full build log" on build
log page (Recommended).
Try to find the raw output from the build agent by looking in the
agents logs directory, for example in
c:\TeamCity_dir_agent\logs\teamcity-build.log
Following article from JetBrains' TeamCity manual might good point to start
Edit:
Parasoft updated the plugin which fixed the issue:
https://plugins.jetbrains.com/plugin/9949-parasoft-findings
I have the same issue. Error messages in build log:
Unexpected report format: <path-to>\report.xml. See log for details.
Failed to parse XML report
Failed to parse XML report
Step test results (Parasoft Findings) failed
teamcity-agent.log and teamcity-build.log are having no entries within this build step because there is no piece of code which would write that into during this error case.
Edit/Workaround:
In the report the node <ExecutedTestsDetails> must be below the node <Exec>. The node still has the right indendation but it is at the same level as <Exec>. The xsl of TeamCity Plugin works perfectly if you fix the report xml manually.
To make it work you can add the Build Feature "File Content Replacer" like that:
Regex: (?s)(<ExecutedTestsDetails.*?<\/ExecutedTestsDetails>).*?(<Exec.*?>)
Replace with: $2 $1

Error occurred while starting the build in Openshift 3

I have been trying to deploy a war file as an OpenShift project. The server used is jboss-webserver30-tomcat8. I have followed the below steps -
Put ROOT.war file under 'deployments' directory in local system.
Upload the changes in github.
Create a new JAVA project in OpenShift 3 and provide the github repository details.
No automatic build or deployment starts. On manually clicking on Start Build button, the below error is displayed:
An error occurred while starting the build. Reason: Error resolving
ImageStreamTag jboss-webserver30-tomcat8-openshift:1.2 in namespace
openshift: unable to find latest tagged image
Please suggest how can I resolve the error.
This is an issue with how the jboss-webserver30-tomcat8-openshift imagestream is defined in the cluster. We are working to correct this, it is not currently importing the correct set of tags and as a result the 1.2 tag was stopped being a valid tag, when it should be.
However the short term solution is change your buildconfig to reference one of the tags that has a valid image reference associated (e.g. 1.3) instead of the 1.2 tag it is currently referencing. Your build should then be able to run.
A (temporarily) unavailable builder image may be related to this platform upgrade that correlates with the time of posting your question.
Generally, the best place to check for any incident reports or scheduled maintenance is the Status Page (Starter | Pro clusters; it's linked in the web console too, in the upper right corner of the interface).
If this does not seem to be related (e.g. you're not on the starter-us-west-2 cluster where the platform upgrade is taking place) or persists after the maintenance is over, I would encourage you to check the open issues, and log a new bug report, if it's not in the list.
Thank you.

Update Target Button is disabled in Sql Server Database Schema Comparison

I use Visual Studio 2013 Professional Update 4 in combination with multiple SQL Server 2012 Enterprise servers/instances. The Idea was to create a Version controlled deployment using a Visual Studio Solution with SQL Server Projects.
However for some reason the "Update Target" and "Generate Script" button is disabled.
I can update the local database project from the sql server database but the other way around is not working. (see screenshot)
Google is not helpful at all although I found a few people with a similar problem.
Update target button is disabled after schema comparison
VS2012: Schema compare, update button disabled
VS2012 Schema compare buttons disabled
But none of this questions/blogposts is about Visual Studio 2013 and in addition none of the proposed solutions is working for me.
Question: Why is the Update Target button disabled and what do I have to change to fix this?
Note: Of course, I'm using the latest version of SQL Server Data Tools(12.0.50318.0)
This was driving me nuts, as well. I finally noticed a "warning" message stating "Cannot generate deployment plan due to an internal error". Because of this, the Update and Generate Script buttons were both disabled.
I resolved this by closing Visual Studio, navigating to the folder containing the Database project and removing all (*.dbmdl) files. I then restarted Visual Studio, re-ran the compare schema and the Update button was enabled.
The tip that helped me was to look at the error list. (View Menu, Error List). Once I cleared the errors (just the errors, the ones with the red X) I was able to compare the schema again and the Update and Generate Scripts buttons were both enabled.
Beside the generate script, click on OPTIONS and select only the objects for which you want to compare.
This and ONLY this worked for me.

Error deploying SSRS report to Dynamics AX 2009

I have a very simple Dynamics AX Reporting project with a dataset using the Dynamics AX data source hitting a custom query I created in the AOT. The report builds succesfully in VS2008, and when I attempt to deploy the report, an error is returned "Deployment failed unexpectedly with the message: The following components have not been installed or are not configured correctly: Reporting Extensions". The "Save to AOD" function also returns an "unknown error."
The VS2008 error shows the problem to be on the line referencing the DeployToReportsServerTask in the file:
Microsoft.Dynamics.Framework.Design.Reporting.Modeling.targets
From within AX, using the Reporting servers form (Administration > Setup > Business analysis > Reporting Services > Reporting Servers), the Validate (button) returns a "success" message. Also, I can browse the reports directory on the server and my local PC through IE. My AX client configuration also launches & connects to the correct AOS.
Any ideas as to what may be the problem? Not sure what else I can check.
Thanks in advance!
Is this helpful?
Then login to aos server. Open internet explorer. browse the report server and manager url. If you can
see the dynamics ax folder just try to get inside the folder and browse a single report manually. If you
may able to browse then there is no issue eixt. Just restart the iis on reporting server. If you may not
able to browse then add the particular port to firewall. or disable the firewall. In the mean time just chekc
you may using NTLM authentication or kerberos authentication.
From:
http://daynamicsaxaptatutorials.blogspot.no/2012/03/reports-get-build-up-secussfully-bot.html
Using the Dynamics AX Configuration utility, is the Target "Business connector (non-interactive use only)" set up to point to the correct AOS?
The problem was reporting tools also had to be installed on the AOS server (with the reporting extensions). The reporting tools were only installed on my dev box. Additionally, my deployment process was also not correct. The correct process in my environment is:
1) In VS (on dev box), on the reports library project node in the solution explorer, right click, Save to AOD
2) In AX (on AOS), open report libraries in AOT, find library, right click, deploy (follow prompts).
3) open in IE and run reports.
I had the same error, but I resolved this by using VS in Administrative Mode i.e. Open the VS as Administrator.
Don't know how but it will help me.
HTH
Sachin