Unix Technical Forum

SEO

vBulletin Search Engine Optimization


Go Back   Unix Technical Forum > Database Server Software > Informix

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 04-19-2008, 08:23 PM
Alexey Sonkin
 
Posts: n/a
Default RE: Whatcha' wanta have?????



> -----Original Message-----
> From: Mark Denham [mailto:mkdenham@comcast.net]
>
> 1) An 'admin' mode for a database whereby user activity is suspended but
> the administrator still has the ability to manipulate the database;
> alternatively a means of taking an individual database offline [kicks
> off all users, stops user reconnects, allows admin access] without
> having to take down the entire server.


Totally agree.
Sometimes, it is necessary to disconnect all transactional users
for a very short time (20-30 seconds) to make necessary database
update: reload stored procedure, alter table, create index, etc.
Current workaround is to restart Informix with specific network
interface down, but it takes more then 20 seconds to restart IDS twice.

I think that it should be a mode when only 'informix' user
can connect to the database - something between 'online' and 'quiescent'

------------------------------------------
Alexey Sonkin
Senior Database Administrator
sending to informix-list


sending to informix-list
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 04-19-2008, 08:23 PM
Andrew Hamm
 
Posts: n/a
Default Re: Whatcha' wanta have?????

Alexey Sonkin wrote:
> Current workaround is to restart Informix with specific network
> interface down, but it takes more then 20 seconds to restart IDS
> twice.


Also, at 3am in the morning after a painful rebuild, it's easy to forget to
restore all the little tweaks and pokes you've done during the recovery, and
makes it harder to leave very simple instructions to the site's admin when
you are desperate to go home and leave them to hang around for the remaining
two hours.


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 04-19-2008, 08:23 PM
Andrew Hamm
 
Posts: n/a
Default Re: Whatcha' wanta have?????

Alexey Sonkin wrote:
>
> I think that it should be a mode when only 'informix' user
> can connect to the database - something between 'online' and
> 'quiescent'


yeah - either that, or a state where only DBA's can connect to a database.
Sites who grant DBA to public can pay the price :-)


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 04-19-2008, 08:24 PM
Ronald Cole
 
Posts: n/a
Default Re: Whatcha' wanta have?????

"Andrew Hamm" <ahamm@mail.com> writes:
> Alexey Sonkin wrote:
>>
>> I think that it should be a mode when only 'informix' user
>> can connect to the database - something between 'online' and
>> 'quiescent'

>
> yeah - either that, or a state where only DBA's can connect to a database.
> Sites who grant DBA to public can pay the price :-)


A "single user" mode... and I vote for the "informix" user instead of
DBA.

--
Forte International, P.O. Box 1412, Ridgecrest, CA 93556-1412
Ronald Cole <ronald@forte-intl.com> Phone: (760) 499-9142
President, CEO Fax: (760) 499-9152
My GPG fingerprint: C3AF 4BE9 BEA6 F1C2 B084 4A88 8851 E6C8 69E3 B00B
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 04-19-2008, 08:24 PM
Andrew Hamm
 
Posts: n/a
Default Re: Whatcha' wanta have?????

Ronald Cole wrote:
>
> A "single user" mode... and I vote for the "informix" user instead of
> DBA.


Ummmmm, I don't.

I try to convince all our teams/sites to use a specific
application-administration account so that they do not use "informix" or
(horror) "root" to administer the database. The principle is:

1) "root" administers the machine. It should not be used to configure the
engine, the application, or do ordinary user work because it puts the
machine in greater risk of accidental damage by sleepy brains.

2) "informix" administers the engine - space, configuration state. It
should not be used to configure the engine, the application, or do ordinary
user work because it puts the machine in greater risk of accidental damage
by sleepy brains.

3) the application account administers the database - eg schema, mass data
transformations, etc. It should not be used to do ordinary user work
because it puts the machine in greater risk of accidental damage by sleepy
brains.

Sure, "informix" should be on the list of legal administrators, but perhaps
we need a list of accounts that can connect whilst the engine is in the
hypothetical administration mode.


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 04-19-2008, 08:25 PM
Jonathan Leffler
 
Posts: n/a
Default Re: Whatcha' wanta have????? (single user maintenance mode)

