Is it possible to have both the company and database name visible in the Development environment when a company is selected?
Now the default is the database name is shown, until a company is selected than this is changed into the company name.
I would prefer to always see databasename, to prevent development in the wrong environment.
Thanks in advance,
Regards,
Nick
0
Answers
I need the information in the Development Environment itself, because I'm developing in different databases. So not in the RTC environment.
Regards,
Nick
I'm afraid I do not have a solution for you.
create view
[dbo].[sys_ConnectionProperties]
as
select
cast(serverproperty('servername') as varchar(100)) as server_name
, DB_NAME() as db_name
@SPID as spid
, system_USER as [system_user]
2. Create linked table in Nav.
Nav, T-SQL.