Search found 346 matches

by .jp
Thu 07 Feb 2019 10:39
Forum: dbForge for SQL Server
Topic: Cannot Describe and Object, VIEW DATATBASE STATE Permission Denied in Database
Replies: 4
Views: 3316

Re: Cannot Describe and Object, VIEW DATATBASE STATE Permission Denied in Database

Hello,

Thanks for the post.
We're investigating the problem and answer you as soon as any result is available.

Best Regards.
by .jp
Mon 04 Feb 2019 17:25
Forum: dbForge for PostgreSQL
Topic: How to see a view definition
Replies: 1
Views: 4949

Re: How to see a view definition

Hello,

Frankly speaking there's no way to see objects' DDL from UI for now. The mentioned feature will be implemented in one of the next version of the product.

Best Regards.
by .jp
Fri 14 Dec 2018 07:57
Forum: dbForge for PostgreSQL
Topic: How to connect via SSH?
Replies: 2
Views: 7214

Re: How to connect via SSH?

Hello,

Thanks for your interest in our product.
The SSH connection was supported in the newest version of the tool.
Please update dbForge Studio for PostgreSQL to the v2.0.

Best Regards.
by .jp
Fri 14 Dec 2018 07:55
Forum: dbForge for PostgreSQL
Topic: Getting an error in dbForge when editing/viewing a SQL file
Replies: 4
Views: 6438

Re: Getting an error in dbForge when editing/viewing a SQL file

Hello,

Just let you know that a new version of the product was released.
Please update your tool to the latest version (2.0) and check whether the problem exists.

Best Regards.
by .jp
Fri 14 Dec 2018 07:49
Forum: dbForge for PostgreSQL
Topic: db Forge Data Compare
Replies: 4
Views: 6105

Re: db Forge Data Compare

kari wrote: Mon 24 Sep 2018 09:16 Hello,

Is this still in schedule to be released by 13th of October?
Is it possible to test some beta or other release candidate?
-Kari
Hello,

Thanks for the question!
We released a new version of the product on October 29.
Feel free to download it.

Best Regards.
by .jp
Fri 14 Dec 2018 07:41
Forum: dbForge for PostgreSQL
Topic: DBForge 2.0.111
Replies: 3
Views: 5098

Re: DBForge 2.0.111

PavelP wrote: Thu 13 Dec 2018 13:21 Hi Alexa,
I have the very same problem. May I please for sending a trial period extension as well?
Thanks a lot
Pavel
Hello,

Thank you for your interest in our tool.
We're happy to provide you a trial period extension. Please contact our support by email (support AT devert.com).

Best Regards.
by .jp
Mon 26 Nov 2018 07:55
Forum: dbForge for SQL Server
Topic: Support for TFS 2018 (on premise)
Replies: 2
Views: 1569

Re: Support for TFS 2018 (on premise)

Hello,

Please update dbForge Studio for SQL Server to version 5.6 that supports TFS 2018.

Best Regards,
by .jp
Mon 26 Nov 2018 07:52
Forum: dbForge for SQL Server
Topic: SSMS 18
Replies: 3
Views: 1390

Re: SSMS 18

Hello,

The 6th version of SQL Complete with the integration SSMS 18 support is available to download.

Best Regards.
by .jp
Wed 22 Aug 2018 05:50
Forum: dbForge for Oracle
Topic: Questions about schema compare for Oracle
Replies: 6
Views: 2984

Re: Questions about schema compare for Oracle

Hello,

Just let you know the new version of Schema Compare with support of Oracle 18 released.

Best Regards.
by .jp
Fri 17 Aug 2018 11:12
Forum: dbForge for Oracle
Topic: Questions about schema compare for Oracle
Replies: 6
Views: 2984

Re: Questions about schema compare for Oracle

Hello,

1) Yes, you can compare several schemas in one database. You should do the following:
- New Schema Comparison...
- Select connection
- Include multiple sources and targets
- Compare
2) We thank you for notifying us about the error. We will fix this bug in the next version of the product.
3) We are sorry to find out that you encountered an error in our documentation. We'll fix it as soon as possible. Our product supports the following Oracle versions: 12c, 11g, 10g, 9i, 8i. Oracle 18c will be supported in a new version of our product. It'll be available in a few weeks.

Best Regards.
by .jp
Thu 26 Jul 2018 07:52
Forum: dbForge for MySQL
Topic: limit forgein table data view
Replies: 2
Views: 2457

Re: limit forgein table data view

Hello,

Please send DDL of the tables you work with, and specify the number of records in the Parent table.

Best Regards.
by .jp
Thu 21 Jun 2018 13:39
Forum: dbForge for MySQL
Topic: MariaDB 10.3.7
Replies: 4
Views: 1840

Re: MariaDB 10.3.7

Hello,

A new version of dbForge Studio with support of MariaDB 10.3 is available to download.
https://blog.devart.com/whats-new-in-db ... -html.html

Best Regards.
by .jp
Thu 21 Jun 2018 13:37
Forum: dbForge for MySQL
Topic: Support for MySQL 8.0 GA
Replies: 6
Views: 6492

Re: Support for MySQL 8.0 GA

Hello,

A new version of dbForge Studio for MySQL v8.0 is available to download.
https://blog.devart.com/whats-new-in-db ... -html.html

Best Regards.
by .jp
Fri 12 Jan 2018 09:01
Forum: dbForge for SQL Server
Topic: How to generate random dates in a range?
Replies: 1
Views: 9727

Re: How to generate random dates in a range?

Hello,

Thanks for the post.

You should use the following code:

Code: Select all

import random
import clr

random.seed(config["seed"])
startDate = DateTime(1910,1,1)

def main(config):
  while True:
    # Add number of days to a startDate
    yield startDate.AddDays(random.randint(1, 100000)).ToString('yyyy-MM-dd');
Or the following one:

Code: Select all

import random
import clr

random.seed(config["seed"])
startDate = DateTime(1910,1,1)
endDate = DateTime(2018,1,1)
daysToAdd = (endDate - startDate).Days

def main(config):
  while True:
   # Add number of days to a startDate
   yield startDate.AddDays(random.randint(1, daysToAdd)).ToString('yyyy-MM-dd')
Also you would use RegExp generator instead of Python:

Code: Select all

(19[1-9][0-9]|20(0[0-9]|1[0-8]))-((0[0-9])|(1[0-2]))-(0[1-9]|(1[0-9]|2[0-8]))
Best Regards.
by .jp
Tue 02 Jan 2018 14:06
Forum: dbForge for MySQL
Topic: Lastest 7.2 version
Replies: 1
Views: 1211

Re: Lastest 7.2 version

Hello,

Thanks for the post.

The latest version of dbForge Studio for MySQL is 7.3.131.
It can be downloaded from our site: https://www.devart.com/dbforge/mysql/st ... nload.html

Best Regards.