Forum Replies Created

Viewing 15 posts - 2,386 through 2,400 (of 2,452 total)

  • RE: Adding data to a text field ???

    this may help...

    http://www.sqlservercentral.com/Forums/Topic199758-8-1.aspx#bm199774

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: columns containing spaces

    SELECT LTRIM(employeeid) AS employeeID, employeename

    FROM dbo.[Table]

    WHERE (LTRIM(employeeid) '')

    will...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Awkward Text Parsing

    Where are these logs coming from?

    Is there any way that you or the developer can "improve" the log files by including a delimiter?

    Building on Matt's earlier example I can overcome...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Query Results values differing, don't know why!

    Here is an informative article on ROW_NUMBER()

    http://www.sqlservercentral.com/articles/T-SQL/66512/

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Please help! Extremely slow table query...

    jbarker4682 (8/12/2009)


    Lynn Pettis (8/12/2009)


    How big is each row (in bytes)? What type of network are you on 10MB/100MB/1000MB? Are connected to the network via a switch or hub?

    I'm...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Checking if a row exists and if it does, has it changed

    now many columns and rows are in the tables you wish to compare?

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Using a variable in Data Flow task

    Hi...

    I have a similar scenario...whereby I import from Progress 9.1E (our production system) into SQL (our reporting system)... I use the MAX(IDNO) from the SQL table as the variable in...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: help using the TOP command in sql

    hmmm...

    http://codingforums.com/showthread.php?p=849545

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: SQLServerCentral Editorial Policy - Article Publication

    “Caveat Emptor”

    I am sure that there are many people in this forum who have, without question, accepted advice from the printed page, an article on the web or that...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: PIVOT problem : produces multiple lines

    Hi you have posted this in the SS2K5 forum but you have a TIME datatype...I dont think this was introduced until SQL 2008...

    If I run this on 2K5 I get...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: How do I append records to a table via SSIS?

    You have another active thread here:

    http://www.sqlservercentral.com/Forums/Topic768074-148-1.aspx

    is this referring to the same process you are trying to develop in this thread?

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: How do I append records to a table via SSIS?

    roundel1900 (8/11/2009)


    gah (8/11/2009)


    In Control Flow create an "Execute SQL Task" ...In the task editor set the SQL Statement to TRUNCATE TABLE "yourtable"

    run this before your dataflow task

    I don't...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: converting update to table from access 07 to sql server 05

    can we see the new code ?

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: How do I append records to a table via SSIS?

    In Control Flow create an "Execute SQL Task" ...In the task editor set the SQL Statement to TRUNCATE TABLE "yourtable"

    run this before your dataflow task

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: ETL query running very slow

    SELECT col1, col2, col3, col4, col5

    FROM datatable AS tt

    ...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

Viewing 15 posts - 2,386 through 2,400 (of 2,452 total)