[Solved] I used RANGE UNBOUNDED FOLLOWING. But syntax error

http://download-west.oracle.com/docs/cd/B19306_01/server.102/b14200/functions001.htm#CIHCEIGA
RANGE BETWEEN CURRENT ROW AND UNBOUNDED FOLLOWING. The short form of this is RANGE UNBOUNDED FOLLOWINGI used RANGE UNBOUNDED FOLLOWING.
But I got syntax error ORA-00905: missing keyword.
Why?
SQL> select version from v$instance;
VERSION
10.2.0.1.0
SQL> select Val,
  2  First_Value(case when mod(Val,10) = 0 then Val end ignore nulls)
  3  over(order by Val Range Between Current row and Unbounded Following)
  4  as "aaa"
  5  from (select 10 as Val from dual
  6  union select 15 from dual
  7  union select 20 from dual
  8  union select 25 from dual
  9  union select 30 from dual
10  union select 32 from dual
11  union select 34 from dual
12  union select 40 from dual);
VAL  aaa
10   10
15   20
20   20
25   30
30   30
32   40
34   40
40   40
SQL> select Val,
  2  First_Value(case when mod(Val,10) = 0 then Val end ignore nulls)
  3  over(order by Val Range Unbounded Following)
  4  as "aaa"
  5  from (select 10 as Val from dual
  6  union select 15 from dual
  7  union select 20 from dual
  8  union select 25 from dual
  9  union select 30 from dual
10  union select 32 from dual
11  union select 34 from dual
12  union select 40 from dual);
over(order by Val Range Unbounded Following)
ORA-00905: missing keyword.

Thanks for doc link and reply.
I saw doc page 217 of the DB2 Version 9 doc.
Well.
On "window-aggregation-group-clause", we can choose "ROWS" and "group-end".
Then on "group-end", we can choose "UNBOUNDED FOLLOWING" or "unsigned-constant FOLLOWING".
On DB2 V9.1, I tested this query.
Then, this query worked.
select sortKey,Val,
max(Val) over(order by sortKey Range Unbounded Following) as MaxVal1,
max(Val) over(order by sortKey Rows 2 following) as MaxVal2
from (select 10 as sortKey,90 as Val from sysibm.sysdummy1
union select 20 as sortKey,50 as Val from sysibm.sysdummy1
union select 30 as sortKey,70 as Val from sysibm.sysdummy1
union select 40 as sortKey,30 as Val from sysibm.sysdummy1
union select 50 as sortKey,95 as Val from sysibm.sysdummy1
union select 60 as sortKey,98 as Val from sysibm.sysdummy1) dummy
sortKey  Val  MaxVal1  MaxVal2
     10   90       98       90
     20   50       98       70
     30   70       98       95
     40   30       98       98
     50   95       98       98
     60   98       98       98I saw doc page 219-220 of the DB2 Version 9 doc.
In doc page 219-220
group-end
Specifies the ending point for the aggregation group. The aggregation
group start is the current row.
Specification of the group-end clause is equivalent to a group-between clause of the form ″BETWEEN CURRENT ROW AND group-end″.Therefore,
I conclude that "UNBOUNDED FOLLOWING" is official on DB2.
However I don't know that "UNBOUNDED FOLLOWING" is official on standard SQL.

