RE: CTE

Dear Readers,
I am not sure why my CTE is not working on a small table I created. Below are the DDL statements with the CTE query.
OBJECTIVE: TO practice how to eliminate duplicates:
DDL statements of the Product table:
--Create table Product
-- ProductID    int Not Null,
-- ProductName varchar(20) Not Null,
-- ProductPrice money Not null
-- Insert Product
-- Values(1, 'Box', '4.99')
-- Insert Product
-- Values(2,'Book','1.99')
-- Insert Product
-- Values(3, 'Bag','5.99')
-- Insert Product
-- Values(4, 'Water Bottle','1.99')
-- Insert Product
-- Values(2,'Book','1.99')
-- Insert Product
-- Values(5, 'Crayons','4.99')
-- Insert Product
-- Values(1, 'Box','4.99')
-- Insert Product
-- Values(2, 'Book','1.99')
-- Insert Product
-- Values(3, 'Bag','5.99')
-- Insert Product
-- Values(2, 'Book','1.99')
The CTE Query:
;With DuplicateCTE
AS
 Select
        ProductID,
        ProductName,
        ProductPrice
        Row_Number() OVER (Partition By ProductID ORDER BY ProductName) AS RowNumber
FROM
        Product
When I run the above CTE query I get the following error:
Error Message: Msg 102, Level 15, State 1, Line 185
Incorrect syntax near ')'.
Thank-you
SQL75

You are missing a comma after ProductPrice and you need to provide an outer query after the CTE definition.  The SELECT query below returns only the first row from each group.  If you want to delete duplicates from the table, change the outer SELECT
to "DELETE FROM DuplicateCTE WHERE RowNumber > 1".
WITH DuplicateCTE
AS
Select
ProductID,
ProductName,
ProductPrice,
Row_Number() OVER (Partition By ProductID ORDER BY ProductName) AS RowNumber
FROM
dbo.Product
SELECT
ProductID,
ProductName,
ProductPriceFROM DuplicateCTE
WHERE RowNumber = 1;
Dan Guzman, SQL Server MVP, http://www.dbdelta.com

