Questions tagged [dbx]

DBX is a source-level debugger, product of Oracle Coporation (formally Sun Microsystem) used to control the execution of a program (step by step, breakpoints, ...) and inspect the content of the memory.

111 questions
1
vote
0 answers

Solaris 10 - dbx dump not showing local variables

I'm a Windows developer who uses WinDbg regularly and fairly easily. I got a Solaris 10.2 core file to analyze using dbx. where (dbx) displayed the stack and I could locate the .so that had the implementation. As dump (dbx) showed no results (local…
Pro Chats
  • 11
  • 1
  • 5
1
vote
2 answers

How to set a hardware watchpoint in dbx?

I need to detect when some memory changes in dbx on Solaris. I know in gdb that I would do this with watch . However, I am using dbx at the moment, so I need to know how to set a hardware watchpoint in dbx. What is the dbx command…
WilliamKF
  • 41,123
  • 68
  • 193
  • 295
1
vote
1 answer

What could possibly lead to the following assembly execution result

I was debugging under IBM AIX with dbx. I was seeing the following: (dbx) print $r4 0x00000001614aa050 (dbx) print *((int64*)0x00000001614aa050) -1 (dbx) print $r3 0x0000000165e08468 Then I "stepi" my 64bit program which executed the following…
Didu
  • 11
  • 1
0
votes
1 answer

How can I print the data contained by a C++ Map while debugging using DBX

I want to know the contents of a Map while debugging a c++ program. I am using command line dbx. I have pointer to the map. Is there a way in which i can get the data printed. -- Edit: p *dataMap will give me this:: p *dataMap *dataMap = { __t…
Kumar Alok
  • 2,512
  • 8
  • 26
  • 36
0
votes
1 answer

Copy tables between databases on Cbuilder

I am trying to optimize my code to copy about 7000 records from one table to another. SQLQuery1->Open(); while (!SQLQuery1->Eof) { Table1->Append(); Table1->FieldByName("terc1_cod")->Value =…
0
votes
2 answers

Setup E-mail notification on failure run with DBX deployment

I am deploying workflows to Databricks using DBX. Here I want to add a step which will send an e-mail to email123@email.com whenever the workflow fails. The outline of my deloyment.yml file is as below: deployments: - name: my_workflow …
andKaae
  • 173
  • 1
  • 13
0
votes
1 answer

DBX `named_parameters` are not working correctly

I have cluster in Databricks and i want ot run my local code on this cluster using DBX. But i have some issues with named_parameters How can I use the correct format of dictionary({"t": "hello"}) in named_parameters to run my code in cluster and get…
0
votes
1 answer

Databricks DBX and parameter substitition on deployment.yaml

I would like to use the same workflow and task definitions for our dev, stag, and prod environments. Option 1) I was thinking about capturing an "environment_key" as a parameter for my Python job ("dev" for this case). Is there a placeholder like…
André Salvati
  • 504
  • 6
  • 17
0
votes
2 answers

Run a script using DBX

I have a script like this script = GF1_dd_Daemon_Sh PROCESS_NAME=RG INSTANCE=RG PART_ID=1 Inside this there is an executable which is called. When I run this script(#!/bin/ksh ) it creates a core dump and using dbx when i analyse the stack trace I…
Kimi
  • 332
  • 2
  • 11
  • 25
0
votes
0 answers

ERROR installing dbx - pip install dbx - pipenv error cffi

I am trying to set a connection with Visual Studio Code with Databricks using pyenv following these instructions: https://docs.databricks.com/dev-tools/ide-how-to.html When I try to install dbx (pip install dbx) I have an error on the cffi package.…
Nankin
  • 45
  • 7
0
votes
1 answer

dbx execute install from azure artifacts / private pypi

I would like to use dbx execute to run a task/job on an azure databricks cluster. However, i cannot make it install my code. More Details on the situation: Project A with a setup.py is dependent on Project B Project B is also python based and is…
thompson
  • 179
  • 1
  • 12
0
votes
1 answer

DBX core file truncated?

I'm using the latest version of dbxtool (Solaris Studio ) on RHEL6.1. I'm working through the tutorial example here using their example code, but when trying to run dbxtool on the core file generated, I get the following: (dbx) cd…
Rory
  • 1,805
  • 7
  • 31
  • 45
0
votes
1 answer

AutoLoader with a lot of empty parquet files

I want to process some parquet files (with snappy compression) using AutoLoader in Databricks. A lot of those files are empty or contain just one record. Also, I cannot change how they are created, nor compact them. Here are some of the approaches I…
0
votes
2 answers

Problems with using free DBX driver in conjunction with TSQLConnection

I've downloaded free DBX driver from here. I am trying to make it work since two days now, without success. Here is the snapshot of my code: unit uMainForm; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls,…
Wodzu
  • 6,932
  • 10
  • 65
  • 105
0
votes
1 answer

Unreadable instruction at address

I get segmentation fault on a certain scenario(it is C code with DEC VAX FMS(Forms Management System) calls to get a certain field on a CRT screen - pretty old legacy code). I am on an AIX machine, and have only dbx installed on it. GDB, valgrind…
Swarna Gowri
  • 277
  • 2
  • 10