Trouble with SQL Expressions

Hello everyone,
I'm having trouble with this SQL expression that works in 8.5, and XI R2 runtime and designer, but I cannot edit the expression.  As soon as I open the SQL Expression and click the X-2 check button, the error following
SQL Expression I'm trying to run:
(Select Distinct b1.CandEmploymentType
    from ceistaffing a1
    inner join ceisubmittal b1 on a1.submittalid = b1.ceisubmittalid
Where a1.Staffingchainid = CEIHRPROJECTEDACTUAL."STAFFINGCHAINID"
    and b1.createdate in (Select max(b2.createdate) from ceistaffing a2 inner join ceisubmittal b2 on a2.submittalid = b2.ceisubmittalid where a2.staffingchainid = a1.staffingchainid))
The Errror I Receive After Clicking the X-2 button:
Crystal Reports
Error in compiling SQL Expression :
Failed to retrieve data from the database.
Details: ADO Error Code: 0x
Source: SalesLogix OLE DB Provider
Description: The multi-part identifier "CEIHRPROJECTEDACTUAL.STAFFINGCHAINID" could not be bound.
Native Error:  [Database Vendor Code: 181797304 ].
OK  
This is the SQL statement passed to the database:
SELECT (Select Distinct b1.CandEmploymentType
from ceistaffing a1
inner join ceisubmittal b1 on a1.submittalid = b1.ceisubmittalid
Where a1.Staffingchainid = CEIHRPROJECTEDACTUAL."STAFFINGCHAINID"
and b1.createdate in (Select max(b2.createdate) from ceistaffing a2 inner join ceisubmittal b2 on a2.submittalid = b2.ceisubmittalid where a2.staffingchainid = a1.staffingchainid))
If I reverse the order of the where clause as follows, I do not get the error
(Select Distinct b1.CandEmploymentType
from ceistaffing a1
inner join ceisubmittal b1 on a1.submittalid = b1.ceisubmittalid
Where CEIHRPROJECTEDACTUAL."STAFFINGCHAINID" = a1.Staffingchainid
and b1.createdate in (Select max(b2.createdate) from ceistaffing a2 inner join ceisubmittal b2 on a2.submittalid = b2.ceisubmittalid where a2.staffingchainid = a1.staffingchainid))
This is the working SQL statement passed to the database.
SELECT (Select Distinct b1.CandEmploymentType
from ceistaffing a1
inner join ceisubmittal b1 on a1.submittalid = b1.ceisubmittalid
Where CEIHRPROJECTEDACTUAL."STAFFINGCHAINID" = a1.Staffingchainid
and b1.createdate in (Select max(b2.createdate) from ceistaffing a2 inner join ceisubmittal b2 on a2.submittalid = b2.ceisubmittalid where a2.staffingchainid = a1.staffingchainid))
FROM   "sysdba"."CEIHRPROJECTEDACTUAL" "CEIHRPROJECTEDACTUAL"
I figured I would just reverse the where clause statements, but then I came to this one that I couldn't get to work:
(Select case when tmp.restartcount = 0 then 'F' else 'T' end from
(Select Count(b.restart) as restartcount from ceistaffing a inner join ceihrprojectedactual b on a.staffingchainid = b.staffingchainid
where a.candcontactid = (Select distinct candcontactid from ceistaffing a2 where a2.staffingchainid = CEIHRPROJECTEDACTUAL."STAFFINGCHAINID")
and b.restart = 'T'
and a.createdate = (Select min(a1.createdate) from ceistaffing a1
               where a1.createdate > (Select max(a3.createdate)
                              from ceistaffing a3
                              where a3.staffingchainid = CEIHRPROJECTEDACTUAL."STAFFINGCHAINID")
               and a1.candcontactid = a.candcontactid)) as tmp )
I've burned an entire day trying to find some solution.  Are there any patches out there that will fix this?
I'm running Crystal Report XI Release 2 SP2 - Version 11.5.8.826
Thank you, ...Rob

