Forum Replies Created

Viewing 14 posts - 4,801 through 4,814 (of 4,814 total)

  • RE: How to identify the missing id's in a table..

    Take a look at the following code that can demonstrate a technique that uses an auxiliary table of numbers:

    -- START WITH A TABLE OF THE NUMBERS FROM 1 to 200

    SET...

  • RE: Product Product Options

    I'm glad you were able to figure it out. I was having trouble understanding why you needed a not equal relationship, as I would have thought that any...

  • RE: Add Parameter to enable user to input value GETDATE + 'Parameter' value

    Leave the parameter as an integer, and change the query to check for:

    QExpiry.FieldName <= DATEADD(d, @DateOffset, GETDATE())

    You should be able to have this work in both locations.

    Steve

    (aka smunson)

    :):):)

  • RE: FREETEXTTABLE multiple words query

    Here's the help on the "freetext string" that goes into the FREETEXT function, which explains about quoted strings:

    freetext_string

    Is text to search for in the column_name. Any text, including words,...

  • RE: Product Product Options

    I need to know more about how you plan to keep track of what options have been selected. Are you updating any permnanent table with this information? ...

  • RE: SSIS SCD converting data on the insert

    I saw similar things happen with Excel imports in SQL Server 2000, where if the data in the first several rows LOOKED like a particular data type, a row far...

  • RE: Called Microsoft

    Hmmm... it appears I'm way behind on information on memory capacity and the ability to get past the 4 GB addressing limit of 32 bits. Can anyone...

  • RE: BCP a table to a new temp table

    I'm not familiar with the term BCP, but given that temporary tables are generally attached to the session that creates them, I'm thinking we need to know more about why...

  • RE: Shifting columns

    Yes, Jeff... you're quite right. Being a newbie to both SQL Server 2005 (although an oldie to SQL Server 2000) as well as this forum, my excitement...

  • RE: Called Microsoft

    Umm... I may not be recalling this correctly, but I haven't seen anyone ask what Server OpSys is in use, and I did see the indication that SQL Server is...

  • RE: Data Conversion from Front End

    My thought process says when there's no map, make one. Since you appear to be looking at dealing with the Front End, is there any chance you can...

  • RE: Shifting columns

    There is a way to do this without sorting. I decided to try using REPLACE and ISNULL and an intermediate CTE, with a source table that has all...

  • RE: Combining multiple lines from one table into one row of a view

    If it helps any, the PIVOT operator uses an aggregate function to consolidate information from a given column, based on possible values of a 2nd column. For character data,...

  • RE: Combining multiple lines from one table into one row of a view

    Have you considered the PIVOT operator? SQL 2005 provides this rather convenient method to convert rows to columns (and UNPIVOT to do the reverse). As an...

Viewing 14 posts - 4,801 through 4,814 (of 4,814 total)