Andrew Hamm wrote:

> Ronald Cole wrote:
>
>>A "single user" mode... and I vote for the "informix" user instead of
>>DBA.

>
> Ummmmm, I don't.
>
> I try to convince all our teams/sites to use a specific
> application-administration account so that they do not use "informix" or
> (horror) "root" to administer the database. The principle is:
>
> 1) "root" administers the machine. It should not be used to configure the
> engine, the application, or do ordinary user work because it puts the
> machine in greater risk of accidental damage by sleepy brains.
>
> 2) "informix" administers the engine - space, configuration state. It
> should not be used to configure the engine, the application, or do ordinary
> user work because it puts the machine in greater risk of accidental damage
> by sleepy brains.


I think the sentences of (2) contradict each other. Presumably, you
meant "It should not be used to configure the database, the
application, ..."?

This user is the DBSA - database system administrator - a completely
separate role from the DBA or database administrator who manages a
single database within an instance.

Note that it is possible to have users other than 'informix' who are
the DBSA -- it's called role separation and is a major source of
headaches (for me). If you ignore role separation and keep user
informix as the only DBSA, it is much simpler everyone. You ignore
the DBSA role separation by ensuring that user 'informix' is the only
member of group 'informix' and by ensuring that $INFORMIXDIR/etc is
owned by group 'informix'.

> 3) the application account administers the database - eg schema, mass data
> transformations, etc. It should not be used to do ordinary user work
> because it puts the machine in greater risk of accidental damage by sleepy
> brains.
>
> Sure, "informix" should be on the list of legal administrators, but perhaps
> we need a list of accounts that can connect whilst the engine is in the
> hypothetical administration mode.


So, in this single-user mode, you want certain users - the separate
DBA users - to be able to connect to the server and administer their
respective databases? Obviously, DATABASE mine EXCLUSIVE partially
achieves this, but it isn't as effective as a server-level maintenance
mode.

Andrew has exactly the right idea - different users have different
jobs to do and the different roles should not be blindly conflated
(but often are). In particular, the distinction between DBA and DBSA
is usually overlooked, and a depressingly large number of databases
seem to use 'informix' as both the DBSA and DBA.

--
Jonathan Leffler #include <disclaimer.h>
Email: jleffler@earthlink.net, jleffler@us.ibm.com
Guardian of DBD::Informix v2003.04 -- http://dbi.perl.org/

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 04-19-2008, 08:25 PM
Andrew Hamm
 
Posts: n/a
Default Re: Whatcha' wanta have????? (single user maintenance mode)

Jonathan Leffler wrote:
> Andrew Hamm wrote:
>>
>> 2) "informix" administers the engine - space, configuration state.
>> It should not be used to configure the engine, the application, or
>> do ordinary user work because it puts the machine in greater risk of
>> accidental damage by sleepy brains.

>
> I think the sentences of (2) contradict each other. Presumably, you
> meant "It should not be used to configure the database, the
> application, ..."?


ahhh - yes. The dangers of cut-n-paste - and a chronically sleepy brain :-/

> This user is the DBSA - database system administrator - a completely
> separate role from the DBA or database administrator who manages a
> single database within an instance.
>
> Note that it is possible to have users other than 'informix' who are
> the DBSA -- it's called role separation and is a major source of
> headaches (for me). If you ignore role separation and keep user
> informix as the only DBSA, it is much simpler everyone. You ignore
> the DBSA role separation by ensuring that user 'informix' is the only
> member of group 'informix' and by ensuring that $INFORMIXDIR/etc is
> owned by group 'informix'.


I've seen it that people in group informix start the engine and then
mysteriously other people cannot connect. Perhaps that's platform-specific,
but I tend to scream and shout until all users except informix are removed
from the informix group :-)

> So, in this single-user mode, you want certain users - the separate
> DBA users - to be able to connect to the server and administer their
> respective databases? Obviously, DATABASE mine EXCLUSIVE partially
> achieves this, but it isn't as effective as a server-level maintenance
> mode.


