Skip to Main Content

SQLcl

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

ERROR: An error has occurred processing your request: Unrecognized character escape 'd' (code 100)

WilliamDubberleyJan 3 2025 — edited Jan 3 2025

SQLcl version:

Oracle SQLDeveloper Command-Line (SQLcl) version: 24.3.2.0 build: 24.3.2.330.1718

linux distro:

  • OS: Pop!_OS 22.04 LTS x86_64
  • Kernel: 6.4.6-76060406-generic
  • Shell: zsh 5.8.1

I am connected to adw to a schema that has an apex application tied to it. i then start executing the following lines

project init -name LPI_GAS_QUALITY_APP -schemas LPI_GAS_QUALITY
!git init --initial-branch=main
!git add .
!git commit -m "initializing repository with default project LPI_GAS_QUALITY_APP files"
!git checkout -b base-release
project export
!git add .
!git commit -m "Base release"

This works as expected it build the two branches and populates the repository. I thne run

project stage

and i Get the following

SQL> project stage
Stage is Comparing:
Old Branch    refs/heads/main
New Branch    refs/heads/base-release
ERROR: An error has occurred processing your request:
Unrecognized character escape 'd' (code 100)
at [Source: REDACTED (`StreamReadFeature.INCLUDE_SOURCE_IN_LOCATION` disabled); line: 1, column: 3344] (through reference chain: oracle.dbtools.extension.project.commands.stage.objectclasses.SrcSnapShot["sxml"])

what is going wrong here and how can i get it to work?

Comments
Post Details
Added on Jan 3 2025
2 comments
57 views