Turn database logging on

hello all,
turn database logging on , - FRA configured, what i have to do?
1) can i go mount status and alter database in archivelog mode and then start the database?
or anything else like logging vs nologging, just confused

Hi
you can enable archivelog mode and force logging mode (for dataguard, streams,...).
ALTER DATABASE FORCE LOGGING;
or
ALTER DATABASE ADD SUPPLEMENTAL LOG DATA;
you find a lot of infos in the oracle dok.
In which context do you ask this question?
HTH

Similar Messages

  • Rollback segments - database logging

    Got a problem...
    We are trying to move data from one database to another using: INSERT INTO table1 (SELECT a,b,c FROM table2@db2). The problem we are having is that the amount of data being moved with this in sert command is too great - we are getting an error indicating that our rollback segment is not large enough - ORA-01562: failed to extend rollback segment number 4.
    Unfortunately, we are not going to be able to increase the size of the rollback segment any further than we already have. Is there a way to disable the database logging that occurs?
    I tried using INSERT INTO table1 dbms_disable_logging (SELECT a,b,c FROM table2@db2), but noticed no difference - same error.
    Any ideas?
    Thank you,
    Dan

    We use select..into all the time in an unlogged mode for speed and rollback space reasons.
    We replicate fifty million row tables with a minimal amount of rollback segment (<50MB).
    In unlogged mode we can replicate 50 million rows in under forty minutes - that's smokin!
    Oracle version 8 or greater introduced this concept. I am running 8.1.6.
    You need to alter the table to disable logging and then perform the select into.
    The table alter only takes seconds.
    ALTER TABLE IDMDBO.DIM_PLANS NOLOGGING
    Then do the select into and then turn logging back on (if so desired).
    You can also disable logging at the table space level.
    Keep in mind there are only a few database operations that can be performed unlogged and select..into is one of them.
    There is currently no way to carte blanche disable transaction logging - hopefully this will be coming soon!
    Cheers.
    - Brendan Sullivan
    null

  • Turning off logging.

    Is it possible to turn off logging for a session or the entire DB? (I know that it will make the DB unrecoverable, but that is of no concern.) How is this done?
    I found a nologging clausul that could be used when creating tables from another and creating indexes. But I could not figure out how to apply this to a session or an arbitrary query.

    Is it possible to turn off logging for a session or
    the entire DB? (I know that it will make the DB
    unrecoverable, but that is of no concern.) How is
    this done?I hope that you saying something about archive logging it it is the case then at mount stage say alter database noarchivelog and set log_archive_start=false
    I found a nologging clausul that could be used when
    creating tables from another and creating indexes.
    But I could not figure out how to apply this to a
    session or an arbitrary query.You can alter or create a table with nologging features it actually what ever DML actions performed on the table doesnot log so the recovery of the particular tables will definite miss when performing recovery.
    Creating an Index in NOLOGGING Mode: Example
    If the sample table orders had been created using a fast parallel load (so all rows were already sorted), you could issue the following statement to quickly create an index.
    /* Unless you first sort the table oe.orders, this example fails
    because you cannot specify NOSORT unless the base table is
    already sorted.
    CREATE INDEX ord_customer_ix_demo
    ON orders (order_mode)
    NOSORT
    NOLOGGING;

  • Run shutdown oc4j instance automatically when user Turn off/Log off

    Hi All,
    Can you help me anyone to run the shutdown oc4j instance automatically when user Turn off/Log off the application or the computer?
    I want to use any Schema level trigger if possible to solve the issue.
    I am using oracle Developer Suite 10g and Database 10g as well.
    Arif

    Ah, sorry I misunderstood your question (probably not enough coffee in the morning); anyway there are folders for scripts which should be executed on startup / shutdown or logon / logoff:
    Startup
    %SYSTEMROOT%\System32\GroupPolicy\Machine\Scripts\StartupShutdown
    %SYSTEMROOT%\System32\GroupPolicy\Machine\Scripts\ShutdownLogon
    %SYSTEMROOT%\System32\GroupPolicy\User\Scripts\LogonLogoff
    %SYSTEMROOT%\System32\GroupPolicy\User\Scripts\LogoffWrite a script to startup / shutdown your OC4J (probably calls to startinst.bat and stopinst.bat) and place them in the apropriate folders.
    cheers

  • MySQL syntax error with TestStand 4.0 database logging

    I had been using MS Access database to log results which worked fine but the access database is too limited. Switched to MySql. Database works fine and I can query it from Visual C++ and was able to create all my result tables fine from TestStand.
    I get a syntax error when actually trying to log results and it has to do with either a missing quote or and extra quote, I can't quite tell. I thought I saw a post on this somewhere but can't find it now. Here is the complaint from TestStand:
    An error occurred calling 'LogOneResult' in 'ITSDBLog' of 'zNI TestStand Database Logging'
    An error occurred executing a statement.
    Statement: UUT_RESULT.
    [MySQL][ODBC 3.51 Driver][mysqld-5.0.45-community-nt]You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DEFAULT VALUES' at line 1
    Description: [MySQL][ODBC 3.51 Driver][mysqld-5.0.45-community-nt]You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DEFAULT VALUES' at line 1
    Number: -2147467259
    NativeError: 1064
    SQLState: 37000
    Reported by: Microsoft OLE DB Provider for ODBC Drivers
    Description: Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done.
    Number: -2147217887
    NativeError: 0
    SQLState: 37000
    Reported by: Microsoft OLE DB Provider for ODBC Drivers
    Source: TSDBLog
    And here is all that appears in the MySql logfile:
    INSERT INTO UUT_RESULT DEFAULT VALUES
    070914
    You can't see it here but the string is truncated after the word VALUES. The next line starts with the odd number.
    Any ideas?
    Thanks,
    Bill Peters
    BAE SYSTEMS

    Sure. There were two bugs in the ini file that contains the default TS schemas (I think it was Default_Database_Options.ini or like that...).
    Anyway the table description for STEP_NUMERICLIMIT had for it's command line INSERT INTO MEAS_NUMERICLIMIT. I guess TestStand looked at that and said hmm I better create that table too. Then later down the page when you try to create MEAS_NUMERICLIMIT it says the table already exists even though it is empty. The generate SQL button builds a bad file and then the database viewer creates a bad database. I would have to go into MySql and drop the database. I had to save the schema under a custom name, edit it read it back in, generate a new SQL file, but then it would still fail validation because the ini files don't get updated until you exit TestStand. So basically I did this process 3 times before I got it right.
    It's wasn't a big deal but it's amazing how a little thing can cause a lot of work.
    The second bug, I'm not certain was initially in the file or somehow got set on the fly. There was a random int statement at the very end of the SQL table description for UUT_RESULT. It was also in the schema INI file. Since the int had no name and occurred in a odd place, it created a syntax error in MySql. Same fix as above.
    But like I said it's working great now. I like this approach because I serve it to the net with Apache and parse the database with simple PHP scripts.
    Thanks,
    Bill Peters
    BAE SYSTEMS

  • Change the database log on parameters in the run time with CR10 Delphi2007?

    Hi,
    I'm using crystal report 10 and Crystal VCL for Delphi. How can I change the database log on parameters in the run time?

    You have to use the ConnectBuffer. See [this|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes.do] note for details.
    Also, consider searching the notes database:
    https://www.sdn.sap.com/irj/scn/advancedsearch?cat=sdn_ossnotes&query=&adv=true
    The search; VCL database crystal, returns a number of notes that may be of use.
    Ludek

  • Is their a activeX api function to set the database option "database logging enabled" to true or false?

    Hello!
    I want to decide dynamically while running a sequence to log the results to a database or not.
    So I need to set the "database logging enabled" property by a activex function call.
    Does a activex api function exist? I didn't found one, or is their an other way to change the property value?
    Thanks and regards
    M. Brosig

    Hi,
    Ah! I understand.
    You can change the runtime properties from you sequence or inside your step by using the Lookup string of
    "RunState.Caller.Locals.DatabasesOptions.DisableDatabaseLogging"
    Use the TS API  PropertyObject.SetValBoolean("DatabasesOptions.DisableDatabaseLogging", 0, newValue) method with RunState.Caller.Locals as your ActiveX Reference. (where newValue would be True or False.)
    Depending at what level you perform this API method depends how many "RunState.Caller" you have in your lookup string.
    eg.
    My example of
    PropertyObject.SetValBoolean("DatabasesOptions.DisableDatabaseLogging", 0, newValue) with RunState.Caller.Locals as your ActiveX Reference is based on a step in MainSequence which has been called by the Process Model sequence.
    If you have a step in a Sub-Sequence of MainSequence then the lookup string would be
     "RunState.Caller.RunState.Caller.Locals" as the activeX reference.
    Hope this helps
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • Different decimal point character for numeric limit test vs multiple numeric test with database logging

    Hi all,
    I have a problem with decimal point character and database logging.
    I've deselected "Use Localized Decimal Point" in Station Options->Localization. Teststand should now use "." as decimal point character (ignore the "'s).
    When logging to database this is only true for Multiple numeric limit test results, not for Numeric limit test results.
    Numeric limit test results use "," as decimal point character where it should be "."
    I can't trust the localization settings on the PC as different endusers might have different settings.
    Example:
    (STEP_NAME and PROP_RESULT.DATA)
    Numeric limit test 1,50127667932332
    Multiple numeric limit test result_1 1
    Multiple numeric limit test result_2 1
    Multiple numeric limit test result_3 10.0304317
    I've changed the Limits->Numeric format for each test but this change is only applied to the report, not the database result.
    Read the manuals but didn't find anything...
    Have I missed something obvious, or is this some kind of bug?
    Teststand version is 2010.
    Windows versions are XP SP3 and Win7. Same behavior on both OS.

    When something is logged to the database as a number, the database is probably storing it in a way that is independent of any sort of decimal point localization. When you view the items in the database however it is probably going to show you the number based on the current locale settings. This is likely purely cosmetic, for display purposes.
    -Doug

  • Sql backup detected corruption in database log

    Unfortunately I am not a SQL Admin.  I have moderate SQL experience at best.
    I have  four or five database in SQL 2005 that were the primary members of a mirror. The physical server (the one I am currently working on) was virtualized (P2V) then started as a virtual machine. Downtime was minimal. Maybe an hour or so
    I believe.
    Although I didn't check immediately after boot up, I have since noticed the mirror status is suspended.  Attempts to resume fail.  It appears my best bet is to backup the database, restore on the target, then recreate the mirror.  The problem
    is, attempts to run a Full backup of the database returns the following error on all the database I've tried to backup.  After about 20% is says: SystemData.SqlClient.SqlError: BACKUP detected corruption in the database log.  Check the errorlog for
    more information. (Microsoft.SqlServer.Smo)
    I've tried setting the recovery type to Simple, but that fails telling me the database is part of a mirror and to be honest I'm not sure setting to Simple is the best option. 
    As it stands, the mirror is broken and I can not perform a full backup. 
    Any suggestions on how to proceed are greatly appreciated.
    Thank you.

    Thank you Uri.  Following are the results.  Again, I'm not a SQL Admin but it appears this does not indicate errors?
    DBCC results for 'TAIQRY'.
    Service Broker Msg 9675, State 1: Message Types analyzed: 14.
    Service Broker Msg 9676, State 1: Service Contracts analyzed: 6.
    Service Broker Msg 9667, State 1: Services analyzed: 3.
    Service Broker Msg 9668, State 1: Service Queues analyzed: 3.
    Service Broker Msg 9669, State 1: Conversation Endpoints analyzed: 0.
    Service Broker Msg 9674, State 1: Conversation Groups analyzed: 0.
    Service Broker Msg 9670, State 1: Remote Service Bindings analyzed: 0.
    DBCC results for 'sys.sysrowsetcolumns'.
    There are 546 rows in 5 pages for object "sys.sysrowsetcolumns".
    DBCC results for 'sys.sysrowsets'.
    There are 80 rows in 1 pages for object "sys.sysrowsets".
    DBCC results for 'sysallocunits'.
    There are 93 rows in 1 pages for object "sysallocunits".
    DBCC results for 'sys.sysfiles1'.
    There are 2 rows in 1 pages for object "sys.sysfiles1".
    DBCC results for 'sys.syshobtcolumns'.
    There are 546 rows in 5 pages for object "sys.syshobtcolumns".
    DBCC results for 'sys.syshobts'.
    There are 80 rows in 1 pages for object "sys.syshobts".
    DBCC results for 'sys.sysftinds'.
    There are 0 rows in 0 pages for object "sys.sysftinds".
    DBCC results for 'sys.sysserefs'.
    There are 93 rows in 1 pages for object "sys.sysserefs".
    DBCC results for 'sys.sysowners'.
    There are 15 rows in 1 pages for object "sys.sysowners".
    DBCC results for 'sys.sysprivs'.
    There are 135 rows in 1 pages for object "sys.sysprivs".
    DBCC results for 'sys.sysschobjs'.
    There are 86 rows in 1 pages for object "sys.sysschobjs".
    DBCC results for 'sys.syscolpars'.
    There are 579 rows in 10 pages for object "sys.syscolpars".
    DBCC results for 'sys.sysnsobjs'.
    There are 1 rows in 1 pages for object "sys.sysnsobjs".
    DBCC results for 'sys.syscerts'.
    There are 0 rows in 0 pages for object "sys.syscerts".
    DBCC results for 'sys.sysxprops'.
    There are 9 rows in 1 pages for object "sys.sysxprops".
    DBCC results for 'sys.sysscalartypes'.
    There are 27 rows in 1 pages for object "sys.sysscalartypes".
    DBCC results for 'sys.systypedsubobjs'.
    There are 0 rows in 0 pages for object "sys.systypedsubobjs".
    DBCC results for 'sys.sysidxstats'.
    There are 151 rows in 2 pages for object "sys.sysidxstats".
    DBCC results for 'sys.sysiscols'.
    There are 266 rows in 2 pages for object "sys.sysiscols".
    DBCC results for 'sys.sysbinobjs'.
    There are 23 rows in 1 pages for object "sys.sysbinobjs".
    DBCC results for 'sys.sysobjvalues'.
    There are 187 rows in 27 pages for object "sys.sysobjvalues".
    DBCC results for 'sys.sysclsobjs'.
    There are 14 rows in 1 pages for object "sys.sysclsobjs".
    DBCC results for 'sys.sysrowsetrefs'.
    There are 0 rows in 0 pages for object "sys.sysrowsetrefs".
    DBCC results for 'sys.sysremsvcbinds'.
    There are 0 rows in 0 pages for object "sys.sysremsvcbinds".
    DBCC results for 'sys.sysxmitqueue'.
    There are 0 rows in 0 pages for object "sys.sysxmitqueue".
    DBCC results for 'sys.sysrts'.
    There are 1 rows in 1 pages for object "sys.sysrts".
    DBCC results for 'sys.sysconvgroup'.
    There are 0 rows in 0 pages for object "sys.sysconvgroup".
    DBCC results for 'sys.sysdesend'.
    There are 0 rows in 0 pages for object "sys.sysdesend".
    DBCC results for 'sys.sysdercv'.
    There are 0 rows in 0 pages for object "sys.sysdercv".
    DBCC results for 'sys.syssingleobjrefs'.
    There are 140 rows in 1 pages for object "sys.syssingleobjrefs".
    DBCC results for 'sys.sysmultiobjrefs'.
    There are 131 rows in 1 pages for object "sys.sysmultiobjrefs".
    DBCC results for 'sys.sysdbfiles'.
    There are 2 rows in 1 pages for object "sys.sysdbfiles".
    DBCC results for 'sys.sysguidrefs'.
    There are 0 rows in 0 pages for object "sys.sysguidrefs".
    DBCC results for 'sys.sysqnames'.
    There are 91 rows in 1 pages for object "sys.sysqnames".
    DBCC results for 'sys.sysxmlcomponent'.
    There are 93 rows in 1 pages for object "sys.sysxmlcomponent".
    DBCC results for 'sys.sysxmlfacet'.
    There are 97 rows in 1 pages for object "sys.sysxmlfacet".
    DBCC results for 'sys.sysxmlplacement'.
    There are 17 rows in 1 pages for object "sys.sysxmlplacement".
    DBCC results for 'sys.sysobjkeycrypts'.
    There are 0 rows in 0 pages for object "sys.sysobjkeycrypts".
    DBCC results for 'sys.sysasymkeys'.
    There are 0 rows in 0 pages for object "sys.sysasymkeys".
    DBCC results for 'sys.syssqlguides'.
    There are 0 rows in 0 pages for object "sys.syssqlguides".
    DBCC results for 'sys.sysbinsubobjs'.
    There are 0 rows in 0 pages for object "sys.sysbinsubobjs".
    DBCC results for 'sysdiagrams'.
    There are 0 rows in 0 pages for object "sysdiagrams".
    DBCC results for 'sys.queue_messages_1977058079'.
    There are 0 rows in 0 pages for object "sys.queue_messages_1977058079".
    DBCC results for 'sys.queue_messages_2009058193'.
    There are 0 rows in 0 pages for object "sys.queue_messages_2009058193".
    DBCC results for 'sys.queue_messages_2041058307'.
    There are 0 rows in 0 pages for object "sys.queue_messages_2041058307".
    CHECKDB found 0 allocation errors and 0 consistency errors in database 'TAIQRY'.
    DBCC execution completed. If DBCC printed error messages, contact your system administrator.

  • How to turn of logging on external tables

    Greetings,
    I have created an external table but am unable to see how to turn off logging. I don't care about the bad and the discards, etc., I want to completely eliminate the writing to a log file as I read from the table. Is this possible and if so how? Hopefully I have stated the problem clearly.
    Thanks.
    Bill Wagman

    Read/search the docs?
    For example:
    http://www.oracle.com/pls/db102/ranked?word=external+table
    or
    Read/search http://asktom.oracle.com
    Is this possible and if so how?Omit whatever you don't want or need...it's just that simple...

  • Turning on logging of JSF 1.2 container inside Tomcat

    I have tried to turn on logging for the JSF 1.2 container inside Tomcat 6, but haven't been successful. I followed the steps outlined on Core JavaServer Faces book (p. 634), but the catalina.out file doesn't contain more traces than when logging is not turned on.
    I have copied the logging.properties files from jre/lib to Tomcat conf directory. I have set java.util.logging.ConsoleHandler.level=FINEST and I have added a line at end of file (com.sun.faces.level=FINEST) to the logging.properties. I have also set CATALINA_OPTS in catalina.sh to point to the updated logging.properties file in Tomcat conf directory.
    I know the logging.properties file gets loaded because when I changed the global log level (.level) to FINEST, catalina.out contained not just INFO level logs but also FINE level logs. However, this logging is not valuable to me because there is way too much information (FINEST for all modules). I would like to selectively turn on logging for JSF.
    Martin

    Have same problem with jsf-impl.jar bundled with facelets-1.1.11
    Problem described in facelets FAQ here http://wiki.java.net/bin/view/Projects/FaceletsFAQ

  • An error occurred calling 'LogMultipleResults' in 'ITSDBLog' of 'zNI TestStand Database Logging'

    A test rig that worked fine started thowing the floowing error for me.
    See screen capature.
    Problem doesn't appear on the development PC.
    The code that I'm using is using the default settings for logging to the access database that ships with TS. All worked fine for a few weeks now it keeps ... breaking.
    An error occurred calling 'LogMultipleResults' in 'ITSDBLog' of 'zNI TestStand Database Logging'
    An error occurred executing a statement.
    Statement: STEP_RESULT.
    Description: The changes you requested to the table were not successful because they would create duplicate values in the index, primary key, or relationship. Change the data in the field or fields that contain duplicate data, remove the index, or redefine the index to permit duplicate entries and try again.
    Number: -2147217887
    NativeError: -105121349
    SQLState: 3022
    Reported by: Microsoft JET Database Engine
    Source: TSDBLog
    Attachments:
    NIDBerror.png ‏17 KB

    Hello,
    As far as I remember the DB size was approx ~ 1.5 GB, I don't have access to that test station till Wednesday so I'll double check but it could be as simple as exceeding the DB size, I'll verify that when I'm on-site again.
    To answer a few questions from Scott:
    1) I'm using TestStand 2012 ( as it came with the installation disks shipped in the first quarter of this year ).
    The test station is offline so no updates have been applied since the install.
    2) I'm using the default NI Schema and an Access DB. ( No modifications have been made )
    3) I'm using the On-The-Fly feature logging feature both to ATML and the DB.
    ATML works with no issues, DB used to work fine until it refused.
    4) Fails every time when I start the sequence, disabling logging to the Database sorts the issue out.
    5) I originally used the BatchUUT.seq example that ships with test stand.
    I have developed a test that has three test sockets that have a common Initialize, Run Tests in parralel and have a sequence of common test steps.
    Scott:
    The issue you've sent speaks of UUIDCreate; I'm gettin issues with the STEP_RESULT .... I think these things are not related.
    Secondly I'm suing TS 2012 so a fix should have been propagated to my version.
    So to answer your question I'm using multiple processes on one computer.
    I will emphasize that everything worked fine up to a certain point ... so I'm guessing Doug might be right on the money with the fact that I've chosen a misfortunate Database ( Access ) for the job.
    Regards,
    Maciej

  • "Database log mode" &  "Automatic archival"

    I was asked to do the below
    "Database log mode" should be set to
    "No Archive Mode" now.
    Do not mix up "Database log mode" with
    "Automatic archival".
    Can you please tell me how to "disable databse log mode", with Automatic Archival enabled.
    Regards,
    Susan

    From documentation:
    ARCHIVELOG mode
    The mode of the database in which Oracle copies filled online redo logs to disk. Specify the mode at database creation or by using the ALTER DATABASE statement. You can enable automatic archiving either dynamically using the ALTER SYSTEM statement or by setting the initialization parameter LOG_ARCHIVE_START to TRUE.
    Running the database in ARCHIVELOG mode has several advantages over NOARCHIVELOG mode. You can:
    * Back up the database while it is open and being accessed by users.
    * Recover the database to any desired point in time.
    To protect the ARCHIVELOG mode database in case of failure, back up the archived logs.
    Configuring ARCHIVELOG Mode For the Database<a>
    <br>
    Or you can check this tutorial from Oracle:
    Disabling Automatic Archiving
    <br>
    <br>
    Or something like this:<br>
    sqlplus /nolog
    connect / as sysdba
    shutdown
    startup mount exclusive
    alter database noarchivelog
    alter database open
    <br>
    And I don't know if it's needed to have automatic archival enabled since the database will not be in archive mode.

  • Database Log Mode

    Hi all,
    What is the method to convert my Database Log Mode to ARCHIVE
    Thanks,
    - Sri

    Hi,
    but, what is this USE_DB_RECOVERY_FILE_DEST?From Documentation...
    "The LOG_ARCHIVE_DEST_n initialization parameter defines up to ten (where n = 1, 2, 3, ... 10) destinations, each of which must specify either the LOCATION or the SERVICE attribute to specify where to archive the redo data. All other attributes are optional. Note that whether you are specifying the LOCATION attribute or the SERVICE attribute, it must be the first attribute supplied in the list of attributes."
    http://download-west.oracle.com/docs/cd/B19306_01/server.102/b14237/initparams100.htm
    Additional Info:
    Re: USE_DB_RECOVERY_FILE_DEST
    Cheers,
    Marcello M.
    Message was edited by:
    Marcello M.

  • Database Log file Shrink information

    Hello Team,
    Database log file shrink information: Due to space problem
    One of my database having 600 gb,under  600 gb log file having 260 gb, in this database we take full backup daily no log backup. If we shrink the log file any impact is happen?
                   We shrink the log file internally what will happen?
    One of my database having 600 gb,log file having 260 gb, in this database we take full backup daily and every 15 min take log backup.
    This is scenario we shrink the log file what will happen.

    Hello,
    You should not try to shrink the log file regularly, because is resource intensive, it takes a lot of time and it creates fragmentation on the disk storage.
    If you don’t backup the log files of the databases (option 1) you don’t have the ability to restore to a point in time between backups full and differential. If
    you don’t want to backup files then it makes sense to change the recovery model to simple.
    Backing up the logs regularly minimize the risk of the logs getting filled and extending their size.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

Maybe you are looking for

  • Qosmio x770/00x - button 1 does not work pressing 6 and other button

    This is going to sound so weird, but bear with me... I just got a Qosmio x770/00x a couple of weeks ago, mostly for gaming purposes. I play in left-handed configuration, using the Num pad as directional keys, with some of the other non-directional nu

  • Not sure if I have a problem

    Hi All, Well, have my MBP 2.53 and started setting it up but seem to have a couple of issues and not sure if it's the MBP or if it's normal so any advice or input would be helpful. 1. When repairing permissions on the Unibody (10.5.5 with all updates

  • RTMP and RTMPF on mobile: what can be done on IOS and Android ?

    What exactly can be done to publish/play video stream on mobile (AIR mobile) ? Maybe someone knows (yes/no) answers to these simple questions ? 1) can android publish video on AIR ? (H263) 2) can android publish video on AIR ? (H264) 3) can android p

  • Training SpamAssassin with Ham E-Mail in the Quarantine Folder

    From time to time (maybe once or twice a week), I get a legitimate piece of e-mail quarantined in the /var/virusmails folder. What is the best way to send a file (e.g., "spam-v9TygbyHYnHz.gz") like that through SpamAssassin so it learns that the e-ma

  • Wireless Router issues with MacBook Pro and Windows XP laptops

    hello, I have a d-link wireless router and I have a MacBook Pro and a Windows XP laptops. My issue is that I have to keep rebooting either the router or the modem (which I both replaced) and it still does not work right. Now can mac and windows work