Similar Messages

  • No syntax error on syntax check, but syntax error on activation

    Hi all,
    I have a confusing problem.
    I want to default some values on item level of purchase order (ME21N). I added a module call in flow logic of screen 1313 of program SAPLMEGUI. The module itself I added to include LMEVIEWSF01. Here I default some fields of structure MEPO1313. This structure is defined in TOP-include using TABLES.
    Before modification I debugged the transaction and found out, that structure MEPO1313 is accessible during PBO. Changes in debugger are shown as expected on screen.
    Now, syntax check on LMEVIEWSF01 and even on SAPLMEGUI returns no error. But on activation I get syntax error saying MEPO1313 is not know ??
    So, structure MEPO1313 is accessible in debugger, no syntax error on syntax-check, but syntax error on activation ?
    What is going on ??
    Elko

    go to SE80 and Check syantax at package level.
    you might  be checking syantax for other include and problem si somw ehere else, justa  thought.

  • How do you burn videos taken with myIphone and stored on my computer to a DVD disc.  I purchased and tried using RealPlayer Plus 16 but got error message saying "unsopported media type"?  I alos tried using Real Players file converter with no success!

    How do you burn videos taken with my Iphone 4S and stored on my computer to a DVD disc.  I purchased and tried using RealPlayer Plus 16 but got error message saying "unsopported media type"?  I also tried using Real Players file converter with no success!  Thanks in advance for any help you can give!

    Probably the OP is no longer paying attention to this unless the OP is subscribed to this discussion.  While not really an iPhone question I guess using an iPhone to produce the movie which then needs taking to the next step makes this as good a starting place as any unless you happen to know enough about what to do to determine in which forum to post.  A suggestion in that direction would help.
    Anyway, Apple is backing off from supporting optical media.  It also depends upon what you mean by "DVD".  A DVD is just an optical disc which can support different file formats, but many people think it means a movie disc you can put in your TV.  Producing a movie disc requires special iDVD authoring software Apple used to sell but stopped several years ago.  I don't know if the old versions work under newer systems.  There's also the free Burn application which authors DVDs but takes a bit of learning and has nowhere near the features of iDVD.
    If the OP means simply burning the transferred movie files to a DVD for archiving in computer format you don't need special software for that; its built into the operating system File > New Burn folder etc.

  • Using Formula in Pages Table (Syntax error)

    I thought this would be simple, but I get a syntax error:
    My Table
    Date Start Date End Bytes Redo Rate (Mbps)
    20/06/2010 11:00:00 PM 21/06/2010 03:00:00 AM 850,648,576 0
    21/06/2010 11:00:00 PM 22/06/2010 03:00:00 AM 561,487,360 0.4456
    22/06/2010 11:00:00 PM 23/06/2010 03:00:00 AM 486,454,784 0.3860
    23/06/2010 11:00:00 PM 24/06/2010 03:00:00 AM 1,239,929,344 0.9840
    24/06/2010 11:00:00 PM 25/06/2010 03:00:00 AM 1,365,600,256 1.0838
    In the Redo Rate column I want a simple formula: ((C2/0.7)*8)/1000000
    The current value in the last column I hand calculated, but the 0 (zero) is where the formula is supposed to be.
    I enter it using Formula Editor as: =((C2 / 0.7) * 8) / 1000000 -- and there is the syntax error...
    Can someone please help me... this was supposed to be simple...
    Using Page '09
    Thanks in advance for your attention and replies.
    Andries

    Here it behaves flawlessly.
    I inserted the Bytes values without the thousands separators then applied the separators.
    I'm running a French system so I can't test the behaviour of the English format.
    I'm not sure that you are allowed to enter the commas by yourself.
    Check if the cells are deciphered as Numbers.
    I guess that they are treated as text.
    Yvan KOENIG (VALLAURIS, France) mercredi 30 juin 2010 14:06:38

  • [SOLVED] pypanel-gaps fails to build on syntax error

    i'm trying to install pypanel-gaps from the aur with yaourt, but i can't build it because of a syntax error in the file setup.py:
    ==> Building and installing package
    ==> Making package: pypanel-gaps 2.4-1 (Tue Jun 21 00:59:48 CEST 2011)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
    -> Found PyPanel-2.4.tar.gz
    -> Found pypanel.patch
    ==> Validating source files with md5sums...
    PyPanel-2.4.tar.gz ... Passed
    pypanel.patch ... Passed
    ==> Extracting Sources...
    -> Extracting PyPanel-2.4.tar.gz with bsdtar
    ==> Removing existing pkg/ directory...
    ==> Entering fakeroot environment...
    ==> Starting build()...
    patching file pypanel
    File "setup.py", line 33
    print "\nPyPanel requires the Python X library -"
    ^
    SyntaxError: invalid syntax
    ==> ERROR: A failure occurred in build().
    Aborting...
    ==> ERROR: Makepkg was unable to build pypanel-gaps.
    ==> Restart building pypanel-gaps ? [y/N]
    ==> -------------------------------------
    ==>
    is this considered a bug? is there a way to edit this file in order to fix the syntax error, when using yaourt? i have these versions of python installed: 2, 2.7, 3, 3.2.
    Last edited by roygbiv (2011-06-23 10:20:16)

    Most probably pypanel is a python 2 application. Replace 'python' with 'python2' in both the depends array and within the build function in the PKGBUILD.

  • [solved] xorg proglem - won't start, but no error

    Hi folks!
    I'm new to Arch, my first installation, but I used to use Gentoo in the past. Got a problem with making X to run. I followed the guide from the wiki, but I didn't manage it to work.
    I'm using nVidia drivers from 173xx branch (GF 5900XT). Hal is working properly, I hope - /etc/rc.d/restart successes w\o errors.
    At first, I tried to run X without xorg.conf and it complained about missing 'nv' and 'vesa' (i hope) modules. Then, after running nvidia-configure (/etc/X11/xorg.conf was successfully created) and startx - screen blanks (no nVidia logo shown) and after ~3 seconds it comes back with massage "waiting for X server to shut down". In /var/log/Xorg.0.log there were no lines starting with (EE).
    Then I tried to configure X with "X -configure". After making new config and replacing the older one at /etc/X11/xorg.conf and running X with command startx (as user), it complained about missing type1 and truetype modules ((EE) lines as far as I remember). After installing missing packages/modules:
    http://dpaste.com/60888/
    it still won't start. Screen blanks, no nVidia logo shown, and later comes back with well known screen ( usual text... look over /var/log/Xorg.0.log for more details...). Only message after default text id "waiting for X server to shut down", with no (WW) nor (EE) lines above.
    More useful data comes:
    Xorg.0.log
    http://dpaste.com/60883/
    xorg.conf
    http://dpaste.com/60885/
    tail of dmesg
    http://dpaste.com/60887/
    If you need anything else to see, request!
    Any idea? To me, it looks like nvidia driver bug or some xorg bug (or maybe just a misconfiguration)
    In ~/.xinitrc stays only "exec startfluxbox", but even with empty file, situation is the same.
    Thank you in advance,
    Daniel
    Last edited by daniel1988 (2009-07-14 03:50:06)

    Hello, welcome to Arch!
    You should read about the new feature of Xorg, input hotplugging: http://wiki.archlinux.org/index.php/Beg … otplugging
    A more detailed explanation can be found here: http://wiki.archlinux.org/index.php/Xor … otplugging
    Be sure to copy the fdi file in the correct directory.
    Since I am using also the 173xx branch, here is my xorg.conf, hope it will be useful for you:
    http://dpaste.com/60927/
    EDIT: Not 100% sure but I seem to recall that the nvidia driver has some problems when you don't set the default depth. Add that line
    Last edited by arkham (2009-06-28 20:55:27)

  • Error in using XI-SOAP adapter, but no error  with SAP-BC

    Hi,
    I am working on RFC->XI->Webmethod (.asp) scenatio.
    I am using SOAP adapter.
    Whin I am not using "Do not use SOAP Envelop".
    I am getting "com.sap.aii.af.ra.ms.api.DeliveryException: invalid content type for SOAP: TEXT/HTML" Error in SXMB_MONI.
    But when I am using "Do not use SOAP Envelop" then I am not getting any error. in SXMB_MONI status showing Successfully Processed. But the responce i am getting is "You are not authorized to view this page  // HTTP 401.1 - Unauthorized: Logon Failed"
    But same web-service is working fine while connected with SAP-BC.
    Please Help why scenario is working with BC, but not with XI.
    Thanks & Regards

    Hi Bhavesh,
    Thanks for reply.
    I am getting all success in message monitoring, but still web-services sying they are not getting any message.
    I am attaching all 4 logs for one synchronous communication of message monitoring.
    I am not able to understand where message going and why XI showing success every where.
    ********1st(Sent Messages)
    Success SOAP: response message leaving the adapter
    Success Application attempting to send an XI message asynchronously using connection AFW.
    Success Trying to put the message into the send queue.
    Success The response message for message cf4fd921-4a74-11db-9312-001279933263(INBOUND) was successfully transmitted to the calling application.
    Success The message status set to DLVD.
    Success The application sent the message asynchronously using connection AFW. Returning to application.
    ********2nd (Sent Messages)
    Success RFC adapter received sRFC for Z_PA_SAP_TO_Webservice from D02/230. Attempting to send message synchronously
    Success Application attempting to send an XI message synchronously using connection AFW.
    Success Trying to put the message into the call queue.
    Success Message successfully put into the queue.
    Success The message was successfully retrieved from the call queue.
    Success The message status set to DLNG.
    Success The message was successfully transmitted to endpoint http://XYZ.com:8000/sap/xi/engine?type=entry using connection AFW.
    Success The application sent the message synchronously using connection AFW. Returning to application.
    Success The message status set to DLVD
    **********3rd (Received Messages)
    Success Using connection AFW. Trying to put the message into the receive queue.
    Success The XI response message for message d0372be1-4a74-11db-91d7-001279933263(INBOUND) was successfully returned to the calling application.
    Success The message status set to DLVD.
    **********4th (Received Messages)
    Success The message was successfully received by the messaging system. Profile: XI URL: http://XYZ.com:50000/MessagingSystem/receive/AFW/XI
    Success Using connection AFW. Trying to put the message into the request queue.
    Success Message successfully put into the queue.
    Success The message was successfully retrieved from the request queue.
    Success The message status set to DLNG.
    Success Delivering to channel: IF_O_502_WebserviceBusService_SOAP_In_02
    Success SOAP: request message entering the adapter
    Success SOAP: completed the processing
    Success SOAP: response message received d0372be1-4a74-11db-91d7-001279933263
    Success The message status set to DLVD.
    Success The message was successfully delivered to the application using connection AFW.

  • HT201263 IPhone 4S unlocked set , from iOS 6.1.2 upgrade to IOS 6.1.3 unable to update and now is in recevery mode, tried using ITunes to restore but end error ( error -1)

    I had one iPhone 4S buy from Singapore, have been using this phone about a year,
    Things happen when update from iOS 6.1.2 to iOS 6.1.3 (non-jail break phone).
    After update, when on 3G, phone become no service or searching. Had change new SIM card carrier vision 14.1.
    Things never change, so I did another restore using iTunes , things get worst, phone stuck in recovery mode and ending error (error-1)
    Had tried few time and same error.
    Note ITunes latest vision

    I had the same issue until yesterday. been struggling with it for the last 2 days. I bought the unlocked 4s from the store a week ago and now I cannot upgrade from 6.1 to the higher version.
    Although, after searching a lot on the net, I was able to find a software that'll get you out of the recovery mode. Hope this helps. Install the software and click on the 'Recovery Mode Loop Fixer' (2nd tab) and click 'Set Auto Boot True'
    The software looks shady but worked.
    Link:
    Ireb download link- WINDOWS
    NEW LINKS- ( http://hotfile.com/dl/179514703/4b201... ) (http://www.mediafire.com/?c4jqux6alnj... )
    IREB FOR MAC
    http://mediafire.com/?mymjzjaymyj

  • EDI: Syntax error in IDoc (mandatory group/segment missing)

    hi EDI/IDoc experts,
    Need you help urgently. According to the requirement, i need populate a segement  E1IDT01 of basic type PEXR2002 . I added the code , then run and generate an idoc , the new segment
    E1IDT01  was populated,  but Syntax error 26 happend. Error message as below.   It also strange that i can see E1IDKU5 populate out as usual, but some others segment disappeared , i am sure that in my code ,i didn't changed any variable related to other segement . how can i fix this problem?
    EDI: Syntax error in IDoc (mandatory group missing)
    Message no. E0079
    Diagnosis
    The segment group E1IDKU5 has the attribute 'Mandatory' in the syntax description of the basic type PEXR2002 (customer enhancement ). However, the segment group is missing in the IDoc. The segment number logged in the status record identifies the item before which the segment group is missing.
    Procedure
    Please check the IDoc or the syntax description of the basic type PEXR2002 (customer enhancement ).

    Hi all,
    Thanks so much for your concern!
    Finally ,this problem has been figured out  .
    Requirement is user want to use segment E1IDT01 in idoc to populate the long text they maintained in accounting document vendor item line (use FB01 to create accounting doc).
    Why I made out " EDI: Syntax error in IDoc (mandatory group/segment missing)" this message out ,because  I didn't fill data correctly. I missed to keep SY-TABIX in momory .
    when we use Function module ,or do..enddo...or read table it_table. we should be careful that SY-TABIX  is changed .So we can't just use MODIFY EDIDD_TABLE INDEX  SY-TABIX  in the last . we should define a local variable to keep  SY-TABIX  in memory and then use it to modify EDIDD_TABLE. 
    Follow is the final code.
    IF SEGMENT_NAME = 'E1IDT01'.
    TABLES :STXL.
    * Define for long text getting
      DATA: LIT_TLINE  LIKE TLINE   OCCURS 0 WITH HEADER LINE.
      DATA: LV_STRING(2000)  TYPE C.                          
      DATA: LV_TDNAME TYPE THEAD-TDNAME,
            LV_ID     TYPE THEAD-TDID     VALUE '0001',
            LV_LANG   TYPE THEAD-TDSPRAS  VALUE 'E' ,
            LV_OBJ    TYPE THEAD-TDOBJECT VALUE 'DOC_ITEM'.
    data:   LV_LINE   TYPE I,                " long Text lines
            LV_LEN    TYPE I,                " long Text length   
            LV_TABIX  LIKE SY-TABIX.                              
    * Clear memory
      CLEAR:LV_TDNAME,
            LV_STRING,                                        
            LV_LINE,                                           
            LIT_TLINE, LIT_TLINE[],                          
            LV_LEN,                                            
            LV_TABIX.                                        
    * Keep sy-tabix memory using a variable--This is the key point
      LV_TABIX = SY-TABIX.
    * Combine TDNAME with company code + accounting doc + fiscal year + item number.
        CONCATENATE  REGUP_DATA-BUKRS REGUP_DATA-BELNR
                     REGUP_DATA-GJAHR REGUP_DATA-BUZEI INTO  LV_TDNAME.
    * When vendor item has long text , read long text into lv_string
        SELECT SINGLE *
          FROM STXL
          WHERE TDOBJECT = LV_OBJ
            AND TDNAME   = LV_TDNAME
            AND TDID     = LV_ID
            AND TDSPRAS  = 'E'.
        IF SY-SUBRC = 0.
          CALL FUNCTION 'READ_TEXT'
            EXPORTING
              CLIENT   = SY-MANDT
              ID       = LV_ID
              LANGUAGE = LV_LANG
              NAME     = LV_TDNAME
              OBJECT   = LV_OBJ
            TABLES
              LINES    = LIT_TLINE.
          IF NOT LIT_TLINE[] IS INITIAL.
            DESCRIBE  TABLE LIT_TLINE LINES LV_LINE.
            DO LV_LINE TIMES.
              READ TABLE LIT_TLINE INDEX SY-INDEX.
              CONCATENATE LV_STRING LIT_TLINE-TDLINE INTO LV_STRING.
            ENDDO.
            LV_LEN = STRLEN( LV_STRING ).
    * Make sure we only need  less than 840 charicters
            IF LV_LEN > 840.
              LV_STRING = LV_STRING+0(840).
              LV_LEN    = 840.
            ENDIF.
    * Populate Vendor item long text with segment E1IDT01 start from
    * Fields TXT03 to TXT14.
             EDIDD_TABLE-SDATA+147(LV_LEN) = LV_STRING.
            MODIFY EDIDD_TABLE INDEX LV_TABIX.
          ENDIF.
        ENDIF.
      ENDIF.

  • Regarding EDI: Syntax error in IDoc (segment cannot be identified)

    Hi,
    My requirement is that I was adding two diffrent field values under two diffrent segments as "E1EDKA1" and "E1EDK02" in outbound invoice IDOCS, INVOIC02 (process code: SD09 - IDOC_OUTPUT_INVOIC).
    I am getting the IDOC number through Tcode "VF02". Can any body give me idea how to check that syntax error in debug mode.
    Please find the following error details using TCODE "WE02".
    *EDI: Syntax error in IDoc (segment cannot be identified)*
    *Message no. E0 078*
    *Diagnosis*
    *The segment E1EDKA1 does not occur at the current level of the basic type INVOIC02 (extension ).*
    *This error can have several reasons:*
    *The segment E1EDKA1 is assigned to a group whose header segment does not occur.*
    *The segment E1EDKA1 does not exist in the syntax description of the basic type INVOIC02 (extension ).*
    *The sequence of segments in the group in which the segment appears is incorrect.*
    *Previous errors ('mandatory' segment or group missing) may be due to this error.*
    Please help me to resolve this problem. <REMOVED BY MODERATOR>
    Regards,
    Skumar.
    Edited by: Alvaro Tejada Galindo on Apr 28, 2008 1:09 PM

    It seems that you added segment E1EDKA1 at a place where it is not supposed to be. That's where this error is coming from. The structure of every IDOC is definded by SAP standard and you cannot change the sequence or the level of standard segments. If you require a certain field at a certain level you have to add that field to a Z-segment and then add that Z-segment where appropriate in your extension.
    Hope that helps,
    Michael

  • 1084: Syntax error: expecting rightbrace before rightparen

    Hi,
    I am getting the following error when using the below code:
    1084: Syntax error: expecting rightbrace before rightparen.
    Code:
    Buttons.Btn_2.addEventListener(MouseEvent.CLICK,Btn_2ClickHandler);
    function Btn_2ClickHandler(event:MouseEvent):void {
    navigateToURL (new URLRequest ("http://Main/New_Projects/Album-2.htm"), "_self"));
    I am getting this error only after adding  , "_self")
    Please help.

    You appear to have one too many right parenthesis in that line.  The number of rights should equal the lefts.

  • Download basket - Syntax error in program "/TMWFLOW/CL_MO_UPDATE_MODEL===CP

    Hello,
    When trying to download anything from the basket, I get the following dump:
    Syntax error in program "/TMWFLOW/CL_MO_UPDATE_MODEL===CP ".
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "/TMWFLOW/CL_MO_HTML_REQUEST===CP" had to be
         terminated because it has
        come across a statement that unfortunately cannot be executed.
        The following syntax error occurred in program
         "/TMWFLOW/CL_MO_UPDATE_MODEL===CP " in include
         "/TMWFLOW/CL_MO_UPDATE_MODEL===CM005 " in
        line 11:
        "Type "MOPZDT_TRANS" is unknown"
    The current ABAP program "/TMWFLOW/CL_MO_HTML_REQUEST===CP" had to be
      terminated because it has
    come across a statement that unfortunately cannot be executed.
    I have on my system: SAPKITL429.
    Any help would be helpful.
    Thanks.
    Edited by: Jordy_tof on Sep 19, 2011 7:39 PM

    Hello,
    Thanks for the notes, really useful.
    Meanwhile I have found a back way to download from solman:
    http://www.erpgenie.com/sap-technical/basis/trick-approve-download-basket-via-solution-manager
    Hope it will help all.
    Thanks again,
    Jordan.

  • I have a annual plan, it supposed must be used in two terminals, but i haven´t been able to install any app in a second computer, it always says that the app is only available as a trial download. What can I do to solve this issue, and be able to use my p

    I have a annual plan, it supposed must be used in two terminals, but i haven´t been able to install any app in a second computer, it always says that the app is only available as a trial download. What can I do to solve this issue, and be able to use my paid plan in two computers?

    Hi Susan,
    Please refer to the help document to fix this issue:
    Creative Cloud applications unexpectedly revert to trial mode | CS6, CCM
    You may also refer to the thread as below:
    creative cloud software says my free trial has expired, but I have a paid subscription
    Regards,
    Sheena

  • [SOLVED] Run X11 apps using sudo while following wiki

    i was going through the wiki
    https://wiki.archlinux.org/index.php/Su … using_sudo
    added the line.
    Defaults env_keep += "HOME"
    [rho@turion ~]$ sudo visudo
    visudo: >>> /etc/sudoers: syntax error near line 94 <<<
    What now?
    Options are:
    (e)dit sudoers file again
    e(x)it without saving changes to sudoers file
    (Q)uit and save changes to sudoers file (DANGER!)
    What now? Q
    [rho@turion ~]$ sudo
    sudo: >>> /etc/sudoers: syntax error near line 94 <<<
    sudo: parse error in /etc/sudoers near line 94
    sudo: no valid sudoers sources found, quitting
    sudo: unable to initialize policy plugin
    Last edited by rhoit (2012-11-16 11:59:50)

    rhoit wrote:
    $ pacman -Ss hdparm
    $
    can't find!
    That could be a problem, given that hdparm is in core ...
    Anyways, man page: http://linux.die.net/man/8/hdparm
    (This all is pretty off-topic to the original thread; sorry moderators.  I was merely using it as a rather blatant example of the "Warn the user but do what it is told to do" idea)

  • I have recently upgraded our Choir's website, using iWeb, (it was previously done using other software. I get the home page on the screen, but when I click on links, I get this error message; "Parse error: syntax error, unexpected T_STRING in /var/www/vir

    I have recently upgraded our Choir's website, and used iWeb to create the upgrade. It was previously done with other software.
    Now, when I go to the site, (comc.ca), the first page comes up fine, but when I click on the links to other pages, I get this message.....
    Parse error: syntax error, unexpected T_STRING in /var/www/virtual/comc.ca/htdocs/Site_3/Contact_Us.html on line 1
    I went to an Apple store, (I still have time left on my one-to-one period), but didn't get an answer.
    Any suggestions really appreciated.
    Thanks,
    Larry

    Sorry, but it doesn't help JTANNA.
    What is your definition of "more efficiently"? If it's limitation of search results, branded search, and limitation of styling your results then google search is more efficient. Real developers rely on their own developments. For example: how can google search display results from a password-protected site? They can't.
    best,
    Shocker

Maybe you are looking for

  • Get MUTLIPLE output files for SINGLE input file with multiple records

    Hi , I have source xml file  which has multiple records in it and  I want to get multiple seperate  flat files for it. this is my source structure <root> <Header1 fld1=1234 fld2="name1" fld3='SAP1" fld4='000" fld5=0 fld6="sdn1"></header>.............

  • Content Migration from Aqualogic Publsiher 6.4 to Oracle -Stellent

    has anyone tried this in their latest development? Any information or strategy you can share... Thanks in Advance... Edited by: user3047732 on 17-Oct-2008 12:25 PM

  • Linux client

    Is there a linux client ?

  • Call a transcation in a container

    i have a dialog program and the screen no. is 0001 . i want to display the screen 0001 in a container of other dialog program . how can i do it ? ths! everything is helpful .

  • Question about towers for gaming

    I was wondering if the Dell-inspiron desktop- 4gb memory 500gb Hard . Is a good desktop that I will be able to stream the web and play game like mine craft or a Hp-Pavilion Desktop-8gb Memory 1tb Hard drive. Please help me Solved! Go to Solution.