Yes - that would be ideal for me, and i think a decent design. As you
mention in your wrap-up, the people using "informix" for DBA - well, i guess
they'll be happy anyway. The only sites that will be less able to use this
admin mode are those who grant DBA to unsuitable accounts, especially if
it's to "public". Which I've seen on sites where objects are owned by every
man and his dog, then views based on tables owned by multiple people don't
work unless everyone is given DBA, and general permissions are left in a
forgotten heap behind the fridge. In other words, shambolic sites. There's
not much you can do to help places that are in a mess.


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 04-19-2008, 08:26 PM
Ronald Cole
 
Posts: n/a
Default Re: Whatcha' wanta have?????

"Andrew Hamm" <ahamm@mail.com> writes:
> Ronald Cole wrote:
>> A "single user" mode... and I vote for the "informix" user instead of
>> DBA.

>
> Ummmmm, I don't.


Well, it was a "wish" list request. I can't rightly reason out how
such a feature could be safely implemented. Transactions in progress
could hold resources that the DBA would need so simply suspending them
isn't enough and waiting for all current transactions to end could
leave the DBA waiting for quite a while more than he would like. And
if you're going to start aborting transactions, then you should
probably just warn your users and shutdown the engine to perform the
desired maintenance.

Perhaps the original requester is looking for an interface that allows
for easy "Son of Overlord"-style control over a running instance.

--
Forte International, P.O. Box 1412, Ridgecrest, CA 93556-1412
Ronald Cole <ronald@forte-intl.com> Phone: (760) 499-9142
President, CEO Fax: (760) 499-9152
My GPG fingerprint: C3AF 4BE9 BEA6 F1C2 B084 4A88 8851 E6C8 69E3 B00B
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 04-19-2008, 08:26 PM
Andrew Hamm
 
Posts: n/a
Default Re: Whatcha' wanta have?????

Ronald Cole wrote:
> "Andrew Hamm" <ahamm@mail.com> writes:
>> Ronald Cole wrote:
>>> A "single user" mode... and I vote for the "informix" user instead
>>> of DBA.

>>
>> Ummmmm, I don't.

>
> Well, it was a "wish" list request.


don't sweat it ... i was speaking for myself, not knocking u down. Informix
is quite a reasonable choice, but there is scope for other specific users to
be nominated instead/as well.

> I can't rightly reason out how
> such a feature could be safely implemented. Transactions in progress
> could hold resources that the DBA would need so simply suspending them
> isn't enough and waiting for all current transactions to end could
> leave the DBA waiting for quite a while more than he would like. And
> if you're going to start aborting transactions, then you should
> probably just warn your users and shutdown the engine to perform the
> desired maintenance.


Currently the engine has a Graceful switch to quiescent mode, and also an
immedate switch to quiescent mode.

When graceful, all existing users are allowed to continue, but no new
sessions are accepted. In immediate mode, all existing sessions are closed,
and therefore their transactions are rolled back.

This could just as easily apply for a switch to admin mode - graceful or
immediate.


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 04-19-2008, 08:27 PM
Ronald Cole
 
Posts: n/a
Default Re: Whatcha' wanta have?????

"Andrew Hamm" <ahamm@mail.com> writes:
> Currently the engine has a Graceful switch to quiescent mode, and also an
> immedate switch to quiescent mode.
> When graceful, all existing users are allowed to continue, but no new
> sessions are accepted. In immediate mode, all existing sessions are closed,
> and therefore their transactions are rolled back.
> This could just as easily apply for a switch to admin mode - graceful or
> immediate.


I understand the desire to not have to tell hundreds or thousands of
users that they have to exit and then restart their apps for some
quick administration. Still, it would probably be unsettling to
hundreds or thousands of users to suddenly have their apps all
"freeze" for a non-trivial length of time, without being duly warned
first, while the engine transitions into a temporary "admin mode" and
the admin's voice mail starts filling up.

--
Forte International, P.O. Box 1412, Ridgecrest, CA 93556-1412
Ronald Cole <ronald@forte-intl.com> Phone: (760) 499-9142
President, CEO Fax: (760) 499-9152
My GPG fingerprint: C3AF 4BE9 BEA6 F1C2 B084 4A88 8851 E6C8 69E3 B00B
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 03:40 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
UnixAdminTalk.com

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609