Dynamics AX 2012 installing error - sql

I'm trying to install Dynamics AX 2012 on Windows Server 2012 R2 and I have problem when install Application Object Server (AOS) as below.
I'm using SQL Server 2016.
Please help me out if you have any solution.
Thank you.
An error occurred during setup of Application Object Server (AOS)
MicrosoftDynamicsAX at port 2712. The following error/warning
occurred:Cannot find the object 'UTILIDELEMENTS', because it does not
exist or you do not have permission. Cannot find the object
'UTILELEMENTS', because it does not exist or you do not have
permission. Cannot find the object 'UTILMODELS', because it does not
exist or you do not have permission.

As per Microsoft Dynamics AX 2012 System Requirements you have to slipstream your installation with CU9.

Related

Installing SSIS Services on existing SQL Server 2008 R2 SP2

I found out when creating SSIS packages that I need to have this SSIS Service installed in order to schedule them from SQL Server Agent. So with that said I've been trying all over to figure out how to get this service installed without wiping my existing instance.
I've been all over online and no one seems to have the same issues that I'm having or their resolutions aren't helping me out. Here's what I do so far and the wall that I'm hitting:
I go to Start/All Programs/Microsoft SQL Server 2008 R2/Configuration Tools/SQL Server Installation Center (64-bit)
When the console opens I click on Installation and then "New installation or add features to an existing installation"
I then get a pop up that says to "brows for SQL server 2008 R2 Installation media so I point it to my Desktop where the file "SQLManagementStudio_x64_ENU.exe" resides and I get an error that says that my desktop "is not a valid installation folder"
Please help me figure this out, I've been racking my brains for days! The only solutions I've found online for this error are to completely uninstall everything and re-install and that's just not an option.
----- edit -----
I have looked at another link within stack overflow that "may" address my problem.
Add SSIS to existing SQL Server instance
It says that I have to get my hands on the "installation media folder" or download it from Microsoft's website. I can't however find anything on their website besides the "SQLManagementStudio_x64_ENU.exe" file that I was referring to later.
----- edit 2 -----
When I try to just use SQLManagementStudio_x64_ENU.exe I get to the point where I select my instance and get this 'instance id required but missing' error. Here's a screenshot
Don't go via Start/All Programs/Microsoft SQL Server 2008 R2/Configuration Tools/SQL Server Installation Center (64-bit).
Go directly to your installation media "SQLManagementStudio_x64_ENU.exe" file, and run it. It will open same panel, that installation center does, but it will not ask for any installation media, and will take you directly to next step.
Hope you go through successfully.
P.S.: You can't update SQL Server 2008R2 installation with SQL 2008 setup files.

Can't attach database to SQL Server 2012 reason not found .log

