Displaying 8 results from an estimated 8 matches for "user_tables".
2007 Mar 21
2
ORA-03106: fatal two-task communication protocol error
...t.column :formula, :string
t.column :internal_ref, :text
t.column :comments, :text
end
...
## Create tables
rake db:migrate
... fails ...
rake aborted!
OCIError: ORA-03106: fatal two-task communication protocol error:
select lower(table_name) from user_tables
...
# Try roll-back to version 0
rake db:migrate VERSION=0
... fails ...
rake aborted!
OCIError: ORA-03106: fatal two-task communication protocol error:
select lower(table_name) from user_tables
...
# Roll-forward?
rake db:migrate VERSION=1
...
rake aborted!
OCIError: ORA-03106: fat...
2006 Jul 04
0
transacting with different db tables
Hi
I am trying to make head and tail of a critical problem I am facing. I have my railsapp which has its own user table and account management.
Along with that, I am installing Opinion forum as a subdomain on the server. As you know, Opinion has its own user table and account management. I want the user to login once and access domains and subdomains without having to login again.
>From
2004 Dec 09
1
ROracle/DBI problem with dbExecStatement on RH Linux
...lving
the problem of the empty rows returned from ROracle.
However, I have a problem still:
> library(ROracle)
> ora <- dbDriver("Oracle")
> con <- dbConnect(ora, user = USER, password = PWD, dbname = DBNAME)
> rs <- dbExecStatement(con, "select * from USER_TABLES")
Error in .class1(object) : No direct or inherited method for function
"dbExecStatement" for this call
dbSendQuery/dbGetQuery work fine. I've reinstalled ROracle 0.5-5 and DBI
0.1-8 from source on RH Linux Enterprise WS release 3 Taroon update;
kernel 2.4.21-9.0.1; Oracle...
2006 Apr 10
6
Single Table Mapping
This is pretty simple, but I must be missing the obvious. I''ve got a
table that''s similar to this:
USERS:
- id int
- username varchar(64)
- password varchar(64)
- role_id int
ROLES:
- id int
- description varchar(16)
I''ve had no troubles doing has_many relationships at all. But I want to
map the user.role directly to the role model automatically (which sounds
2007 Jul 01
1
Differences in deliver and IMAP
Hi
I've now got Dovecot 1.0.1 authenticating with PostgreSQL for the IMAP
service, but deliver doesn't seem to work the same.
I'm using the "prefetch" passdb, but deliver doesn't seem to recognise it.
Here's the log for a deliver attempt:
dovecot: Jul 01 16:51:35 Info: auth(default): master in: USER 1
andy.shellam at mailnetwork.co.uk service=deliver
2007 Aug 24
0
MYSQL problem and configuration
Hello,I am new to asterisk but i have vbeen scriptinh PHP SQL and webLanguages for a long time.I can Give you a solution but using php AGI:extensions.con-----> AGI(connect.agi);/var/lib/asterisk/agi-bin/connect.agi :#!/usr/bin/php -q<?phpset_time_limit(0);ob_implicit_flush();error_reporting(0);//Initialisation des entr?e-sortiefunction init() {#create file handles if
2013 Mar 13
1
enabling AD authentication on Puppet Enterprise 2.7 evaluation
Hi All, I''m testing a Puppet install and running into a problem enabling AD
authentication:
http://docs.puppetlabs.com/pe/2.7/console_auth.html#using-third-party-authentication-services
I''ve followed the instructions in there and the end result is either only
AD auth or only local auth, once I turn on activedirectoryldap inside the
cas_client_config.yml file I get
2006 Apr 18
7
Connecting to multiple databases
Hi Everyone,
I am trying to connect to multiple databases and followed along the
Recipe in Chad Fowlers ''Rails Recipes'' book (which basically is about
establishing the connection in a subclass of ActiveRecord::Base, and
inheriting all classes in need of this connection from this class)
Chad Fowler says:
"You won''t be able to instantiate an External, of course,