| Hi Diane,
Thanks for passing these doc errors along to me.
If you don't mind, just adding the doc errors as a reply to this note
would be fine by me. That way other folks who might be interested can
also read them and this may also reduce duplicates from being entered.
re: page 2-15 - Last paragraph. The value 1.3 was rounded up to 2 then
multiplied by 2. Not sure why we did it this way other than being
a bit more conservative in space estimation.
re: page 2-34 - Example 2-3
I tested this for V7.0 on OpenVMS and entering an owner user name
without quotes works fine. OpenVMS will uppercase the user name
when you show the service. For Digital UNIX, use of quotes retains
the case for this case sensitive environment. If you use quotes on
OpenVMS, case is retained as well.
I made the changes to both the next version of the server gd. and the
Windows Help file for these doc errors and the documentation
clarifications that you requested.
Thanks again,
Rod
|
| Hi Rod,
> re: page 2-34 - Example 2-3
> I tested this for V7.0 on OpenVMS and entering an owner user name
> without quotes works fine. OpenVMS will uppercase the user name
> when you show the service. For Digital UNIX, use of quotes retains
> the case for this case sensitive environment. If you use quotes on
> OpenVMS, case is retained as well.
Oops, it's still a doc error but a different one. I got bit by making two
changes instead of one and thinking the wrong change is what fixed it.
If you follow the example in the book exactly (substituting actual usernames
in place of the ones in the example, here's what happens):
SQLSRV> create service ward_test default_conect_username sqluser70
_SQLSRV> attach 'filename sys$common:[sqluser70]mf_personnel'
_SQLSRV> owner sqlsrv_deflt
_SQLSRV> database_authorization connect username
_SQLSRV> default_connect_username sqluser70
_SQLSRV> min_executors 0
_SQLSRV> max_executors 2;
syntax error at ''Owner', required parameter not specified'
What I did to fix it was:
1) remove default_connect_username from create service line, AND
2) added quotes around the owner name.
Turns out all I needed to do was remove the default_connect_username
SQLSRV> create service ward_test <--REMOVE default_connect_username --
_SQLSRV> attach 'filename sys$common:[sqluser70]mf_personnel'
_SQLSRV> owner 'sqlsrv_deflt'
_SQLSRV> database_authorization connect username
_SQLSRV> default_connect_username sqluser70 <-- LEAVE this here
_SQLSRV> min_executors 0
_SQLSRV> max_executors 2;
SQLSRV> create service ward_test
_SQLSRV> attach 'filename sys$common:[sqluser70]mf_personnel'
_SQLSRV> owner sqlsrv_deflt <-- NO QUOTES WORKS TOO, JUST AS YOU SAID --
_SQLSRV> database_authorization connect username
_SQLSRV> default_connect_username sqluser70
_SQLSRV> min_executors 0
_SQLSRV> max_executors 2;
Thanks, Diane
|