EDB usually refers to an Exchange Database. Exchange Database files store in-process and non-SMTP messages. These files are organized in a b-tree structure. Each EDB file has a corresponding STM file which contains the actual SMTP messages.
Questions tagged [edb]
60 questions
5
votes
2 answers
EDB File Format
I want info about the Exchange Database EDB file format?
I have checked out the information provided in the following link:
http://sourceforge.net/projects/libesedb/files/
The documentation was good but quite confusing so I want some more help on…

user518717
- 51
- 1
- 3
2
votes
1 answer
Open Standby Postgres database in read-write mode for testing purpose
I am currently using Postgres 12.6 Enterprisedb version. I have a disaster recovery database that is synchronized with the production database in read-only mode. Now, I want to temporarily break the synchronization and open the disaster recovery…

Anuj Gupta
- 27
- 6
2
votes
0 answers
PostgreSQL cannot work when opens SSL on Windows 10
I am not sure this topic will fit here but I don't know ask it where.
I am trying to open the SSL of PostgreSQL 10.16 on Windows10.
I read a lot of documents about creating an SSL certificate to PostgreSQL but documents spend on Windows 10 are rare…

Pham
- 21
- 1
2
votes
0 answers
How to read EDB file in C++
I'm writing a program to read edb file in c++
I've tried with esent windows library and I got "The database page size does not match the engine" error on "JetAttachDatabase"
And i also tried "libesedb" library, but i can't understand how to use…

Nelson Tilo
- 21
- 2
2
votes
5 answers
edb debugger: Failed to open and attach to process, please check priviledges and try again
When opening a binary file, I got the "Could not open" dialog with below
error:
Failed to open and attach to process,
please check priviledges and try
again.
(it should be privileges instead of priviledges)
Steps to reproduce:
Start edb and…

quanta
- 3,960
- 4
- 40
- 75
2
votes
2 answers
How to get the structure of Msg Table of Edb files?
I am trying to read the offline edb files.What i have now is the tables of edb files i want to know the structure of the tables.Any help

kunal
- 956
- 9
- 16
2
votes
2 answers
completely remove edb-debugger from ubuntu 18.04
I was trying to upgrade my edb debugger from 0.9 to 1.0. I cloned the repo from github, compiled it and installed it. Unfortunately I forgot to uninstall the old version itself so I ran into some problems. Ithen decided to remove all of edb and…

idzireit
- 98
- 1
- 7
2
votes
0 answers
How to get What version of Microsoft Exchange Server was used for a given Exchange database(EDB file only)?
I have a Microsoft exchange database file(.edb file). I don't remember what version of microsoft exchange server was used in order to create the database file. Need help.

Nishant Kumar
- 41
- 6
2
votes
1 answer
Exchange edb on Linux
I have a 60GB edb file, and I want to break the database into individual emails. I do not have any of the original domain information, so I can't just fire up a Server 2k8 vm and reattach it there. I have made some progress with a naive approach of…

David Souther
- 8,125
- 2
- 36
- 53
2
votes
2 answers
How To Read Windows.edb file?
I am wanting to create a script/software that can read/access, then query an edb database file. I am looking at the Windows Indexing file which comes in the form of an edb file. Python doesn't seem to have any modules that I could use to query the…

BubbleMonster
- 1,366
- 8
- 32
- 48
1
vote
2 answers
how to solve the rowid (Pseudocolumn) of oracle in postgres
oracle has something called row id which nothing but a Pseudo column, is there any alternative of that present in postgres and EDB. if yes that what is that and if not how I can solve this issue.
for refernce
SELECT /*+ PARALLEL(2) FULL(t) */…

Biswajeet Sarkar
- 13
- 3
1
vote
0 answers
Can i use EDB postgres failover manager without having a witness node >
I am having one master node and one standby node with EDB streaming replication enabled. I want to use EDB failover manager tool. However i dont have any witness node. Is there any way i can use my standby node as witness node or how it will work ,…

rajkishore patro
- 78
- 1
- 5
1
vote
2 answers
Syntax error at or near "INTERVAL" while creating PARTITIONed table in PG
I am trying to create a partitioned table in edb 9.6.10 . I am getting the following error when I am trying to do so
edb=# create table employee (id int, join_date timestamp(6)) PARTITION BY RANGE (join_date) INTERVAL ('1 day'::interval);
…

Jackson
- 91
- 1
- 2
- 6
1
vote
0 answers
sudo ./pg_ctl -D /Library/PostgreSQL/9.5/data start,error:Library not loaded: @loader_path/../lib/libpq.5.dylib
My system is macOS 10.15.7
I installed postgresql-9.5 from EDB.When the installation is complete, I executed the following command:
cd /Library/PostgreSQL/9.5/bin
sudo ./pg_ctl -D /Library/PostgreSQL/9.5/data start
An error occur
dyld: Library not…

Pychong
- 155
- 2
- 13
1
vote
1 answer
Transaction Log files in edb database
In my attempt to extract data (dumps and selective reading of columns) from a diverse collection of edb databases I got faced with a fundamental problem. I have an edb database coming with a couple of log files. I know what information there is…

fmotis
- 276
- 2
- 11