Forum Replies Created

Viewing 15 posts - 2,131 through 2,145 (of 3,008 total)

  • RE: Loop Date Range

    Did you have a question that you wanted to ask?

  • RE: SQL Server Haikus

    I think there should be a separate SQL Haiku forum where both questions and answers must be posted in the form of a Haiku.

  • RE: Multi-column primary keys

    If you want help, you should post your sql in the message in between code tags.

    Most people (including me) will not open a file posted on the forum because it...

  • RE: streamlining sql for a defined week columns

    The code you posted isn't even in valid SQL syntax.

    Please supply your actual query code, table definitions, sample data, and your expected output with the sample data.

  • RE: Useful Dates: The Many Uses of Date Tables

    Here is another approach on the link below. Function F_TABLE_DATE is a multistatement table-valued function that returns a table containing a variety of attributes of all dates from @FIRST_DATE...

  • RE: TRIGGER ON MULTIPLE RECORDS

    You will have to open a cursor on the inserted table and execute the procedure once for each row returned by the cursor.

    This looks like something that would be better...

  • RE: User Defined Function: order by won't work

    Add an ORDER BY clause to the SELECT statement that is calling the function.

  • RE: Order by numbers in proper sequence

    declare @t table (pk int not null primary key identity, dat varchar(10))

    insert into @t (dat)

    select '1' union all select '001' union all select '11' union all

    select '100' union all...

  • RE: how to devied fullname into firstname and lastname

    This is not an easy problem to generalize.

    Take this name for example: “Carl von Clausewitz”. Unless the procedure knows the conventions, how does it identify that the last name...

  • RE: Outsourcing is the best idea ???

    I’m going to make the assumption that what you mean by “Outsourcing” is Offshore Outsourcing.

    A lot of senior management types see IT as a necessary evil at best, and really...

  • RE: High Performance System Active/Active Clustering

    shane.barney (12/1/2008)

    ...The database is large (over 800mb, not including indexes, and growing by ~10mb per day)....

    800 MB is a very small database. Did you actually mean 800 GB? ...

  • RE: Primary key - Integer? or Varchar?

    gan (11/27/2008)


    Michael Valentine Jones (11/25/2008)


    Lynn Pettis (11/25/2008)

    ...Besides, this discussion has remained relatively positive (so far)...

    In that case, let me jump in. 😀

    There are many opinions of this subject, but I...

  • RE: How to Execute T-SQL Upon Server Shutdown

    You cannot force SQL to execute on shutdown, especially if someone uses SHUTDOWN WITH NOWAIT to force an instant shutdown.

  • RE: Primary key - Integer? or Varchar?

    Lynn Pettis (11/25/2008)

    ...Besides, this discussion has remained relatively positive (so far)...

    In that case, let me jump in. 😀

    There are many opinions of this subject, but I am firmly in the...

  • RE: Function that finds Sundays

    Michael Valentine Jones (11/21/2008)


    marty.seed (11/21/2008)


    Sorry, good question. The next Sunday

    So if I was to pass in todays date I would get 11/23/08

    What do you want it to return if today...

Viewing 15 posts - 2,131 through 2,145 (of 3,008 total)