I am trying to attach the AdventureWorks2012_Data.mdf database file to my SQL Server 2012 database.
I am getting this error:
TITLE: Microsoft SQL Server Management Studio
Attach database failed for Server 'USER-PC'. (Microsoft.SqlServer.Smo)
For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=11.0.3000.0+((SQL11_PCU_Main).121019-1322+)&EvtSrc=Microsoft.SqlServer.Management.Smo.ExceptionTemplates.FailedOperationExceptionText&EvtID=Attach+database+Server&LinkId=20476
ADDITIONAL INFORMATION:
An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.ConnectionInfo)
Unable to open the physical file "C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\AdventureWorksDW2012_log.ldf". Operating system error 2: "2(failed to retrieve text for this error. Reason: 15105)". (Microsoft SQL Server, Error: 5120)
Maybe the message is clear that I don't have the .log file and yes I don't have it. But is it necessary to have it? Or is there is another thing? How can I solve that please?
This is a common error that anyone could encounter when you don't have any *.LDF log file for your database, like the AdventureWorks database. SQL Server complains about the *.LDF log file (typically associated to a database *.MDF file) that is missing.
Execute the following T-SQL query to attach the database considering only the *.MDF file:
USE [master]
GO
CREATE DATABASE [AdventureWorksDW2012] ON
( FILENAME = N'C:\Users\User\Desktop\ARPAD\AdventureWorks2012_Data.mdf' )
FOR ATTACH
GO
or remove the connection to the *.LDF log file (a new *.LDF file will be created for the database) through SQL Server Management Studio as shown in the screenshot below:
UPDATE
You get the error:
The database 'AdventureWorksDW2012' cannot be opened because it is version 706. This server supports version 661 and earlier. A downgrade path is not supported. Could not open new database 'AdventureWorksDW2012'. CREATE DATABASE is aborted. (Microsoft SQL Server, Error: 948)
because you're trying to attach a SQL Server 2012 (version 706) database file to SQL Server 2008 istance (version 661). For this reason, you cannot perform this downgrade. Download the AdventureWorks2008 database for your SQL Server 2008 istance instead, or upgrade your SQL Server istance with the latest version.
The version of your SQL Server istance is indeed SQL Server 2008: Microsoft SQL Server 2008 R2 (RTM) - 10.50.1617.0 (X64) Apr 22 2011 19:23:43 Copyright (c) Microsoft Corporation Express Edition with Advanced Services (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1).
Download and install SQL Server 2012 Express to solve the problem.
The key is this line (edited for clarity):
Unable to open the physical file
"C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\AdventureWorksDW2012_log.ldf".
Operating system error 2:
"2(failed to retrieve text for this error. Reason: 15105)".
(Microsoft SQL Server, Error: 5120)
According to this page, operating system error 2 is "File Not Found". Based on this, I would guess that either, A) the file is not there , or B) the name or path is misspelled.
(I'm too slow the answer above is what I'm talking about)
FYI This answer assumes your using the attach a database dialog.
Make sure you've told sql manager where the ldf file is too. It will fill in an entry for a log even if you aren't attaching the log with the mdf.
You'll see it in the box below the one with the add button. You can just remove the log from the attach if you don't have it. Sql will make a new log and you can move merrily along the way.

Report manager for SSRS 2005 not opening

I have an issue while opening Report Manager for SSRS reports built in BIDS 2005.
Virtual directories named ReportServer and Reports get created on IIS for reportserver and report manager respectively. But when ReportServer directory is browsed in IIS, an error occurs saying:
'An internal error occurred on the report server. See the error log for more details. (rsInternalError) Get Online Help
Object reference not set to an instance of an object'
Tried reading the event log but could not make out anything from it.
I Restarted IIS and then Reporting services, Checked if the user has admin rights and it does have. But still the problem persists.
Please let me know what could be the possible checks....
Note : I am using Windows Server 2003, IIS 6.0 and SQL Server 2005
Try the SSRS log files for more clues, they will be located around here (varies depending on your versions and configurations):
C:\Program Files (x86)\Microsoft SQL Server\MSRS10_50.SQLEXPRESS\Reporting Services\LogFiles
There are some very detailed messages. Open them in a text editor.

sharepoint error current simulation title not found

i have installed sharepoint server envirement on my 2008 windows server.
i also configured a web application and created a site collection on http:/myserver/mysite
when i try to access these address i have this error which i cannot fix :(
*Error
The resource object with key 'current_simulation_title' was not found.
Troubleshoot issues with Microsoft SharePoint Foundation.
Correlation ID: 907ae95c-b96e-462b-9d11-74646938990e
Date and Time: 3/18/2013 12:40:10 PM*
PS: The sp central administration is located on http:/myserver:40000/
Thanks in advance for your help
The meaning of this error is that, Sharepoint cannot find the Resource key "current_simulation_title" , did u created any resource file and uploaded in sharepoint 14 hive?

Extensions for Sharepoint Products in TFS 2010 issue

Good day, first i have to say that i'm mexican so, excuse my not so good english.
Well, i have an error that i don't found the solution, i have already installed my TFS 2010 in a server with Windows Server 2008 R2, in another server with the same OS i have Sharepoint 2010, so i want to connect TFS to my sharepoint, when i try to configure "Extensions for SharePoint Products" at start the wizard i receive an error:
"TF254051: The verification process found one or more errors. Before you can continue, these errors must be fixed. For more information about these errors see the log file."
and i cannot configure the extension.
I searched in the net without any good result..
Thnx for read me
Check link:
http://blog.hinshelwood.com/integrate-sharepoint-2010-with-team-foundation-server-2010/
Please post error from latest file on TFS server C:\ProgramData\Microsoft\Team Foundation\Server Configuration\Logs