Click here to Skip to main content
15,889,871 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi,

I have big error, I have crm on one server, sql server on the second, active directory on the third one. When I install crm organization from designer, all works fine.

Now, I try install organization from console:

using (DeploymentServiceClient a = new DeploymentServiceClient("CustomBinding_IDeploymentService1"))
{
//// Set properties for the new organization
Organization organization = new Organization
{
Id = Guid.NewGuid(),
BaseCurrencyCode = "PLN",
BaseCurrencyName = "Złoty",
BaseCurrencyPrecision = 2,
BaseCurrencySymbol = "zł",
BaseLanguageCode = 1045,
FriendlyName = "testOrganizacja46",
SqlCollation = "Polish_CI_AI",
SqlServerName = "DB01",
SrsUrl = "http://DB01/ReportServer", //example
SqmIsEnabled = false,
DatabaseName = "testOrganizacja46",
Version = "1.0.0.0",
State = ConsoleApplication3.ServiceReference1.OrganizationState.Enabled,
UniqueName= "testOrganizacja46"
};

}



And Organization will install, try pending and fail in the end, Database existing. All errors are in database server, in Reporting services I can' see organization folders.

log from database server:

FCB::Open failed: Could not open file D:\Data\testOrganizacja46_MSCRM.mdf for file number 0. OS error: 2(Is no file).

Starting up database '[b8eade733b4e1898a5be5eaf23af28]'.

Report Server (MSSQLSERVER) cannot load the TERADATA extension.

Report Server (MSSQLSERVER) cannot load the SQLPDW extension.

Report Server (MSSQLSERVER) cannot load the TERADATA extension.

Report Server (MSSQLSERVER) cannot load the SQLPDW extension.

FileMgr::StartLogFiles: Operating system error 2(Nie można odnaleźć określonego pliku.) occurred while creating or opening file 'D:\MSSQL\DATA\Mda847bf3121e44d2bbb7bb3a9fd4e881_MSCRM_log.LDF'. Diagnose and correct the operating system error, and retry the operation.

New log file 'G:\Data\testOrganizacja46_MSCRM_log.ldf' was created.

AppDomain 20 (testOrganizacja46_MSCRM.dbo[ddl].19) unloaded.

AppDomain 21 (testOrganizacja46_MSCRM.dbo[ddl].20) unloaded.







other log:

2012-09-17 16:01:24.30 spid52 Error: 17204, Severity: 16, State: 1.
2012-09-17 16:01:24.30 spid52 FCB::Open failed: Could not open file D:\Data\testOrganizacja46_MSCRM.mdf for file number 0. OS error: 2(Nie można odnaleźć określonego pliku.).
2012-09-17 16:01:24.51 spid52 Starting up database '[b8eade733b4e1898a5be5eaf23af28]'.
2012-09-17 16:01:56.37 spid129 Starting up database 'testOrganizacja46_MSCRM'.
2012-09-17 16:01:56.37 spid129 Error: 17207, Severity: 16, State: 1.
2012-09-17 16:01:56.37 spid129 FileMgr::StartLogFiles: Operating system error 2(Nie można odnaleźć określonego pliku.) occurred while creating or opening file 'D:\MSSQL\DATA\Mda847bf3121e44d2bbb7bb3a9fd4e881_MSCRM_log.LDF'. Diagnose and correct the operating system error, and retry the operation.
2012-09-17 16:01:56.39 spid129 New log file 'G:\Data\testOrganizacja46_MSCRM_log.ldf' was created.
2012-09-17 16:02:01.41 spid32s AppDomain 20 (testOrganizacja46_MSCRM.dbo[ddl].19) unloaded.
2012-09-17 16:02:01.76 spid28s AppDomain 21 (testOrganizacja46_MSCRM.dbo[ddl].20) unloaded.







Can you help me? I'm desperated:( All permissions are, I think.
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900