Okay, to simplify the illustration of the problem Iu2019m facing, Iu2019ve created a bare bones example as described below:
I've created a report that returns all contacts from our "CONTACT" table.  On the report, I've created a SQL expression to return a count of all contacts with the similar last name, as shown below:
(Select count(a1.ContactID) from CONTACT a1 where a1.LASTNAME = "CONTACT"."LASTNAME")
When I try to save the SQL expression,  I get this error:
Crystal Reports
Error in compiling SQL Expression :
Failed to retrieve data from the database.
Details: ADO Error Code: 0x
Source: SalesLogix OLE DB Provider
Description: The multi-part identifier "CONTACT.LASTNAME" could not be bound.
Native Error:  [Database Vendor Code: 205193720 ].
OK  
This SQL expression works fine in CRW 8.5, but no luck in XI R2 SP4 - As mentioned above in the thread, this seems to be an issue solely with how XI R2 is parsing the SQL Expression.  If I remove the "A1" alias from my expression all is good, but that will not work for some of the more advanced SQL expressions I have that are using joins and sub queries.
What will it take to get this recognized as an issue worthy of a hot fix?  I'm at a stand-still here, facing the unfortunate possibility of having to re-architect many of my reports.  Please help.
Thank you, ...Rob
Edited by: Rob Bartram on Aug 6, 2008 3:45 PM

