Displaying 20 results from an estimated 70000 matches similar to: "Funny Behavior from SQL Cluster"
2008 Mar 09
0
replace astdb with a cluster-capable sql database engine (was: Re: asterisk-users Digest, Vol 44, Issue 22)
unix-odbc with Asterisk Realtime is one good way to use a different
backend DB than MySQL. I haven't heard of "bit rot" problems running it
over long times, but I'd like to if there are any. I'm particularly
interested in seeing reports of Asterisk Realtime backed by Postgres.
The problem with pointing dialplan DB functions like Set(DB) at
unix-odbc (or any relational
2008 Mar 08
3
replace astdb with a cluster-capable sql database engine
I've been searching the Internet for information
regarding the replacement of astdb with a modern sql
engine.
There are several reasons one would like to do this.
First of all, external applications have a hard time
reading/writing to the now-old astdb format.
Also (and this is what interests me most), the sql
astdb could easily be clustered throughout several
servers (I'm looking for a
2006 Apr 01
3
SQL on Rails :)
Hehe.
Does anyone know who is behind this?
http://www.sqlonrails.org/
The screencast is just a great watch. Things like these make this my
favourite day of the year.
--
--------------
Jon Gretar Borgthorsson
http://www.jongretar.net/
2006 Feb 02
3
Strange SQL Server error
Hi,
In an app I''m developing I''ve run into a strange problem. I''ve created
some controllers and models using the scaffolding generator and
everything seemed to work fine.
However I''ve noticed that a particular model I''ve created always fails
its tests and I can''t test it out in a browser due to the same error I''m
getting which is:
2010 Apr 08
0
Reading dates in R using SQL and otherwise (and someinteresting behavior by the data editor)
Hi Paul, Jim, Dennis, and others,
I got RODBC and SQL Server to create a date variable in R (see below). I'm pretty sure the commands I was issuing before were working but that I was stripping off the date class every time I submitted the command "fix(mydata)." So I kept getting the mistaken impression that what I was doing wasn't working.
One thing I've noticed is
2006 Dec 29
4
Strange HABTM behavior against SQL Server (AR 1.14.4)
All,
Win XP
SQL Server 2000
Rails 1.1.6 (AR 1.14.4)
I have two objects (Job and Warning) in a HABTM relationship. Below are
the pertinent sections of the model files and the schema for the join
table.
job.rb:
class Job < ActiveRecord::Base
has_and_belongs_to_many :warnings, :foreign_key =>
''JobReferenceNumber''
set_table_name :JobData
set_primary_key
1997 Jun 24
0
R-alpha: funny behavior of data(.)
This is wierd....
It looks like the problem appears when data(..) is immediately followed
by another statement USING ``;''
-----------
rm(list=ls())
data(phones); summary(phones)
Error: Object "phones" not found
ls()
character(0)
Or also
ls()
character(0)
data(pigs); 1:10
##-- nothing is printed, but here 'pigs' is sourced
ls()
[1]
2010 May 11
2
sprintf funny behavior
> sprintf("%d",4)
[1] "4"
> for(i in 1:4) sprintf("%d",4)
> for(i in 1:4) print(4)
[1] 4
[1] 4
[1] 4
[1] 4
>
Why doesn't sprintf like the for loop here
2010 Oct 03
1
Package for converting R datasets into SQL Server (create table and insert statements)?
Hi,
R contains many good datasets which would be valuable in other
platforms as well. My intention is to use R datasets on SQL Server as
a sample tables. Is there a package that would do automatic conversion
from the dataset "schema" into a SQL Server CREATE TABLE statement
(and INSERT INTO statements)?
For example.
> str(cars)
'data.frame': 50 obs. of 2 variables:
$
2010 Apr 08
2
Reading dates in R using SQL and otherwise (and some interesting behavior by the data editor)
Hello Everyone,
I am a newbie with about a month's worth of experience using R. I've just spent a little time learning how to work with date values. Mostly, this has involved converting text values into dates.
So far, I've managed to figure out how to do this in R proper using as.Date. However, I'm still struggling with doing this using SQL and RODBC.
In the process of
2006 Sep 11
3
Using pgsql with 'cram-md5 auth' and 'hmac-md5 scheme'
Hello,
I want to use PostgreSQL to store my Dovecot users. I setup a very
basic configuration, following word for word this page
http://wiki.dovecot.org/DovecotPostgresql and it works ... almost.
In fact, it works if I use PLAIN password scheme in my database.
However, I would like to store them encrypted.
But, if I replace the password field for my user with {HMAC-MD5}-...
(the password
2008 Feb 12
4
Funny behavior with Fixtures... on Ubuntu..
Hey Guys,
I''ve got a test class that loads a bunch of fixtures. My understanding
is that fixtures are reloaded between each test... and I even have the
following two method calls at the top of my test class to make doubly
sure...
class TaskTest < Test::Unit::TestCase
self.use_transactional_fixtures = true
self.use_instantiated_fixtures = false
When I run my tests
2004 Nov 19
2
Maildir/mbox on a per-user basis
Hello,
The Wiki indicates that Dovecot can do either mbox or Maildir on a
per-user basis:
default_mail_env can be overridden in userdb for each user. This works
with userdbs supporting the "mail" attribute (eg. passwd-file, SQL,
LDAP).
How exactly does one do this for passwd-file?
Thanks,
-Jon
--
Jon Nathan
jon at rupture.net
2016 Dec 07
0
Strange behavior when using progress bar (Fwd: Re: [R] The code itself disappears after starting to execute the for loop)
Dear Martin and Jon,
I can reproduce this problem in the Windows GUI, where I observed it using Jon's program after 75 iterations. I didn't observe the problem in a Windows terminal or under RStudio, letting the program run for more than 200 iterations in each case.
My system and session info:
------------- snip ---------
> Sys.info()
sysname release
2006 Aug 10
3
Ruby on Rails with Oracle
Hello everyone,
I am trying to convince my colleagues to convert to Ruby on Rails,
however I am up against the following problem:
Ruby on rails seems to be primarily designed a single database doing a
small number of queries. While trying to process a webpage that does
thousands of sql queries on Oracle, I get the message that I have used
up too many cursors.
In Java, I can use stmt.close()
2006 Aug 14
2
From passwd-file to Postgresql database
Hello,
I have a working installation of Dovecot, which use passwd-file for both users
and passwords databases. My setup uses CRAM-MD5 for the authentification
mechanism and the password in my passwd-file was stored encoded with HMAC-MD5.
Now, I want to use Postgresql to replace those passwd-files. So I make the
necessary change in my dovecot.conf file :
=========================================
2015 Apr 17
0
Potentially breaking dict-proxy (dict-sql) backwards compatibility
Looks like the dict-proxy code doesn't currently do escaping newlines properly, but it still accidentally happens to work, because the data is stored in the escaped form. I'm thinking about fixing this, but this might break somebody's existing dict usage. But then again maybe nobody is actually using it now, especially because it hasn't been working exactly as expected. So, can
2011 Apr 25
0
dovecot & OCFS2 Cluster
Am 25.04.2011 19:02, schrieb Osvaldo Alvarez Pozo:
> hi all
>
> We have an ocfs2 cluster compose of 4 Debian lenny serveurs wich have
> access to an ISCSI LUN we have create a partition on this Lun and
> formated this partition as OCFS2.
> 2 serveurs does mail delivery (SMTP) and the two other are pop/imap
> servers. The smtp servers use dovecot LDA to deliver to mailboxes.
2007 Jan 03
1
I can't use sql auth
I need some help. I have compiled dovecot (1.0-rc15) with --with-mysql
option, when I execute the binary with --build-options I get this:
Build options: ioloop=poll notify=dnotify ipv6 openssl
SQL drivers:
Passdb: checkpassword passwd passwd-file shadow
Userdb: checkpassword passwd prefetch passwd-file static
In this case, when I execute dovecot I get this error:
dovecot: Jan 03 03:48:47 Error:
2004 May 07
2
@ERROR: auth failed on module -- PROBLEM SOLVED!
The man page for rsync(1) states:
--password-file
This option allows you to provide a password in a
file for accessing a remote rsync server. Note that
this option is only useful when accessing an rsync
server using the built in trans- port, not when using a
remote shell as the transport. The file must not be
world readable. It should contain just the password as
a single line.