Learn how to integrate Excel files into SEI or SQL databases, using ODBC technology to combine Excel data with ERP...
Latest posts
-
Integrating Excel Files into SEI and SQL for Global Reporting via ODBCRead more -
VAT Simulation Before Invoice Generation in Sage X310/24/2024Read moreLearn how to simulate VAT in Sage X3 before generating an invoice, enabling accurate financial forecasts that include...
-
Optimizing Imports in Sage X3 with Multithread Batch Processing10/24/2024Read moreLearn how to optimize imports in Sage X3 with multithread batch processing by parallelizing tasks to reduce execution...
-
Document Download in Sage X3 Using 4GL Language01/19/2024Read moreExplore a method for Sage X3 developers to enhance user experience by simplifying document downloads from the server...
-
In-Depth Exploration of the New Container Management Feature in Sage X308/30/2023Read moreDiscover the revolutionary Container Management feature in Sage X3. Enhance operational efficiency and traceability...
-
EXEC_JS / streamline.js / Sage X3 Syracuse Javascript bundles07/19/2022Read moreSage X3: Overcoming Limitations with the Bridge between 4GL and JavaScript Sage X3 4GL can sometimes encounter...
-
Capturing Detailed Errors After a Silent Import in Sage X312/16/2021Read moreDiscover how to effectively capture detailed errors after performing a silent import in Sage X3. Learn methods to...
-
How to connect an external database in Sage Enterprise Intelligence with an identifier containing a dot ?12/15/2021Read moreLearn how to address issues with special characters in database identifiers when using Sage Enterprise Intelligence....
-
Exploring the ATEXTRA Table for Storing Translated Text in Applications12/15/2021Read moreDive into the ATEXTRA table, a crucial tool for storing translated text within applications. Discover how it manages...
-
Troubleshooting Sage X3 Folder Validation Errors12/15/2021Read moreLearn about common validation errors when creating or importing folders in Sage X3 and how to resolve them.
Blog categories
Search in blog
Troubleshooting Sage X3 Folder Validation Errors
Context:
You are in the process of creating or importing a new folder using the function Parameters > General parameters > Folders (GESADS) or via Sage X3 Console.
Problem:
Action 1: When you attempt to validate the folder, you encounter:
Error 1: Error No 76
[Microsoft][SQL Server Native Client 11.0][SQL Server]Login failed for user …

Action 2: If you try to validate again, you encounter:
Error 2: The version number of the folder is incorrect

Understanding the Issue:
When you create a folder in Sage X3, the software also generates all necessary database elements such as users, tables, and schemas. When you validate, a creation SQL script is generated containing credential information. Sometimes these credentials are missing or erased in the console, affecting the script's execution.

If the script can't execute due to missing passwords, Sage can't complete database creation. This halts the installation and leaves residual data in the installation directory and database, leading to the second validation error.
Solution:
- Clean the Sage X3 Installation Folder:
This step is crucial if you wish to retain the same folder name, especially if it's already corrupted.
Use this .bat script or manually execute the commands:
@echo off @RD /S /Q "[INSTALLATION]\Dossiers\[FOLDER]" @RD /S /Q "[INSTALLATION]\Dossiers\X3_PUB\[FOLDER]" - Clean the Database:
- Delete the user associated with the error folder.
- Delete the schema of the error folder.
- Delete all components related to the error folder.
- Correct Master Password in Sage X3 Console:
This password should match the “Password for X3 folders schemas” below.

- Re-Enter Information in the “Solution” Tab:
“Instance sysadmin user password” should match the sa user password.
Password for X3 folders schemas should be set as “tiger” by default (can be changed).

- Copy, Create, or Import Your Folder:
You can now proceed with the folder process using the GESADS function or the console.
- Adjust Print Server Settings:
To ensure continued functionality for the new folder, set the password for the print server after creation (step 3).
Related posts
-
Troubleshooting Sage X3 SVG Folder Configuration
12/07/2021Learn how to resolve issues with Sage X3 SVG folder configuration, including creating symbolic links using mklink...Read more -
Exploiting Software Security Vulnerabilities in Sage X3
12/08/2021Learn about a non-standard approach to exploiting a security breach in Sage X3 software.Read more -
The Impact of Cloud Computing on Sage X3 Debugger Tools
12/08/2021Explore the significant changes in Sage X3 debugger tools brought about by cloud computing and the challenges faced...Read more -
Exploring the ATEXTRA Table for Storing Translated Text in Applications
12/15/2021Dive into the ATEXTRA table, a crucial tool for storing translated text within applications. Discover how it manages...Read more -
Capturing Detailed Errors After a Silent Import in Sage X3
Discover how to effectively capture detailed errors after performing a silent import in Sage X3. Learn methods to...Read more
Leave a comment