Similar Messages

  • SSMS Tools with SQL Express 2014

    Hi
    Need to know whether SSMS Tools that come along with SQL Express 2014 require client license?  Please let me know the details

    SSMS Express is also free in use.
    Only when you use SSMS Express to connect to a commercial version, then you need a CAL (Client Access License) or the SQL Server must be licensed by CPU/CORE).
    For further question regarding licensing please contact a Microsoft sales partner or licensing expert.
    Call (1-800-426-9400), Monday through Friday, 6:00 AM to 6:00 PM PST to speak directly to Microsoft licensing specialist.
    http://www.microsoft.com/en-us/server-cloud/products/sql-server/buy.aspx
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Error in filter with SQL Expression

    HI Experts,
    I have a sql query which works fine, but have to_date funtion() in the where clause as below :
    and oe.ORDERED_DATE BETWEEN to_date('09-APR-2009 23:59:59','DD-MON-YYYY HH24:MI:SS')
    AND to_date('10-APR-2009 23:59:59','DD-MON-YYYY HH24:MI:SS')
    and (ol.ORDERED_ITEM LIKE 'abckdo%' OR ol.ORDERED_ITEM LIKE 'xysalnb%')
    I am trying to create an OBIEE report with filter where the values of the filter are select as SQL Expression. and gave value to first variable as "to_date('09-APR-2009 23:59:59','DD-MON-YYYY HH24:MI:SS')" and the second variable as " to_date('10-APR-2009 23:59:59','DD-MON-YYYY HH24:MI:SS')"
    But the report is giving me an error. If I remove the date condition, then the report works fine. Can anyone give some inputs in resolving the problem. The mentioning of the HH24:MI:SS is very import to get the right resultset.
    Thanks in Advance.
    svr

    Hi SVR,
    I've had similar difficulties in the past with OBIEE and using the TO_DATE in the logical SQL expressions. I'm not sure if OBIEE recognizes TO_DATE or if it only recognizes TO_DATE is certain situations.
    However, I believe OBIEE recognizes the CAST( AS DATE) in all situations. Here's what I would recommend doing.
    1) Go into the connection pool associated with the report your creating and click on the second tab, "Connection Scripts"
    2) In the "Execute on Connect" area, click the "New" button and paste the following code: alter session set NLS_DATE_FORMAT='DD-MON-YYYY HH24:MI:SS' ** this step changes the default DD-MON-YYYY format of Oracle, to the format you will be giving the data in.
    3) Save the RPD and bounce the services if you made this change off-line.
    4) Instead of using TO_DATE() on your formulas, use CAST('09-APR-2009 23:59:59' AS DATE). Since we changed the default DATE mask to be the format that you're passing in, you should no longer see any issues.
    Hope that helps!
    -Joe

  • Error using Filter with SQL Expression

    Hey all -
    New to Oracle BI, and getting a problem with Filters that use SQL Expressions.
    The column I'm filtering on is a 4 digit year, expressed as a VARCHAR2(4 byte) in the physical database. My SQL Expression in the filter is:
    Column: CAL YEAR 4 DIGIT
    Operator: Is equal to/in
    SQL Expression: TO_CHAR(ADD_MONTHS(SYSDATE, -24), 'YYYY'))
    when I click on the "Results" Tab I get the following error message:
    Error Codes: YQCO4T56:OPR4ONWY:U9IM8TAC:OI2DL65P
    Odbc driver returned an error (SQLExecDirectW).
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 27002] Near <(>: Syntax error [nQSError: 26012] . (HY000)
    I've isolated the issue to the expression above. If I put in a literal value and supply a four digit year like below it works:
    Column: CAL YEAR 4 DIGIT
    Operator: Is equal to/in
    SQL Expression: *2008*
    Any ideas on what's causing my problem?
    Thanks!
    Mac

    macearl wrote:
    SQL View does not display unless data is returned by the query. Is that normal?
    Also, none of these options shows the literal result of the expression we built, i.e.:
    expression: CAST(YEAR(TIMESTAMPADD(SQL_TSI_MONTH, -24, CURRENT_DATE)) as CHAR)
    result: *2008*
    Having the ability to test expressions and see their results would be very helpful in debugging. If anyone knows how to do that please share!
    Thanks!
    MacOk, Probably shoud have figured this out before, but in response to my own question, the way to view the result of an expression is to add the expression as a column and include it in the Table Presentation.
    - Mac (he can be taught)

  • Client access from W7 to Server 2008 with SQL Express 2008 R2 not possible anymore (since installing yesterdays patches)

    Hi everyone!
    We are suddenly having Problems to access our SQL Express Server from our Clients (SBS 2008 with W7 clients).
    Till yesterday evening everything was working fine. At night we installed the latest MS patches für our Server 2008 (SBS2008).
    Since then we are not able to connect to the SQL Express Server over the Network. Locally (on the Server) it runs fine.
    Switching the Windows Firewall off on the Server also lets the clients connect ...
    The Windows Firewall still has all the ports open needed for SQL Server, we havn't changed anything.
    All the incoming rules that worked for years are still there (untouched).
    We just deinstalled all the latest patches, but problem still is here ... not sure if this was just a coincidence ...
    Any ideas what could be the Problem?
    Thanks in advance for your help
    Best regards
    Thomas

    Check firewall rules
    enable traffic on TCP 1433 and UDP 1434 (if isn't a named instance) or check sql using ports.
    Check Sql Server Browser in Configuration Manager and also net protocols.
    let's know about it
    Best regards,
    P.Ceglie
    Questo post è fornito "così com'è". Non conferisce garanzie o diritti di alcun tipo. Ricorda di usare la funzione "segna come risposta" per i post che ti hanno aiutato a risolvere il problema e "deseleziona come risposta" quando
    le risposte segnate non sono effettivamente utili. Questo è particolarmente utile per altri utenti che leggono il thread, alla ricerca di soluzioni a problemi similari. ENG: This posting is provided "AS IS" with no warranties, and confers no rights.
    Please remember to click "Mark as Answer" on the post that helps you, and to click "Unmark as Answer" if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Mobile Client 7.0 SP04 with SQL Express 2008 R2

    Does anyone know if you can install SQL Express 2008 R2 with MSA 70. sp04 on Windows XP?
    Any help / advice would be appreciated
    regards
    Barry

    Hi Barry,
    You will find SwitchDB.exe in %mobilerootdir%\Bin.Net folder. And running it is fairly simple once you have the IDES .car file present in DVD structure(you may search all *.car files). Copy that .car file onto your local disk.
    After the IDES DB is attached ,you may run ides_empty_logins.sql also located in Bin.Net path.
    Regards,
    Rohit

  • Trouble with SQL Anywhere 16

    We are having an issue with SQL Anywhere 16 and were wondering if there is a patch/fix or something that we need to look elsewhere. Our tester is being kicked out of out Sybase application whenever doing certain types of queries and as a result the database is being shutdown. We then have to go back into Sybase 16 and restart the database. We do not recall having this problem with SQL Anywhere 11.5. We have just recently upgraded to SQL Anywhere 16.

    Hi Lawrence,
    I think there's some confusion from both groups on this question. There was never a SQL Anywhere 11.5 version - we had SQL Anywhere 11.0.0, and SQL Anywhere 11.0.1. There was an ASE 11.5 and ASE 16.0 release though, so it is confusing to know which product you are inquiring about based on the version.
    Please provide some further details about which product you are using, the method in which you're using to start your database, and the connection strings that you're using. Hopefully with some more specific database configuration information, we can help you figure out which database product you're looking for additional help on and provide some suggestions.
    Thanks,
    Jeff Albion
    SAP Active Global Support

  • Understanding replica volume and recovery point volume usage with SQL Express Full Backup

    I am running some trials to test DPM 2012 R2's suitability for protection a set of SQL Server databases and I am trying to understand what happens when I create a recovery point with Express Full Backup.
    The databases use simple recovery model and in the tests I have made so far I have loaded more data into the databases between recovery points since that will be a typical scenario - the databases will grow over time. The database files are set to autogrowth
    by 10%
    I have been looking at the change in USED space in the replica volume and in the recovery point volume after new recovery points and have a hard time understanding it.
    After the first test where data was loaded into the database and an Express Full Backup recovery point was created, I saw an increase in used space in the replica volume of 85 Gb and 29 GB in the recovery point volume. That is somewhat more than I think
    the database grew (I realize that should have monitored that, but did not), but anyway it is not completely far out.
    In the next test I did the same thing except I loaded twice as much data into the database.
    Here is where it gets odd: This causes zero increased usage in the replica volume and 33 GB increased use in the recovery point volume.
    I do not understand why the replica volume use increases with some recovery points and not with others.
    Note that I am only discussing increased usage in the volumes - not actual volume growth. The volumes are still their original size.
    I have been using 3-4 days on the test and the retention period is set to 12 days, so nothing should be expired yet.

    Hi,
    The replica volume usage represents the physical database file(s) size. The database file size on the replica should be equal to the database file size on the protected server.  This is both .mdf and .ldf files.  If when you load data
    into the database and you overwrite current tables versus adding new ones, or if there is white space in the database files and the load simply uses that white space, then there will not be any increase in the file size, so there will not be any increase
    in the replica used space.
    The recovery point volume will only contain delta changes applied to the database files.  As the changed blocks overwrite the files on the replica during express full backup, VSS (volsnap.sys) driver copies the old blocks about to be overwritten
    to the recovery point volume before allowing the change to be applied to the file on the replica. 
    Hope this helps explain what you are seeing.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • Trouble with SQL datetime format

    I have written a VI to import a CSV file into a SQL data table but I
    cannot get it to work when using a table with "datetime" data
    format.  It will import into a new table with undefined data
    formats as "varchar" format but no luck when going into a table with the "datetime" data
    format.   I need the datetime format for date/time queries later.
    I have attached a zip file of my VI and the CSV file.  Is there a problem with my CSV format or I am I doing
    something else wrong here?
    Please help.
    Thanks,
    Greg
    Attachments:
    SQL issue.zip ‏54 KB

    Greg
    I have just tried to insert your data into a SQL Server (MSDE) database.
    I found that the INSERT data didn't work. The TRUE for Create Table didn't seem to do any thing. So I created a table using labview like this
    And this is its design.
    I then run the vi again and it starts to work with no issues. So it looks like the Create Table?=TRUE for the INSERT doesn't seem to work on SQL Server. It looks like you need to create the table first.
    Here is your data in the database
    Let me know what you think
    David
    Message Edited by David Crawford on 04-28-2006 11:17 AM
    Attachments:
    Your Data.jpg ‏32 KB
    Create Table.jpg ‏20 KB
    Table Design.jpg ‏15 KB

  • Linking 2 tables with Sql Expressions or add command

    Hi
    I want to make a custom table using a union all using cr2008 but I'm unable to find/enable the sql expressios field? It's just not there?
    I've tried using the add command is the database expert but I cant see how to get this work.. I have 2 data sources that each consist of identical tables (but different data).  I have 2 tables I want to link:
    datasource1 statstable
    datasource2 statstable
    So I want to do:
    SELECT * FROM datasource1 statstable
    UNION ALL
    SELECT * FROM datasource2 statstable
    but it wont let me do this as the 2 stats tables are in different datasouces.
    I would really appreciate any help you can give me.
    thanks

    you can not do this unless you use busines views.
    you can not create one report based on two different datasources using crystal reports,
    my advice to you to solve this problem
    start to look for the "business views"
    which allow you to create a strucutre based on many different datasources, you create 2 connections for your datasources and map them in the view.
    then you use those business views in crysal reports to create you report.
    it may looks complicated, but i admit its too easy and not hard.
    you can get a small book about business views manager which comes with BO XI R2 or Xi 3.0
    from the business objects support site.
    i hope it was clear for you
    good luck

  • Trouble with SQL loader

    Hello there,
    I am trying to load some data to a temp table for normalization but I am getting errors and nothing loads.
    My table is as below
    CREATE TABLE CA(
    OLD_SYSTEM_ID   VARCHAR2(25),
    OLD_DESCRIPTION VARCHAR2(35),
    ORDER_DATE      DATE,
    SHIP_DATE       DATE,
    QUANTITY        NUMBER);My Control file is like this
    LOAD DATA
    INFILE Ca.fwf
    BADFILE Ca.bad
    INTO TABLE CA
    old_system_id    POSITION (1:19) VARCHAR2,
    old_description  POSITION (20:27) VARCHAR2,
    order_date       POSITION (28:35) DATE,
    ship_date        POSITION (36:43) DATE,
    quantity         POSITION (44:47)
    )And my data is like this:
    CA-91003-KTS:2452-10000218619930205199303021
    CA-91003-KTS:2452-2000009171993020519930302100
    CA-91003-KTS:2452-3000009261993020519930302500
    CA-91003-KTS:2452-40000094619930205199303025
    CA-91003-KTS:2477-10000218619930319199304141
    CA-91003-KTS:2477-2000009171993031919930414100
    CA-91003-KTS:2477-3000009261993031919930414500
    CA-91003-KTS:2477-40000094619930319199304145
    CA-91003-KTS:2497-10000218619930519199306141I get this error:
    SQL*Loader: Release 9.2.0.1.0 - Production on Tue Oct 3 10:16:00 2006
    Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.
    SQL*Loader-350: Syntax error at line 6.
    Expecting valid column specification, "," or ")", found "VARCHAR2".
    old_system_id    POSITION (1:19) VARCHAR2,Any ideas why? this is happening on 8 different loads although they are all similar, is it to do with VARCHAR2 and commas?
    Regards
    Mike

    What happens when you try to load without any date mask? Does it get rejected? May be you should request your upstream system to send the date values in similar format?.
    If there are going to be only two formats i.e.,DD-MON-YY and DD/MM/YY then you can use decode function. something like below
      "decode(instr(:order_date,'-'),0,to_date(:order_date,'DD/MM/YY'),to_date(:order_date,'DD-MON-YY'))"Post the code which you tried. I dont have acces to database at home so the above code snippet is not tested.

  • Trouble with sql

    hi there
    i have connected my java application to a ms acess
    database succsssfully but when i include sql commands
    in the application it brings errors during compilation
    it points to the commands
    i imported java.sql;
    but it seams the compiler still does not recorgnise the
    commands.
    what could be the problem, please help.

    but when i include sql commands
    in the application it brings errors during
    compilation
    it points to the commandsIf you mean with "include sql command" putting a SQL command directly into the code, this doesn't work (at least not without a special pre-compiler)
    Post your code and maybe we can help you.
    Thomas

  • Trouble with SQL Statements

    Hello all that can help,
    i am programming in Ready to Program to connect to a VideoShop database using SQL statements.
    I am having trouble when using single and double inverted commas. eg vs.updateRentTable ("DELETE FROM RentTable WHERE CustId=);
    but instead of specifiying the CustId i want to make it a variable id so that i can delete any name i want according to their ID.
    also i am wondering if it is possible to write data from a database into a text file? is it possible to use Printwriter?
    Looking forward to your help,
    Manuking16

    Hi Manuking_16,
    Your question should be posted on a sql forum, not on a JDBC forum. Anyway. Just looking for answers, right?
    1) If your datatype is INT, you do not use either quotes " or single quotes in your SQL statement
    DELETE FROM RentTable WHERE CustId= 12345.
    To build the SQL String in JAVA just write:
    {code}String sqlStatement = "DELETE FROM RentTable WHERE CustId = " + custID; // custID will be casted to String.{code}
    2) Use preparedStatement
    {code}PreparedStatement pStm = conn.prepareStatement(�DELETE FROM RentTable WHERE CustId = ?");
    pStm.setInt(1, customerID);
    int numberOfDeletedLines = pStm.execute();3) If you want to enter the real name to do the deletion
    DELETE FROM RentTable WHERE CustId IN (select custID FROM Customer WHERE name = "joe bob johnson")
        To build the SQL String in JAVA just write: String sqlStatement = "DELETE FROM RentTable WHERE CustId IN (select custID FROM Customer WHERE name = '" + sCustomerName + "' )"; // just copy & pasteHope I got your question right.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Trouble with Airport Express going orange....

    My network consists of a 1tb time capsule at the heart. In the dining room I have an older express (pre N speed) which is used to stream itunes to my hifi in that room. In the lounge room I have a new express (N) which is used to stream music to the hifi in that room, but is also set to extend the wifi network. An ethernet cable is then connected from the express into my Samsung Bluray player so I can watch youtube on my TV.
    Most of the time everything is fine, but I have noticed that every few days the express in the lounge room starts flashing orange. When this occurs I have noticed that my iPod Touch has no wifi internet access. To fix the problem I just have to unplug the express then plug it back in. Not a big deal, but a bit annoying. I have tried swapping the two express units but this seems to make little difference. The only real difference between the two is that the one in the lounge room is set to extend my network.
    Any advice would be greatly appreciated...
    Jason

    jason_h wrote:
    My network consists of a 1tb time capsule at the heart. In the dining room I have an older express (pre N speed) which is used to stream itunes to my hifi in that room. In the lounge room I have a new express (N) which is used to stream music to the hifi in that room, but is also set to extend the wifi network. An ethernet cable is then connected from the express into my Samsung Bluray player so I can watch youtube on my TV.
    every few days the express in the lounge room starts flashing orange. When this occurs I have noticed that my iPod Touch has no wifi internet access. To fix the problem I just have to unplug the express then plug it back in.
    When your AirPort Express shows that orange light, can you see it in AirPort Utility (possibly by connecting your computer to it with an Ethernet cable)? If so, you should be able to see why it's complaining.

  • Trouble with Airport Express as repeater

    Hi Community.
    I want to extend the WiFi-range of my new (4th-gen.) Time Capsule to the other end of the house by use of my old AirPort Express (probably 1st gen. - only 802.11b/g-mode).
    I read some of the threads here in the community and thought that I had understood how to to do that but now my Time capsule keeps switching between steady green and yellow flashing lights. On AirPort utility 6.0 I see that apparently my internet connection is supposed to be lost whenever it goes to the yellow light. I had no such troble before I changed the configuration to "Participate in a WDS". Before it was on "create a wireless network".
    To summarize what I did:
    Using AirPort Utility 5.6 I first switched the Time Capsule (which is connected to the modem and to my iMac via ethernet) to the "Participate in a WDS network" and clicked "Allow this network to be extended". Unter the "WDS-Menu" I set it to "WDS main" and clicked "Allow wireless clients". Afterwards I entered the MAC-Adress of my AirPort Express under the WDS Remotes. Then I updated the Time Capsule. (it is still set up to also transmit signals in the 5 GHZ / n-mode under a different automatic channel, but this should not affect the AirPort Express, since it does not receive any signals in 802.11n - does it?)
    Afterwards I connected my AirPort Express via ethernet to the Time Capsule and also set it to "Participate in a WDS network". The Radio Mode is on "802.11b/g compatibel" and it is on the same channel as my Time Capsule. Under the WDS-Menu I set it up as a WDS-remote, allowed wireless clients and entered the MAC-Adress of my Time Capsule as the WDS-Main.
    Now I try to run the setup and every 10 seconds or so the yellow light of the Time Capsule lights up.
    Does anybody have an idea what might be wrong?
    Thanks!

    Except for enabling the "Allow this network to be extended" option which is only valid for 802.11n networks, it sounds like you did everything correctly, but please take a look at the following step-by-step procedure to see you if may have missed something along the way.
    Static WDS Setup with "Mixed" (802.11g & 802.11n) AirPort Base Stations
    Note: To facilitate the WDS set up:
    Perform a "factory default" reset on all of the base stations that you plan on using in the WDS. This will get them back to their respective "out-of-the-box" configurations.
    To avoid having to "switch" wireless networks within the AirPort Utility, temporarily connect the remote base station(s) to the Time Capsule (TC) by Ethernet during the set up phase, and then, relocate it to the desired location when complete.
    Be sure to jot down the AirPort IDs (MAC addresses) for each of the base stations to be used in the WDS. The AirPort ID is printed on the label on the bottom/side of the base station.
    Main Base Station Setup
    Click the AirPort status menu in the menu bar and choose the wireless network created by the TC.
    Open AirPort Utility.
    Select the TC, and then, choose Manual Setup from the Base Station menu.
    Enter the base station password if necessary. If the base station is using the default password of public, you will not be prompted for a password.
    Click Wireless in the toolbar, and then, choose “Participate in a WDS network” from the Wireless Mode pop-up menu. Note: You will need to hold down the Option key in order to get this option on the AEBSn, 802.11n AirPort Express Base Station (AXn), or Time Capsule (TC).
    Click WDS and then, choose “WDS main” from the WDS Mode pop-up menu.
    Select the “Allow wireless clients” checkbox if you want client computer to connect to this base station.
    Click the Add "+" button and enter the AirPort ID of 802.11b/g AirPort Express Base Station (AX).
    Click Update to send the new settings to the base station in the WDS.
    Remote Base Station Setup
    Open AirPort Utility; select the AX, and then, choose Manual Setup from the Base Station menu.
    Enter the base station password, if necessary.
    Enter the same network password as the TC, if necessary.
    Click AirPort in the toolbar, and then, click Wireless. Choose “Participate in a WDS network” from the Wireless Mode pop-up menu, and then, choose the same channel as the TC from the Channel pop-up menu.
    Click WDS and choose “WDS remote” from the pop-up menu.
    Enter the AirPort ID of the TC in the WDS Main field.
    Click Update to transfer the settings to the base station.
    (ref: Pages 42-46 of "Designing AirPort Networks.)
    (ref: Setting up and configuring a Wireless Distribution System (802.11b/g)

Maybe you are looking for

  • Fonts for Video - Where is that link?

    A short while back there was a link to an article on what fonts to use and not use for video, along with other tips on creating titles for video. I tried to search for it, but could not find it. Does anybody here have it bookmarked or remember wher I

  • Mac Mini DVR?

    Looking to get rid of my Cox Cable DVR box and possibly replacing it with a Mac Mini. I don't necessarily want to get the brand new Mac Mini but was wondering what the bare minimum Mac Mini I would need to purchase in order to record HDTV with EyeTV?

  • BTE for MIRO

    Hi all,           Is there any Business Transaction Event for MIRO. Actual requirement is, when creating an invoice relating to a purchase order for company code, the plant field of the first PO and it’s first item line quoted on the invoice needs to

  • All module standard SAP reports

    Hi, we are in version 4.7C . We are in the need of knowing all standards reports SAP has provided of following modules : SD / MM / FI / PP We need the program name / description and purpose of the report . Any such type of documentation available ? I

  • How to manually restart a service

    systemuiserver hung up on me recently and after forcing it to quick in activity monitor, I could not figure out how to restart the service. I'm new to mac from windows, where I would just go to where the services are listen and click restart. I did t