search for: user_t

Displaying 8 results from an estimated 8 matches for "user_t".

Did you mean: user_u
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...
2006 Jul 04
0
transacting with different db tables
.... When a new user signs up on the main railsapp, I need to insert a record (a kind of replication) in the opiniondb as well to keep the user account working. Is it possible to insert a record in another db? 2. Short circuit the User model of opinion to authenticate users from railsapp''s db user_table instead of opiniondb''s user_table. (maybe Any opinion experts can help me there?) 3. Any other ides for a Shared User model? Awaiting expert suggestions and solutions Thanks Rajesh _________________________________________________________________ Express yourself: design your ho...
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; Or...
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
...k.co.uk,82.165.38.62): query: SELECT <user_field> as user, <password_field> as password, <home_directory> AS userdb_home, <mail_directory> AS userdb_mail, <chroot_directory> AS userdb_chroot, <uid_field> AS userdb_uid, <gid_field> AS userdb_gid FROM <user_table> WHERE <user_field> = 'andy.shellam at mailnetwork.co.uk' dovecot: Jul 01 16:51:46 Info: auth(default): client out: OK 1 user=andy.shellam at mailnetwork.co.uk dovecot: Jul 01 16:51:46 Info: auth(default): master in: REQUEST 1 24949 1 dovecot: Jul 01 16:51:46 I...
2007 Aug 24
0
MYSQL problem and configuration
...);$hostname= 'xxxx'; $database= 'xxxxx'; $username= 'xxxxx'; $password= 'xxxx'; $dbprotect = mysql_pconnect($hostname, $username, $password) or trigger_error(mysql_error(),E_USER_ERROR); mysql_select_db($database, $dbprotect);$result = mysql_query("SELECT * FROM user_table WHERE user_age>12");while($entry = mysql_fetch_array($result)) {fwrite(STERR, "Name : $entry['name'], Age: $entry['age'] \n");fflush(STDOUT);$result = trim(fgets(STDIN,4096));checkresult($result);}?>It will return things on the asterisk CLI.... You can adap...
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,