search for: sessions_seq

Displaying 2 results from an estimated 2 matches for "sessions_seq".

2007 Oct 08
0
Camping-list Digest, Vol 18, Issue 1
...ter "PRIMARY KEY". So, I removed > that and created the table manually. > > The next problem was a missing Oracle sequence (which I had no idea > was > required, but ok). I figured out (by stepping through oci8.rb) that > the > name of the sequence should be "sessions_seq". For that I used the > following snippet: > > CREATE SEQUENCE ACS_SUPPORT.SESSIONS_SEQ > START WITH 50 > MAXVALUE 999999999999999999999999999 > MINVALUE 0 > NOCYCLE > CACHE 50 > NOORDER; > > Unfortunately, there are still problems, and here'...
2007 Oct 05
11
Session handling busted on Oracle
...lem is that second "(38)" after "PRIMARY KEY". So, I removed that and created the table manually. The next problem was a missing Oracle sequence (which I had no idea was required, but ok). I figured out (by stepping through oci8.rb) that the name of the sequence should be "sessions_seq". For that I used the following snippet: CREATE SEQUENCE ACS_SUPPORT.SESSIONS_SEQ START WITH 50 MAXVALUE 999999999999999999999999999 MINVALUE 0 NOCYCLE CACHE 50 NOORDER; Unfortunately, there are still problems, and here''s where I''m not sure what''s happe...