Verify column format - HH:MM, HH between 00 & 12 and MM between 00 & 59

CREATE TABLE test
(t_TIME AS VARCHAR2(5));
INSERT INTO test VALUES('18:30');
INSERT INTO test VALUES('  : ');
INSERT INTO test VALUES('15:00');
INSERT INTO test VALUES(09:00');This represent a table of data that have from source, so while time data is varchar2 is irrelevant at this stage. The first phase/rule to apply is:
If t_time isnt in format of HH:MM, HH between 00 and 12 and MM between 00 and 59, then it has be set to 00:00.
Any ideas how this can be done.

You are really very boring.
Do you plan to outsource the complete application development to this forum?
create or replace verify_time(p_tme in varchar2) return varchar2 is
dummy date;
begin
select to_date('11-09-2001 '||p_time,'dd-mm-yyyy hh24:mi')
into dummy
from dual;
return 'T';
exception
when others then return 'F';
end;
It is as simple as that. And you couldn't do that yourself?
Sybrand Bakker
Senior Oracle DBA

Similar Messages

  • Save System-Wide Column Formats privilege unavailable

    OBIEE 11.1.1.5
    I go into the Manage Privileges screen and under the Formatting->Save System-Wide Column Formats option, there are no roles listed
    and there doesn't appear to be any way to add a role. So now I have no way to save a system-wide default even logged in as an
    administrator. Every other privilege is fine except this one. Any ideas how this might have occurred and how to add a role to the
    privilege?

    MuRam,
    You are posting a link to OBIEE 10g documentation, when the OP has clearly stated he is dealing with OBIEE 11.1.5.
    I am facing the same issue - Manage Privileges > Formatting > Save System-Wide Column Formats - there is no link for me to click on that allows me to manage that privilege.
    Anyone know how to fix this?
    Thanks.

  • Crosstab column formatting

    I'm creating a crosstab report with a Current Year & a Last Year column.  I've added 2 calculated columns to show a variance $ and a variance % between current & last year.
    I have no problem coming up with the results.  My dilemma is to format the 2 added columns as currency and percentage.  When I try to change the percentage column's format to percent, all other columns in the crosstab also change to percent.
    Can someone out there tell me if there's a way to create 2 different formats for the 2 added columns?  I'd really appreciate it.  Thank you very much for your help.  I've been struggling with this issue for quite sometime.

    Hi Fione,
    Here's what you need to do:
    1) Assuming that the datatype of the field used in the 'column' of the Crosstab is 'Date', right-click the 'Variance $' header cell > Select Calculated Member > Edit ColumnValue Formula and use this code:
    Cdate(1890,01,01)
    2) To the same for the % column however, use this code:
    Cdate(1890,01,02)
    3) Right-click one of the summary cells in the 'Variance $' column > Format Field > Number tab > Customize > Currency Symbol tab > Check 'Enable Currency Symbol' > Click the formula button beside 'Position' and use this code:
    if GridRowColumnValue("Date_Field_used_in_column") = cdate(1890,01,01) then
    crLeadingCurrencyInsideNegative
    else if GridRowColumnValue("Date_Field_used_in_column") = cdate(1890,01,02) then
    crTrailingCurrencyOutsideNegative
    4) Click the formula button beside 'Currency Symbol' and use this code:
    if GridRowColumnValue("Date_Field_used_in_column") = cdate(1890,01,01) then
    "$"
    else if GridRowColumnValue("Date_Field_used_in_column") = cdate(1890,01,02) then
    else ""
    Note: In both the formulae above, replace "Date_field_used_in_column" with the database field you've used in the crosstab's column. The double quotes ARE NEEDED and make sure to remove any parenthesis that CR automatically addds when you add a database field in the formula editor.
    Let me know how this goes.
    -Abhilash

  • List all of the existing column and there column format and data format?

    Hello Gurus,
    I am new to OBIEE and i have a requirement to verify the column format and data format for all of the existing column while generating a analysis report. Is there any way i can list down all of the columns which are exposed and list there column format and data format?
    For checking the individual column properties i know there is an option called 'Column Properties' but want to know all in once go.
    Kindly help me and thanks in advance.
    Thanks

    I don't think you have anything in answers to get that, Go to Repository and Utilities -> Generate Metadata Dictionary that will give columns and datatype.
    Award points if it helps
    ~Srix

  • Help with "clearing" in three column format

    The code is pasted in below of a three column page I have created.  However, the background color in the sidebars does not reach to the footer it follows the content.  I know that I need to "clear" the columns but as a newbie I'm not sure how to do so.  Any help would be appreciated.
    Thanks!
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    <!--
    body  {
    font: 100% Verdana, Arial, Helvetica, sans-serif;
    background: #CCC;
    margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
    padding: 0;
    text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
    color: #000000;
    .thrColLiqHdr #container {
    width: 80%;  /* this will create a container 80% of the browser width */
    background: #FFFFFF;
    margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
    border: 1px solid #000000;
    text-align: left; /* this overrides the text-align: center on the body element. */
    .thrColLiqHdr #header {
    background: #DDDDDD;
    padding: 0 10px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
    .thrColLiqHdr #header h1 {
    margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
    padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
    /* Tips for sidebars:
    1. Since we are working in percentages, it's best not to use side padding on the sidebars. It will be added to the width for standards compliant browsers creating an unknown actual width.
    2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".thrColLiqHdr #sidebar1 p" rule.
    3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
    .thrColLiqHdr #sidebar1 {
    float: left; /* this element must precede in the source order any element you would like it be positioned next to */
    width: 30%; /* since this element is floated, a width must be given */
    background: #3399FF; /* the background color will be displayed for the length of the content in the column, but no further */
    padding: 15px 0; /* top and bottom padding create visual space within this div  */
    .thrColLiqHdr #sidebar2 {
    float: right; /* this element must precede in the source order any element you would like it be positioned next to */
    width: 30%; /* since this element is floated, a width must be given */
    background: #3399FF; /* the background color will be displayed for the length of the content in the column, but no further */
    padding: 15px 0; /* top and bottom padding create visual space within this div */
    .thrColLiqHdr #sidebar1 p, .thrColLiqHdr #sidebar1 h3, .thrColLiqHdr #sidebar2 p, .thrColLiqHdr #sidebar2 h3 {
    margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
    margin-right: 10px;
    /* Tips for mainContent:
    1. the space between the mainContent and sidebars is created with the left and right margins on the mainContent div.
    2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 300px or smaller (this includes images).
    3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
    .thrColLiqHdr #mainContent {
    margin: 0 24% 0 23.5%; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
    .thrColLiqHdr #footer {
    padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
    background:#DDDDDD;
    .thrColLiqHdr #footer p {
    margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
    padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
    /* Miscellaneous classes for reuse */
    .fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page The floated element must precede the element it should be next to on the page. */
    float: left;
    margin-right: 8px;
    .clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain its child floats */
    clear:both;
        height:0;
        font-size: 1px;
        line-height: 0px;
    a:link {
    text-decoration: none;
    color: #000;
    a:visited {
    text-decoration: none;
    color: #000;
    a:hover {
    text-decoration: none;
    a:active {
    text-decoration: none;
    -->
    </style><!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .thrColLiqHdr #sidebar2, .thrColLiqHdr #sidebar1 { padding-top: 30px; }
    .thrColLiqHdr #mainContent { zoom: 1; padding-top: 15px; }
    /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    <![endif]--></head>
    <body class="thrColLiqHdr">
    <div id="container">
    <div id="header">
        <h1>Header</h1>
      <!-- end #header --></div>
      <div id="sidebar1">
    <h3>Today's Top Health News</h3>
        <p>Vitmains C and E cleared in melanoma scare. </p>
    <p>Older men often binge drink, too</p>
    <p>Short kids are psychologically OK</p>
    <p>New drug for schizophrenia and bipolar disorder approved</p>
    <p>Mediterrenean Diet plus exercise lowers risk of Alzheimer's Disease</p>
    <p>Not enough sleep may raise the risk of diabetes</p>
      <!-- end #sidebar1 --></div>
      <div id="sidebar2">
        <h3>Podcasts: In-depth, awarding winning Radio Health Journal Reporting</h3>
        <p><img src="../graphics/I-am-safe-now.jpg" width="106" height="80" align="left" />
    <p>Perinatal Hospice: Giving meaning and easing grief when birth to death is measured in hours </p>
    <p>Medical Mystery Shoppers: Fake patient who keep healthcare quality high</p>
    <p>Pediatric Live Transplants: Children can receive a slice from a living adult donor</p>
    <p>The Selling of healthcare reform: Why revved up rhetoric matters more than facts</p>
    <p>Early Alzheimer's diagnosis: The benefits of early treatment</p>
    <p>Dementia drugs: Are medications too common in nursing homes?</p>
    <p>Pregorexia: Anorexia while pregnant-more common than we think</p>
    <p>Mop men: People who clean up after unexpected death</p>
    <p>Gout: The return of the "disease of kings"</p>
    <p>Prevention and healthcare reform: How much money can prevention really save?</p>
      <!-- end #sidebar2 --></div>
      <div id="mainContent">
        <h1> Featured Content </h1>
        <p><a href="http://speakaboutbipolardepression.com/">The economy is leadiny many Americans to feel additional stress.  This is particularly concerning for the more than 8 million Americans with bipolar disorder.</a></p>
        <p>As modern medicine extends life expectancy, prevelance of Alzheimer's Disease in the U.S. is expected to skyrocket from about 5 million to 16 million in 2050.  Understanding risk factors is more important than ever. </p>
        <p>You might thing a blood transfusion ordered by a physician would be safe and effective.  But a new analysis by an international panel sbows most transfusions have little benefit.  In fact, they may be dangerous.</p>
        <h2>Information about our program's guests </h2>
        <p>Developing A Brain Eraser: Dr. Andre Fenton</p>
    <p>Too sexy, Too soon: Kids, the media, and sex: Dr. Diane Levin, author of "So Sexy So Soon: The new sexualized childhood and what parents can do to protect their kids"</p>
    <p>Everything You Always Wanted To Know About...Death: Harold Schechter, author of "The Whole Death Catalog: A Lively Guide To The Bitter End"</p>
    <p>Borderline Personality Disorder: Randi Kreger, cofounder of BPDcentral.com</p>
    <!-- end #mainContent --></div>
    <!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats --><br class="clearfloat" />
      <div id="footer">
        <p>Footer</p>
      <!-- end #footer --></div>
    <!-- end #container --></div>
    </body>
    </html>

    Are you posting to the right forum? This is a Designer form where we are working with PDF forms. This looks like HTML!
    Paul

  • Export in column format

    Dear Gurus,
    What if i check the option export in column format while export the database?
    Thanks,
    Sekhar

    Hi,
    Adding to the John comments,
    If you export the database in the column format the size of the export file will be much more than the data in the cubes.
    I had an experience where I used to export the data in column format which results in a file which was
    twice the size of the file without the column format.
    If you have a lot of data in essbase cubes, I advice you to export data in non columnar format in order to save the disk space.
    Thanks,
    Sourabh

  • Spacing at the end of each column in 3 column format

    I am copying text with footnotes from a word file into Pages. When the text is pasted into the three column format some of the columns are really short. They don't even make it half way to the start of the foot notes on the bottom of the page. How can I make the columns extend to the start of the foot notes on all of the pages? Please Help. Thank you.

    No luck there- I had actually already tried that. The only thing that has worked so far, after many attempts, is to erase the footnotes and reinsert them. (So I'm guessing all the issues stem from pasting over from Word.) If there's an easier way, I'd love to find it since this is a rather long paper with lots of footnotes. (And I can't just leave the document in Word...based on my formatting tries and research, it's not even really capable of doing the footnotes the way I'd like them to be.)

  • PDF export for  columns formatted as HTML

    Hello,
    I've created a report having some columns formatted as HTML .
    in the PDF file exported from BI Answers dashboard, HTML tags are shown instead of formatted value.
    (for example : "div style="width:100%;background-color:#FF3300">89.12%</div" instead of 89.92%)
    Any ideas how to fix this ?
    BI version : 10.1.3.3.3
    Thank you.

    Hi dragosv,
    I've also encountered similar problems to that. The OBIEE process does not first evaluate the code before it exports to other tools like PDF and Excel.
    Here are two options:
    1) Submit an SR to Oracle and have them declare it a bug
    2) Print to HTML first, then print the HTML to PDF. It adds a step but at least you can download your document the way you want.
    Best regards,
    -Joe

  • How do I maintain column formatting when converting from PDF to Excel?

    How do I maintain column formatting when converting from PDF to Excel? All info is no longer on the lines or in the columns they started out being in? Any help would be appreciated.

    Sara,
    Perhaps I am expecting too much from Adobe ExportPDF. The reason I subscribed to this service, for which I pay a yearly fee, was that I need a way to  convert scanned and digital documents to Word &/or Excel. I read the link you included but to be candid the more I tried to understand what was written the more confused I got. The process should not be this difficult. Currently I am using a NEAT scanner to create PDF documents of whatever I scan. After I changed the OCR setting on Adobe ExportPDF the output was much better but not to the point it was usable as it was. Information that appears to be lines and columns are sometimes not recognizing two columns and just putting them together in one. Obviously not usable. The other thing it does is bunch numbers that appear in a column that are just a bunch of numbers that I have no way of fixing. 
    Please let me speak to someone who can help me. Right now I not getting anything of value in my paid subscription.

  • Report Writer Row and Column Format

    Hi
    Was wondering if there is a possible solution to this :-
    Understand that column format is controlled by format groups. This means that all figures in the same column will take the same format (such as scaling and decimal place).
    Scenario is ->
                        Colunn #1 -> column set as displaying no decimal point       
    Rev                  120
    OP                      5
    OP margin %     4.2 -> how to set this to 1 decimal point. Any formula syntax that I can use?
    Regards.

    Hi Vinay,
    Based on my research, freezing row and column headers are different in table and matrix.
    In a table, if we want to freeze column header, we should make the changes in the first Static row group in Row Groups pane with Advanced Mode as you said. If we want to freeze row header, the table should have a group ahead, then we can enable “Repeat header
    rows on each page” and “Keep header visible while scrolling” options in Row Headers in Tablix Properties dialog box.
    In a matrix, if we want to freeze column header, we can enable “Repeat header columns on each page” and “Keep header visible while scrolling” options in Column Headers in Tablix Properties dialog box. If we want to freeze row header, we can enable “Repeat
    header rows on each page” and “Keep header visible while scrolling” options in Row Headers in Tablix Properties dialog box.
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Column formating

    Hi,
    In the report on Real Time on Custom Object 2, i am using Acounts, Field: "Account Id" as Prompt for this Dashboard Report. Account Id is passed with the URL from Detail Page. Account Id is the first column on this report & set to hide
    "Customer Name" is a feilds in Custom Object 2
    "Created On", "Owner", "Status" is fields in Custom Object 1
    Aviable Ouput
    Created On     Owner     Customer Name     Status
    01/01/2009     Mike     Oracle          Open
    01/01/2009     Mike     CRM          Open
    01/01/2009     Mike     SAP          Closed
    02/01/2009     Mike     Oracle          Open
    03/01/2009     Mike     CRM          Open
    03/01/2009     Mike     SAP          Closed
    Required Output
    Created On     Owner Customer Name Status
    01/01/2009 Mike Oracle Open
    --------------------------CRM Open
    --------------------------SAP Closed
    02/01/2009 Mike Oracle Open
    03/01/2009 Mike CRM Open
    -------------------------SAP Closed
    I want to group Customer Name, used column formating Suppress, Repeat & default Options, but i am not getiing the required output.
    Hope u can suggest a way out.
    Thanks in Advance
    Regards.
    Edited by: user11277875 on Dec 17, 2009 10:59 PM
    Edited by: user11277875 on Dec 17, 2009 11:01 PM

    Hi,
    Column formats: Suppress on Created On, Owner & status & Default/Repeat on Customer Name.
    None of the combination have been scusefull.

  • Dynamic Selection of Report Column Format

    Is it possible to dynamically set the number format on a report column? I thought it would be as easy as setting the 'Number/Date Format' to a session state variable such as &NUMBER_FORMAT. However, when I tried this the column returned the following value ##########.
    Any ideas?
    Thanks,
    David

    OK, this is a favorite hack of mine combined with Sergio's suggestion. Essentially, we select the column twice, display it with one column using Sergio's idea and sort it on another hidden and unformatted copy of the column (hope I didn't lose you yet):
    1) Add another column of the same source to the query and give it an alias:select ename,to_car(sal,'&NUMBER_FORMAT.') sal,sal sal_sort
      from emp2) Edit the report > report attributes > sal_sort column attributes. In the HTML Expression field, type #SAL#.
    3) On the report attributes page, unclick the "Show" column for sal.
    Now you are displaying the SAL column in the SAL_SORT column allowing the reporting engine to properly sort the column based on the unformatted SAL_SORT. I use this technique a lot for quarters. I'll show Q105, but it's sorting on an actual date behind the scenes.
    Happy hacking!
    Tyler

  • Add new image in Conditional Column Format

    Hi,
    In the column conditional format we have few images to include also there is a option for adding new/custom images. I have tried to add with some jpg images, no idea how to include in the list. I want my images to be include in most of the reports. Can anyone help me to give an idea about how to add the images?

    So, here we go… a step by step instruction.
    First, I took some default pictures, renamed one as “index” and changed format to *.gif
    !http://lh6.ggpht.com/_7E85bAvCFxg/SlMdWAvGnMI/AAAAAAAAAHg/97cbFS7bN6g/2009-07-07_135234.png!
    Then, a new folder “new” was created in <ORACLEBI_HOME>\ web\app\res\s_oracle10\meters
    !http://lh4.ggpht.com/_7E85bAvCFxg/SlMdWOM85uI/AAAAAAAAAHk/4Hcs4KtNJbc/s800/2009-07-07_135501.png!
    The same folder was created in <AS_HOME>\ \j2ee\home\applications\analytics\analytics\res\s_oracle10\meters
    !http://lh5.ggpht.com/_7E85bAvCFxg/SlMdWexYhkI/AAAAAAAAAHo/gUrXR0LAibs/2009-07-07_135809.png!
    *if you use a OC4J container – then find the same path “analytics\res\s_oracle10\meters” in it and create your folder.
    All changes should be done in both that folder (remember – if you omit any insert of a file than you’ll have difficulties).
    The structure of both folders should be
    !http://lh4.ggpht.com/_7E85bAvCFxg/SlMdWQCLEjI/AAAAAAAAAHs/-xDARLT_ILA/2009-07-07_140153.png!
    As you see – I already placed index.gif in it… So, I simply copied other three files in folders “lg” and “sm” (important (1) they all have a *.gif format (2) changes were made in AS and BI folders).
    !http://lh6.ggpht.com/_7E85bAvCFxg/SlMeSENyoII/AAAAAAAAAHw/2ylppoGa60M/s800/2009-07-07_140650.png!
    Well, now we go to the dashboard and check the results. Here we have our pictures:
    !http://lh6.ggpht.com/_7E85bAvCFxg/SlMhYcI9-WI/AAAAAAAAAH0/C3tRvhZgtnU/s576/2009-07-07_141226.png!
    The same we have in the conditional format window.
    !http://lh5.ggpht.com/_7E85bAvCFxg/SlMhYjajN7I/AAAAAAAAAH4/nNx6Zxqq2M8/2009-07-07_141407.png!
    The check of a simple request with conditional format:
    !http://lh4.ggpht.com/_7E85bAvCFxg/SlMoBVLfx_I/AAAAAAAAAIU/UfBAUqPgiPU/2009-07-07_144724.png!
    That gives us the following result:
    !http://lh5.ggpht.com/_7E85bAvCFxg/SlMoBRS8qaI/AAAAAAAAAIY/xmfly6D1SxY/s400/2009-07-07_144749.png!
    Notes:
    1)     I used OBI 10.1.3.3 version, but hope the same will work and for 10.1.4.1
    2)     I’m not sure if there a restriction on a picture file size
    3)     It was used the same size for small and large images. Certainly you can vary them.
    4)     It’s not necessary to restart OBI services (the same is true for most changes in design the css style and images).
    Edited by: green4x on 07.07.2009 14:49

  • DataExport in Column Format

    Hi All
    i am exporting BSO cube in column format . how can i change the column . for eg in sample basic when we do export in column format we get header as
    "Sales" "COGS" "Marketing" "Payroll" "Misc" "Opening Inventory" "Additions" "Ending Inventory"
    i want to changes these header to other dimension . can i do that ?
    thanks

    This is a theory, I haven't seen it in writing in any official docs: Essbase seems to pick the smallest dim that is either time or measures for the data column headers. Again, a theory, and like any theory, could be full of holes.
    Ultimately what I think you should strive for is to have the most dense dim in the columns.
    As far as massaging the resulting file into a format you need for another system, you have your choice of a variety of ways, string mangling scripts, ETL tools, etc. Whatever is easier for you based on your skills is probably ok.
    Robb Salzmann

  • (BSO) export for lev0 member in column format

    Hi there,
    Today I have made a (BSO) export for lev0 member in column format.(Choosed this options with the export routine)
    What maked me wonder was that not only lev0 member are in the export file but also lev1 member.
    Can someone explain why this happened.
    I'm on 9.2.1 on win32.
    Regards
    Andre

    Hi Glenn,
    Thank you for your response,
    As you can see from the ess_lev0_exp_1.JPG outlined in the screen shot
    that this >lev0-member has 18 children. So impl shared should not matter.
    As as you can see from the ess_lev0_exp_2.JPG also these members are included in the export.
    However, the dim "Konten" (Account) is set to dense.
    The export options you can see in ess_lev0_exp_options.JPG.
    I find that strange anyhow. Hmm...
    http://fotoalbum.web.de/gast/andre.ml/Essbase
    Regards
    Andre

