search for: databases

Displaying 20 results from an estimated 28602 matches for "databases".

Did you mean: database
2001 Nov 17
1
rsync hangs or exists without copying anything
I am trying to mirror a file system using rsync. The command I am using is of the form: rsync -a /fs/home/6/ /usr/fs/home/6 /fs/home/6/ is an NFS file system, /usr/fs/home/6 is a local disk. With versions 2.4.6 and 2.4.7pre1, rsync hangs at random places during the building file list phase. I tried with and without -v option(s) and tried breaking the file system down into smaller chunks with no
2011 Apr 19
5
Check that my sqlite database populated
...39;'ve made a very simple application following the footsteps of http://guides.rubyonrails.org/getting_started.html. I managed to insert my objects (i checked the existence of inserted objects through the rails console with a simple Foo.all ) but if I run sqlite3 from command line and then run .databases I can''t see any database created. I thought I could see the databases set in my database.yml ( database: db/development.sqlite3 database: db/test.sqlite3 database: db/ production.sqlite3 ) but the .databases command shows nothing. sqlite3 --version 3.5.6 rails -v 3.0.5 O.S. Windows 7 Tha...
2013 Apr 30
0
Extrafont package: Fonts are not successfully installed
Hi, I am using Extrafont package to install more fonts for my graphs. My primary graphic tool is ggplot2. I seem to have problem installing the package, but could not pinpoint where it is. I try to follow the instruction here: https://github.com/wch/extrafont I guess (but am not sure) the fonts are successfully installed. Problem encountered: 1. The following line sometimes yields an
2006 Aug 03
5
Database configuration across developers!
Hi, I have what might be a silly question but is there any way to put some of the database configuration information into a separate file? For instance, in config/database.yml I have: developer_database: &developer_database adapter: mysql username: me password: something host: 127.0.0.1 development: <<: *developer_database database: foobar_development test: <<:
2012 Mar 08
1
Warnings when plotting after x11() in R 2.14.2
Dear R-help, I recently upgraded from R 2.13.1 to R 2.14.2 and now get warning messages when plotting after using x11(). Example: > plot(rnorm(10)) ### no warnings > x11(); plot(rnorm(10)) Warning messages: 1: In axis(side = side, at = at, labels = labels, ...) : Font family not found in Windows font database 2: In axis(side = side, at = at, labels = labels, ...) : Font family not
2013 Oct 30
2
Lucene 3.6.2 backend for xapian (#25)
...egment, then the second > segment, until the last segment. Iteration over all terms should return the terms in sorted order (by byte value) and without duplicates, neither of which is achieved by handling each segment in turn like this. But we already handle merging allterms lists for multiple databases. Cheers, Olly
2006 May 02
17
Tests just deleted my production Database!!! PLEASE HELP
Running the functional tests has deleted the data in my production database!!! please help!! Using rails 1.1.1 + Oracle. This is my database.yml file : development: adapter: oci host: "V2:1521/TIM" username: salt password: oracle1 test: adapter: oci host: "V2:1521/TIM" username: rectest password: oracletest production: adapter: oci host:
2008 Nov 21
1
Multiple databases vs Single large database
...e for a specific user's file (based on file name, title, description). Although at some point we may decide we want functionality to search for files for a list of users or all users. I was planning on having a xapian database for each user's files. Would it be better this way (multiple databases), or to have on large database for all users files, as I'm doing with mysql. I'm thinking mainly with regard to performance, feel free to add other thoughts. Thanks Bradley
2006 Jan 24
2
SwitchTower and multiple database.yml files - how do you deal with them?
...ng these instructions: http://wiki.rubyonrails.com/rails/pages/HowtoUseRailsWithSubversion The part to note is where I ignore database.yml, allowing different developers to keep their own database.yml without clobbering other developers'' files. Sounds good. We typically use local MySQL databases for local development and the production server uses a remote db server running PostGres. I just started deploying with SwitchTower, however, so, at first checkout, there was no database.yml. That''s ok. I created it and all is well. Except when I deploy the next version. No database.y...
2006 May 02
1
Tests just deleted my production Database!!!
Sorry, in my haste I forgot to modify the subject. 5/2/06, "Christian R. Garner" <olus@digitalapathy.net>wrote: > > All assumptions aside, "rectest" and "salt" are usernames not > databases/schemas according to the pasted config. If they were in fact > different databases/schemas, this problem could never have happened. > While > different database brands may have tricks for ways to handle users and > what > they perceive as a database/schema, the fact remains that if...
2008 Dec 03
3
disable database
Hi, How do I disabled asterisk to use database and storage voicemail in directory. Im getting the below error [Dec 3 19:08:53] WARNING[4934]: app_voicemail.c:3430 inboxcount: Failed to obtain database object for 'asterisk'! [Dec 3 19:08:55] WARNING[5129]: app_voicemail.c:2353 last_message_index: Failed to obtain database object for 'asterisk'! [Dec 3 19:09:04]
2011 May 30
1
CLI command 'database deltree' doesn't remove family with space in its name
While playing with DB function in Dialplan, I have added some garbage in AstDB. These are some family names with space in them. See this, demo*CLI> database show /18-05-2011 00:00:0052011175221575/TESTDATE : 2011-05-14 21:33:46 /18-05-2011 00:00:0052011175221575/TEST1 : 410 /18-05-2011 00:00:0052011175221575/TEST2 : 155 /18-05-2011 00:00:0052011182614252/TEST3 :
2006 May 03
3
SQL book for Rails developers?
I can design basic Rails models without any trouble, and I feel pretty comfortable at the mysql command prompt. But some of these new database features in Rails 1.1 have me scratching my head: polymorphic associations, join models, etc. What is all that? I think I need a book that covers the advanced database topics one would need to know as a Rails developer -- not necessarily
2007 Oct 10
2
Something to think about
...asonably straightforward, because Xapian supports this nicely: except that "Xappy" generates a "fieldname->prefix" mapping automatically. The prefix which corresponds to a particular field is therefore hidden from the user, and crucially, it may be different in different databases. My current plan is to add a "databaseID" term to each document, and construct a composite query. For example, the search "author:foo" across databases with ids "db1" and "db2", where the prefix for author in db1 is "A" and the prefix for autho...
2010 Apr 15
3
Same model over multiple databases problem
Hello, I run many gameservers (about 10), each gameserver has a different database and all gameserver''s databases has the table "players" which is associated to the model Player. So every time I want to work with the Player model I need connect to a different database depending on which gameserver I am working on. My problem is that I need to make rails choose which database to use before creating/l...
2006 May 02
1
Tests just deleted my production Database!!! PLEASE
When you run your functional tests, rake wipes the "test" database clean and recreates it based on what is in the "development" database. Since it appears you are using the same database for both, that would explain why you lost your data. In addition, if you omit the data needed to access the development database you will get an error like you described, because
2006 Nov 17
5
configure a rails app for multiple databases
Hello Rails community I cannot seem to find via Google what I had hoped would be a simple issue On a single DB system (currently, postgres 8.1.4), I have two databases, each containing multiple tables. I would like to configure my app and database.yml to recognize these two databases. What is the corrrect config for the database.yml ? Is it something like: > production: > adapter: postgresql > database: database1, database2 > etc. ?? Is there...
2007 Oct 26
3
Selecting a database from the application itself?
Hi everybody, I just started thinking about a project and am seeking some help regarding its design. The idea would be to create labels (i.e. address labels).I could let users type the text manually, but I dont think they would appreciate that when they''ll want to print 5000 addresses. I can also probably let them import csv files, that should not be a problem, but playing with those
2012 Apr 04
7
new rails project error
Hi all, I install Ruby1.9.2po0 and Rails3.2.3 on RedHat5 When I create a project "rails nwe chapter" It show below error message: ************************************************************* Installing sqlite3 (1.3.5) with native extensions Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension. /usr/local/ruby/bin/ruby extconf.rb checking for
2011 Mar 04
1
swapping database mid replication
The Xapian documentation talks about a situation where you don't want to do two database swaps while in the process of replicating. It says... To confuse the replication system, the following needs to happen: 1. Start with two databases, A and B. 2. Start a replication of database A. 3. While the replication is in progress, swap B in place of A (ie, by moving the files around, such that B is now at the path of A). 4. While the replication is still in progress, swap A back in place of B. What if we omit step #4? Does that mess up...