Similar Messages

  • Recebimento de CTe

    Olá,
    Estou em um projeto que possui o requerimento de recebimento de CTes pelo GRC/PI, gostaria de verificar com vocês se existe alguma solução standard para esse recebimento (cenários, notas SAP, etc) ou se é necessário a criação de uma interface customizada (dado que o CTe possui webservices isolados dos webservices da SEFAZ).
    Hoje o cliente qu estou, possui um sistema de que centraliza o recebimento de todas as notas de fornecedores e CTe e é necessário conectar o GRC/PI nesse sistema para que seja possível o recebimento destas notas.
    Desde já, muito obrigado pela ajuda.
    Abrs,
    Alberto Almeida

    Oi Alberto
    Na solução de incoming da NF-e 10 você pode tratar o recebimento de CT-e. Atualmente você pode fazer a validação da assinatura e verificação de status. E, até onde eu sei... no próximo SP que será liberado essa semana (SP 9) será disponibilizada a badi para que cada cliente possa customizar a entrada automática.
    Mais informações:
    http://help.sap.com/saphelp_nfe10/helpdata/en/index.htm
    Abraço
    Eduardo Chagas

  • NFe 10 Escrituração XML CTe - Vários Documentos de Custos de Frete para a P.O.

    Bom dia,
    Tenho um cenário de escrituração do XML de CTe versão 2.0 para fretes Outbound CT-e para saídas de NF-e com LES (CTEOUTLE), onde geramos um Pedido de Compra por dia para cada fornecedor de transportes e todos os custos de fretes gerados naquele dia são entrados neste pedido; Quando recebemos o CTe que está atribuído a este Pedido de Compra o sistema não consegue identificar qual é o custo de frete referente a este CTe devido existirem vários custos neste Pedido. No processo tenho que gerar um Pedido de Compra por dia para cada parceiro de transporte.
    Mensagem GRC: Existem vários documentos de custos; automatização não é possível Nº da declaração J1B_NFE565
    Nº mensagem /XNFE/APPB2BSTEPS011
    Alguém sabe como atribuir corretamente o custo para funcionar a automação?
    Outro ponto que tenho neste processo de Simular Fatura, é se consigo determinar automaticamente o Código Imposto e CFOP automaticamente?

    Oi Danilo,
    Estou com o mesmo problema que você.
    Você teve que implementar alguma BADI para trazer o documento correto?
    Poderia dar detalhes?
    Grato
    Lucas

  • CTe em Ambiente de Homologação

    Olá Pessoal,
    Estamos fazendo as configurações do CTe Outbound, e nos deparamos com o erro 646.
    Ele diz que temos que mandar: CT-E EMITIDO EM AMBIENTE DE HOMOLOGACAO - SEM VALOR FISCAL para alguns campos.
    Na NFe tinha essa questão também, mas lá fizemos no método FILL_HEADER da badi.
    Para o CTe não estou encontrando um lugar apropriado, a não ser por ENHANCEMENT. Os campos de parceiros não estão disponíveis para alteração no método do CTe 2.00.
    Pergunta: Alguém tem um lugar melhor para eu colocar esse literal Fixo ( Lembrando que tenho que colocar no EMITENTE, RECEBEDOR, etc, etc )
    Obrigada!
    []s

    Oi
    Creio que vc consegue "habilitando" este campo na BADI fazendo um append Z na estrutura do cabeçalho no método FILL_CTE_200.
    Abraço
    Eduardo Chagas

  • Erro ao carregar o XML de CTe

    Olá a todos,
    Estou com um problema ao carregar o XML de CTe, após o inicio do processamento da mensagem, obtenho o seguinte erro no payload: "Erro de customizing: n° de identificação fiscal <CNPJ> não atualizado.
    Aguem tem ideia de onde teria que customizar esse CNPJ?
    Muito Obrigado
    Raphael Trivelati

    Raphael,
    Verifique se o "tomador do serviço" é contra um CNPJ da empresa(/XNFE/TCNPJ).
    Validação está na FM /XNFE/CTE_CHECK_CNPJ_INCOMING, você pode depurar o proxy CFB2B_procCTe_IB para um melhor entendimento.
    Att.,
    André Canalles

  • Erro no cenário de CTe 1.04

    Bom dia!
    Pessoal, acabamos de aplicar o SP09 no GRC 10.
    Com a aplicação deste support package veio junto a versão de CTe 1.04, mas ao executar o cenário, recebi como retorno a mensagem abaixo:
    Verifiquei na SE80 e percebi que a Service Interface CFB2B_procCTe_IB está exibindo a mensagem "Service Interface - Proxy Out-Of-Date".
    Gostaria de saber se existe algum procedimento ou nota para regerar este proxy?
    Obrigado.
    Gonçalo.

    Bom dia Bruno,
    Ainda em relação a CTe 1.04, verifiquei no site da SEFAZ MT que a data limite de aceitação da 1.03 será até 02.04.2012. Você sabe dizer se essa data é válida apenas para o MT ou para todas as SEFAZ recebedoras de CTe ?
    Segue:
    url: http://www.sefaz.mt.gov.br/portal/cte/
    " Nota 2: Informamos que a data final para utilização da versão 1.03 é 01/04/2012. A partir de 02/04/2012 somente será aceita a versão 1.04, tanto no ambiente de homologação quanto no de produção. "
    Você teria uma estimativa mais ou menos da data em que será liberado o SP 10 agora em março? Estamos prestes a preparar o ambiente de PRD e eu gostaria de me planejar para já preparar com o SP 10.
    Obrigado,
    Henrique

  • Duvida de CTe

    Fernando/Henrique/Bernardo
    Alguem sabe me informar se a SAP já está disponibilizando alguma solução para a validação do CTe junto ao SEFAZ? Dei uma pesquisada aqui no FORUM e não vi nada significativo a respeito do posicionamento da SAP sobre o assunto.
    Obrigado

    Por enquanto (standard) não tem nada.
    Tem como armazenar o XML no GRC. Vide:
    Aqui na nossa empresa, fizemos o desenvolvimento da validação da CTE pelos Webservices já disponíveis:
    (www.cte.fazenda.gov.br)
    Quanto a soluções SAP standard, o Fernando/Henrique podem responder.
    At.,
    Bernardo Braga

  • Entrada de CTe com tpemis 7

    Pessoal, boa tarde!
    Alguém já precisou tratar recebimento de CTe com Tipo de Emissão = 7 (entendi que é SEFAZ Virtual RS)?
    Pelo manual do CTe temos estes valores possíveis:
    Preencher com: 1 - Normal; 5 - Contingência FSDA; 7 - Autorização pela SVC-RS; 8 - Autorização pela SVC-SP
    Porém, o domínio do tpemis no SAP (J_1BNFE_TPEMIS) prevê apenas os valores da NFe:
    1 u2013 Normal u2013 emissão normal;
    2 u2013 Contingência FS u2013 emissão em contingência com impressão do DANFE em Formulário de Segurança;
    3 u2013 Contingência SCAN u2013 emissão em contingência no Sistema de Contingência do Ambiente Nacional u2013 SCAN;
    4 u2013 Contingência DPEC - emissão em contingência com envio da Declaração Prévia de Emissão em Contingência u2013 DPEC;
    5 u2013 Contingência FS-DA - emissão em contingência com impressão do DANFE em Formulário de Segurança para Impressão de Documento Auxiliar de Documento Fiscal Eletrônico (FS-DA).
    Por conta da falta do valor 7 no domínio não está sendo possível o registro do CTe.
    Tem alguma nota para ajustar isso?
    Obrigado,
    Eduardo Hartmann

    Bom dia Eduardo,
    Isto varia de questão para questão, nesta discussão nenhuma resposta anterior teve a resposta correta. Digo, nem próximo disso, então Ok  em você marcar sua resposta como correta.
    Em outros casos algum colega indica a direção correta 95%, até por que os passos seguidos vão ter detalhes que não são descritos. Certo?
    De qualquer forma algumas dicas:
    - Nem sempre se tem respostas relevantes então é Ok que algumas não mereçam nem um Helpful
    - Marcar como Correto (apenas 1 por questão) ou Helpful (até 13 se não me engano) ajudam a fomentar respostas à sua questão
    - Estes pontos também "ajudam" os profissionais que dispenderam tempo próprio para lhe ajudar
    - Estas marcações ajudam quem lê a questão futuramente
    - A resposta é pessoal: às vezes respostas simples podem trazer muita luz a quem não tinha este conhecimento (mesmo que básico), e certas vezes uma resposta rebuscada não trouxe nada novo a quem perguntou. Na dúvida eu pontuo pelo esforço dispendido também
    Escrevi tanto.. rsss Respondendo diretamente, sua questão é a correta.
    Em Abril teremos mudanças no SCN com um sistema "gamification", onde a partir de técnicas dos games teremos missões a serem feitas no SCN, badges de missões concluídas. E isto irá nos reciclar/ensinar enquanto tentamos atingí-las. Aguardem...
    http://scn.sap.com/community/about/blog/2013/02/11/game-on-gamification-coming-to-sap-community-network-scn
    Atenciosamente, Fernando Da Rós

  • CTe Entrada em massa

    Boa tarde.
    Estamos implementando ECC e usando a solução disponibilizada pela SAP de trabalhar com o CTe como um mestre de serviço.
    As notas foram aplicadas e tudo esta funcionando (Contabilização da Folha/MIRO e escrituração), porém é preciso registrar a folha e a MIRO para cada CTe recebido pela empresa.
    Nosso problema é que recebemos um volume grande de CTe,  gostaria de saber se existe alguma forma standard de realizar a entrada em massa ou outra de lançar os CTe de forma que escriturem nos livros fiscais e consequentemente gerem o contas a pagar
    ao fornecedor de frete.
    Obrigada
    Carolina Lapetina
    Grupo Libra

    conforme key-user da empresa a qual trabalho esta necessidade é para atender conforme abaixo :
    Revisão de Vida Útil, Valor Residual e Custo Atribuído (CPC 27 e ICPC 10)
    O objetivo dos pronunciamentos é estabelecer o tratamento contábil para ativos imobilizados, de forma que os usuários das demonstrações contábeis possam discernir a informação sobre o investimento da entidade em seus ativos imobilizados, bem como suas mutações.
    Resumindo, o CPC's 27 etc, foram aplicado no passado, resultando custo atribuído na area XX, e residual normal com nova vida útil conforme laudo para área XY, então
    è necessário fazer a revisão das vidas úteis anualmente, ou quando necessário.
    muito obrigado pela atenção.

  • CTE : ERRO MONITOR ( Type conflict in program /XNFE/SAPLGROUPING )

    Ola Sap Experts, preciso de uma mão de vcs.
    Estou em um ambiente de um cliente onde o monitor de outbound de CTe, quando se tenta acessar o detalhe da CTe ou qualquer outra ação é gerado o erro "Type conflict in program /XNFE/SAPLGROUPING. (termination; RABAX_STATE)" é gerado um dump na ST22.
    O cliente nao tem qualquer customizacao desse monitor usa de maneira standart e se encontra no sp 16 do SLL-NFe rodando em base de um PI 7.31 dual stack.
    Alguem já passou ou esta passando por isso ?

    Prezados,
    Alguém conseguiu resolver o DUMP?
    Estamos enfrentando o mesmo problema no projeto, mas o erro só ocorre quando testamos um cenário com IPI Return.
    Alguma dica?
    Obrigada,
    Tatiana Augusto

  • CTE CT-e não autorizado. Código de status 239, motivo: Rejeição: Cabeçalho - Versão do arquivo XML não suportado

    Boa tarde a todos,
    Já configuramos os cenários do CT-e para a versão 2.00, mas temos algumas notas com o seguinte erro:
    CT-e não autorizado. Código de status 239, motivo: Rejeição: Cabeçalho - Versão do arquivo XML não su
    mesmo reiniciando o processo, o status se mantem com o 239,
    alguém teria alguma solução para processar estes CT-e novamente?
    desde ja agradeço.
    Alexandre.

    Alexandre,
    Estou com o mesmo problema, o erro corre na validação do CTe de entrada quando ele foi emitido na versão 1.04.
    Realizei um teste passando a chave do CTe alterando o parametro versão para 2.0 e a consulta retornou com sucesso. Estou pensando em fazer um mapping forçando a versão para 2.0.

  • How to write a sql query to calculate weights using CTE

    Hi guys,
    want some help using a CTE to generate data using recursive SQL - input data in table A to be transformed into table B shown below
    Table A
    Instru_id_index     instru_id_name    instru_id_constit  con_name   weight
            56                       INDEX A                     
    23                  A                 25
            56                       INDEX A                     
    24                 B                  25
            56                       INDEX A                     
    25                  C                 25
            56                       INDEX A                     
    57              
    INDEX  B       25
            57                      
    INDEX B                     31                 
    D                 33
            57                      
    INDEX B                     32                 
    E                  33
            57                      
    INDEX B                     33                 
    F                  33
    (Logic should be recursive in order to be able to handle multi-level, not just level 2.)
    Table B
    Instru_id_index     instru_id_name    instru_id_constit  constit_name   weight
            56                       INDEX A                        
    23                A                   25
            56                       INDEX A                        
    24                B                   25
            56                       INDEX A                        
    25                C                   25
            56                       INDEX A                        
    31                D                   8.3
            56                       INDEX A                        
    32                E                    8.3
            56                       INDEX A                        
    33                F                    8.3
            57                       
    INDEX B                       31                
    D                   33
            57                       
    INDEX B                       32                E                   
    33
            57                       
    INDEX B                       33               
    F                     33
    how can I write a simple CTE construct to  display the data in table B -  How can i calculate the values of weights as 8.3 respectively - calculate these without changing the structure of the tables.
    Can I do this in a CTE

    Full join?
    Anyway, thanks for Rsignh to produces a script with CREATE TABLE and INSERT statements. I've extended the data to one more level of recursion.
    create table weight_tab(
     instrument_id_index int,
     instrument_id_name varchar(10),
     instrument_id_constituent int,
     constituent_name varchar(10),
     [weight] decimal(10,2))
     insert into weight_tab values
     (56,'INDEX A',23,'A',25),(56,'INDEX A', 24,'B',25),
    (56,'INDEX A',25,'C',25),(56,'INDEX A', 57,'INDEX  B',25),
    (57,'INDEX B',31,'D',33), (57,'INDEX B', 32,'INDEX E',33),
    (57,'INDEX B',33,'INDEX C',33),
    (33,'INDEX C',42,'Alfa',60),
    (33,'INDEX C',43,'Beta',40),
    (32,'INDEX C',142,'Gamma',90),
    (32,'INDEX C',143,'Delta',10)
    go
    SELECT * FROM weight_tab
    go
    ; WITH rekurs AS (
        SELECT instrument_id_index, instrument_id_name, instrument_id_constituent,
               cast(weight as float) AS weight, cnt = 1
        FROM   weight_tab a
        WHERE  NOT EXISTS (SELECT *
                           FROM   weight_tab b
                           WHERE  b.instrument_id_constituent = a.instrument_id_index)
        UNION ALL
        SELECT r.instrument_id_index, r.instrument_id_name, w.instrument_id_constituent,
               r.weight * w.weight / 100, r.cnt  + 1
        FROM   rekurs r
        JOIN   weight_tab w ON r.instrument_id_constituent = w.instrument_id_index
        WHERE r.cnt < 4
    SELECT instrument_id_index, instrument_id_name, instrument_id_constituent,
           cast(weight AS decimal(10,2))
    FROM   rekurs
    go
    DROP TABLE weight_tab
    Erland Sommarskog, SQL Server MVP, [email protected]

  • How do you get a TOP 1 in a CTE?

    Dear colleagues,
    I have a query with a CTE. I want the CTE to return the TOP 1 result for every record it joins with. Unfortunately, the CTE performs the TOP 1 for it's entire result set. How can I get the result I want? I do not want to use a subquery, because my CTE returns
    more than one column. Should I use a table valued function and an OUTER APPLY, or are there better ways of doing this?
    Here is the example:
    CREATE TABLE main (nr int, name varchar(30));
    GO
    INSERT INTO main VALUES (1, 'first'), (2, 'second')
    GO
    CREATE TABLE sub (nr int, subnr int, subname varchar(30));
    GO
    INSERT INTO sub VALUES (1, 1, 'first-sub-first'), (1, 2, 'first-sub-second'), (2, 1, 'second-sub-first'), (2, 2, 'second-sub-second')
    GO
    ;WITH Info AS
    ( SELECT TOP 1 sub.nr
    , sub.subname
    FROM sub
    SELECT main.nr AS main_nr
    , main.name AS main_name
    , info.subname AS sub_name
    FROM main
    LEFT OUTER JOIN info ON info.nr = main.nr
    ORDER BY main.nr
    GO
    DROP TABLE sub
    GO
    DROP TABLE main
    GO
    The result I get is
    The result I want is

    Dear mister CELKO,
    Of course, good programmers avoid dialect. Unfortunately, I am not a good programmer, so I do use it. In my toy example the order does not matter. But you are right that in my real world example it does. Your remark points to the flaw in my reasoning. What
    I want is syntactically not correct. So thank you for pointing this out to me.
    Is my other option (table valued function with outer apply) valid, or is it to costly performance wise? My 'main' table contains millions of records, but my 'sub' table contains 0 to 3 records per main record.
    ;WITH Info AS
    ( SELECT sub.nr
    , sub.subname
    FROM sub
    ORDER BY sub.subnr
    SELECT main.nr AS main_nr
    , main.name AS main_name
    , info.subname AS sub_name
    FROM main
    INNER JOIN info ON info.nr = main.nr
    ORDER BY main.nr;
    Msg 1033, Level 15, State 1, Line 7
    The ORDER BY clause is invalid in views, inline functions, derived tables, subqueries, and common table expressions, unless TOP, OFFSET or FOR XML is also specified.

  • How to process each records in the derived table which i created using cte table using sql server

    I want to process each row from the CTE table I created, how can I traverse from first row to second row and so on....
    how to process each records in the derived table which i created using  cte table using sql server

    Ideally you would be doing a set based processing rather than traversing row by row as thats more efficient. To answer it specific to your scenario we may need more info. Can you explain with some sample data your exact requirement?
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Looking for a recursive answer using a intersection table. Possible CTE? Other method?

    Hello all,
    This is my first time on the forums, so please bear with me.  Im also a somewhat novice SQL coder but I have a question that I feel might be best answered my the more advanced folks on this forum.
    I have 3 tables, a user table, a group table and a membership table.
    Say:
    user_table
    +-------------------+
    | user_PK |
    | Id |
    | Name |
    | Description |
    +-------------------+
    Group_table
    +-------------------+
    | group_PK |
    | Id |
    | Name |
    | Description |
    +-------------------+
    Group_members
    +----------------------+
    | group_members_PK |
    | Group_ID |
    | Member_ID |
    | Member_type |
    +----------------------+
    The group_ID is linked to the Group_table.ID and the Member_ID can be either linked back to the group_table or user_table depending on the value of member_type.  
    It is possible to have nested groups, and each level of nesting can have users as well not just nested groups.  Sort of how the windows group nesting model works.
    I would like to end up with being able to have output that lists only users, their descriptions and their nested group path if any.
    If you need more clarification please let me know.   I know this maybe a simple thing, but Im unsure how to do it.  Thanks in advance.

    >> This is my first time on the forums, so please bear with me.  I am also a somewhat novice SQL coder but I have a question that I feel might be best answered my the more advanced folks on this forum. <<
    Please follow basic Netiquette and post the DDL we need to answer this. Follow industry and ANSI/ISO standards in your data. You should follow ISO-11179 rules for naming data elements. There is no generic “id”, “name, etc. in RDBMS. Tables have to have a key,
    but we do not put “_pk” on the name. Read a copy of https://www.simple-talk.com/books/sql-books/119-sql-code-smells/ so you will stop tibbling and other bad practices.  
    You should follow ISO-8601 rules for displaying temporal data. We need to know the data types, keys and constraints on the table. 
    Avoid dialect in favor of ANSI/ISO Standard SQL. And do not draw ASCII pictures! They do not compile. 
    >>The group_id is linked [sic] to the group_table.id [sic] And the member_id can be either linked [sic] back to the group_table or user_table depending on the value of member_type.  <<
    RDBMS has no links; that was in network databases in the 1970's. No wonder you want to use recursive CTEs; they are cursors 
    >> It is possible to have nested groups, and each level of nesting can have users as well not just nested groups.  Sort Of how the windows group nesting model works. <<
    Then you should use a nested sets model.  Since you did not post sample data, DDL  or correct specs, Google it.
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • How can i select the step count of a recursive CTE ?

    I want to select the step count of this query (which one is do fiirst and continue + 1)  from query below
    ;WITH EmpCTE( BomID , empid, mgrid,BomMgrId, lvl, Qty , FLG)
    AS
      SELECT     BomID , empid , mgrid, 0 as BomMgrId , 0, Qty , FLG
      FROM Employees
      WHERE empid = 1
      UNION ALL
      SELECT   E.BomID , E.empid, E.MgrId, M.BomID as BomMgrId , M.lvl+1 , E.Qty , E.FLG 
      FROM Employees AS E
        JOIN EmpCTE AS M
          ON E.mgrid = M.empid
    SELECT BomID , empid, BomMgrId as mgrid , FLG , qty , lvl FROM EmpCTE  WHERE  FLG is null 

    Please post DDL, so that people do not have to guess what the keys, constraints, Declarative Referential Integrity, data types, etc. in your schema are. Learn how to follow ISO-11179 data element naming conventions and formatting rules (you have no idea).
    Temporal data should use ISO-8601 formats. Code should be in Standard SQL as much as possible and not local dialect. 
    This is minimal polite behavior on SQL forums. 
    What you did post is a common design error made by people who do not understand how sets work. This is not RDBMS! It is a sequential file system, kludged in SQL using the recursive CTE that hides the cursors and loops. 
    >> I want to select the step count of this query (which one is do first and continue + 1)  from query below <<
    Step? A set has no concept of ordering. Your question is like asking about the gills on a dog in a veterinarian forum.  
    An SQL programer would have a table (set) with the name Personnel. This is a higher level abstraction. But you have Employees, a sequential file or list. 
    Managers and subordinates are not attributes as you show them. There is a relationship among employees. You have a non-normalized model that mixes relationship and entities together in violation of basic data modeling. 
    We also do not use flags in SQL; that was assembly language.
    Please follow Netiquette and  post the specs and DDL , so we can replace it with a nested sets mode. 
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

Maybe you are looking for

  • I am trying to setup time limits in airport 5.6

    I am trying to setup time limits for internet usage in airport 5.6- but i don't get a timed access control "option. Tried on both imac and macbook pro.

  • Send a mail in web dnypro

    when i push the button to send a mail in my Web dnypro application there is an warning occured like this: Sending failed;  nested exception is: javax.mail.MessagingException: 454 5.7.3 Client does not have permission to submit mail to this server.  w

  • Spry Tabbed Panels overwritting Flash drop down menu in IE

    I am having an issue with Spry Tabbed Panels appearing above a Flash drop down menu in IE6 & IE7 but it works fine in Firefox. Would someone be able to educate me on what I can do to fix this problem. The page that is exhibiting this problem is http:

  • Imovie HD exporting to retain best quality

    Hi, I am using iMovie HD 6 and I have built several projects of montage stills to music... I selected the 1080i format and now want to export to retain the best quality and burn these to dvd's for multiple people. 1. should I have begun the iMovie in

  • Printing versus Exporting PDF differences

    I'm trying to export a pages version of business cards (Avery5371 format) to PDF so I can have it printed at Staples.  Interesting enough, the results I get differ between using Print>PDF, and export to PDF (which differ by the quality selected).  In