Maybe you are looking for

  • Using bind variable in dynamic where clause and concatenate with query

    Hi, In my procedure i am framing where clause dynamically with bind variable,When i am concatenate this with my sql query for REF CURSOR i got sql command not properly ended exception. Is it possible to pass values to the bind variable through the dy

  • I cannot open a document from an earlier version of pages.

    Hope someone has a helpful solution for me.  I am trying to access my resume that I did in an earlier version of Pages.  I tried to open it today and saw an error saying that the document could not be opened.  I have tried researching this and basica

  • DSL speed slow down after 10.5 upgrade :(

    Hello all, I have a question, and need the Apple cyber-community to help me with this one. I have A.T.& T.'s DSL service. I have a 2WIRE 1701HG router-DSL modem. I HAD 1.2mg download speed 99% of the time with MacOS 10.4.x. Yes I know that it is not

  • How I fixed Imessage and Factime

    As I'm sure all of you know, Imessage and Facetime seem not to work with new IOS 5 updates. I can't seem to understand why, but it seems as if pre-paid users of the Iphone are the people whom are suffering the most. If your anything like me, your abl

  • Ipad sleeve with smart cover

    Hi, I am looking for some type of sleeve for my ipad when I travel to/from work on my motorcycle. The plan would be to have the ipad in the saddlebag, but have a bit of extra protection from vibration and such. I have a smart cover and the thin back