Forum Replies Created

Viewing 15 posts - 9,751 through 9,765 (of 15,374 total)

  • RE: SQL Question

    edward_hall76 (12/26/2012)


    I want to set up a web server so I can use Dreamweaver to create aspx.net pages to connect to my Sql 2008 Server on an xp machine

    OK so...

  • RE: Needing help capturing mon th end and transactions posted > month - 90

    That looks like Oracle not SQL Server. SQL Server doesn't have a TO_CHAR function. 😛

    I am willing to help you but you have to provide enough details for me to...

  • RE: Table documentation advice

    Thanks for sharing Scott. That gives me an idea of what you are doing here. Never really thought of using the extended properties like that. Gives me some cool ideas...

  • RE: Today's Random Word!

    SQLRNNR (12/26/2012)


    Daniel Bowlin (12/24/2012)


    wrapping

    unwrapping

    cleanup

  • RE: Needing help capturing mon th end and transactions posted > month - 90

    headmanracer (12/26/2012)


    I need some help with SQL to capture transactions posted 90 days prior to month end for the last 12 months. I have a table named TRANSACTIONS and...

  • RE: Need Suggestions on creating new table

    Well unless you can share a LOT more details there is not much I can offer. This sounds like a challenging situation.

  • RE: Table documentation advice

    ScottPletcher (12/26/2012)


    Sean Lange (12/26/2012)


    ScottPletcher (12/26/2012)


    Sean Lange (12/26/2012)


    SQL_Kills (12/26/2012)


    Hi,

    First of all I hope everyone has had a good Christmas!

    Just wanted to know if anyone documents there table using MS_Description? I'm...

  • RE: Stored Procedure looses execution plan.

    WangcChiKaBastar (12/26/2012)


    I have a stored procedure and when I run it First time it creates an execution plan and it takes long time to complete which is understandable after the...

  • RE: Distinct Data but order by on Priority Column Which is not present in select result.

    This seems to be a representation of what you are looking for.

    create table #Client

    (

    ClientID int identity,

    Name char(2)

    )

    insert #Client

    select 'C1' union all

    select 'C2' union all

    select 'C3'

    create table #Orders

    (

    OrderID int identity,

    ClientID int,

    OrderName...

  • RE: Table documentation advice

    ScottPletcher (12/26/2012)


    Sean Lange (12/26/2012)


    SQL_Kills (12/26/2012)


    Hi,

    First of all I hope everyone has had a good Christmas!

    Just wanted to know if anyone documents there table using MS_Description? I'm struggling to think...

  • RE: Query Help

    You are right Adi. I was the one missing something. :blush:

  • RE: Data Page Allocations

    Hugo Kornelis (12/26/2012)


    Basics? That's not how I would describe it! :w00t:

    Thanks for a good question, Sean. I think I once read or heard that after deleting all rows from a...

  • RE: Data Page Allocations

    Great question. A bit hard to read through the formatting but is not the author's fault.

  • RE: Query Help

    Adi Cohn-120898 (12/26/2012)


    Makes perfect sense. I was missing something:-)

    Adi

    edited: Sorry, just had a look at it. It does seems to work. According to the where clause one...

  • RE: Data type precedency ntext and hierarchyid

    Golfer22 (12/25/2012)


    Tinyint and bit have a higher precedence than ntext. Why is this? Couldn't ntext we complex alphanumeric values? Tinyint and bit are limited and simple.

    What precedence...

Viewing 15 posts - 9,751 through 9,765 (of 15,374 total)