Forum Replies Created

Viewing 15 posts - 2,161 through 2,175 (of 3,221 total)

  • RE: Declarative Data Integrity

    Hugo Kornelis and Kelsey Thornton

    It is my turn to apologize .... I thank both of you for your constructive comments .... (none were harsh)

    I too learned something from the...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Declarative Data Integrity

    Hugo Kornelis

    Not a good explanation, though

    Ditto for Kelsey Thornton

    Did you click on the supporting documentation link to read the full explanation?

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Declarative Data Integrity

    Mauve

    BTW, the code will only run under SQL Server 2008, which wasn't stated. And it will successfully execute.

    The question is not wether the CREATE TABLE and INSERT INTO statements...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Declarative Data Integrity

    From Steve Jones blog post on the Question of the Day

    https://www.google.com/reader/view/?tab=my#stream/feed%2Fhttp%3A%2F%2Ffeeds.feedburner.com%2FSqlMusings

    A few notes on submitting a question:

    Don’t get too cute, keep your code and the question simple.

    Specify the version if...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: server 2005 express - can't find solution explorer

    Thank you Mark

    If you have any further SQL questions come back and post them to the appropriate forum. Many people who are regulars on SSC go out of their...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Are you looking to Hadoop?

    This links to a podcast by Steve .. NOT a printed editorial

    Never the less very, very interesting

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: server 2005 express - can't find solution explorer

    cranmer.mark

    When I go to File menu, and point to New, the only options I have are:

    That instruction pertains to SSMS for versions higher than the Express edition. You have...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Sample Databases

    Read this

    http://blogs.msdn.com/bonniefe/archive/2008/08/07/sql-server-2008-samples-are-here.aspx

    From there

    navigate to http://www.codeplex.com/MSFTDBProdSamples/Release/ProjectReleases.aspx) to download the sample databases and sample database scripts. We have a lot of sample database installers and now zip files for those...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Contracting: REFUND FOR REWORK?

    In my past ... I have always informed the customer that prior to beginning work and after discussion with them (at no charge) I will draw up a formal software...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Database Research

    find if there are any exact duplicate records in that table.

    Here is a CTE to find duplicate records within a single table

    ;with numbered as(SELECT rowno=row_number() over

    (partition by...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: How to display duplicate (the tricky is need to check two sets of data as multi cols)

    Since you have two different criteria for deleting may I suggest first deleting using the Pin values for which you could use a CTE such as:

    ;with numbered as(SELECT rowno=row_number() over

    ...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Selecting max(column_name) from table passed as a parameter

    bercea.nick

    Apologies for the lack of clarity - you know, so close to the forest that ya can't see the trees

    No need for apologies, if you need assistance, help those who...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Need to query row counts for only some tables

    Try this

    -- Shows all user tables and row counts for the current database --

    --===Remove OBJECTPROPERTY function call to include system objects

    SELECT o.NAME, i.rowcnt FROM sysindexes AS i

    ...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Selecting max(column_name) from table passed as a parameter

    First what is your question?

    If it is what I think it is (hmmm) look at Books On Line for the following

    SQL Server 2005 Books Online (September 2007)

    sys.all_columns (Transact-SQL)...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: User Table size and limitations

    Look in Books On Line

    SQL Server 2005 Books Online (September 2007)

    CREATE TABLE (Transact-SQL)

    SQL Server 2005 can have up to two billion tables per database and...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

Viewing 15 posts - 2,161 through 2,175 (of 3,221 total)