BH Hi, in the old windows 2003 server, whenever the SQL ANYWHERE Server is started, the window in the task-bar appeared. It showed like a log of the connections and status (ex. "Now accepting requests", etc.) However, in the Windows 2008 Server, i don't see that log window in the tray. Is there a way to pull it up manually? Thanks Aron

asked 23 Dec '13, 13:34

arony's gravatar image

arony
219141419
accept rate: 0%

edited 27 Dec '13, 03:51

Volker%20Barth's gravatar image

Volker Barth
39.8k358546815


You must be running your server as a service.

When the database server (or any other process) is running as a service the process is no longer allowed to interact with the desktop - This is a change that Microsoft has made as of Windows7/Server 2008.

So unfortunately there is no method to get the old behaviour when running on Windows 2008 Server.

permanent link

answered 23 Dec '13, 13:38

Mark%20Culp's gravatar image

Mark Culp
24.8k10139296
accept rate: 41%

FYI - this change was actually first made my Microsoft in Windows Vista.

(02 Jan '14, 09:29) Ian McHardy

At our site, I changed the startup params for the database to write a log file of the console messages, and use baretail to watch them go by. It seems to work pretty well.

-o C:\Logs\MyDBServer.TXT
-os 2m

Get baretail here: http://www.baremetalsoft.com/baretail/

permanent link

answered 25 Dec '13, 09:16

BudDurland's gravatar image

BudDurland
3169920
accept rate: 0%

FWIW: Running the database server with the -o console.log parameter is very common and recommended - independent of the OS and mode (normal application vs. service).

Cf. this related question:

How to access the network server console on Server 2008.

(27 Dec '13, 03:53) Volker Barth
Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×40
×40
×37
×12
×3

question asked: 23 Dec '13, 13:34

question was seen: 2,652 times

last updated: 02 Jan '14, 09:29