Forum Replies Created

Viewing 15 posts - 436 through 450 (of 3,221 total)

  • RE: Resource Database

    Cliff Jones (5/31/2012)


    EL Jerry (5/31/2012)


    Thank you for the question, Ron.

    I also got the right answers by elimination of the first 2 false statements.

    "El" Jerry.

    +1 but like Tom I was wondering...

    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: Transactions 3

    L' Eomot Inversé (5/30/2012)


    Until I saw the counts of answers so far I thought that maybe this repetition with tiny variations (this is the third version of this question in...

    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: Upgrading Sql From 2005 To 2008

    Like all SQL questions the answer is "It depends". I suggest you do a Google search on "sql server upgrade advisor". Download the available software, run it .......

    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: The SSIS service in 2012

    Good question, help me re-affirm something I thought I knew and as it turned out I did know it.....

    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: Assign ungrouped terms to "Other" either in query or related table?

    Without table definition(s), some sample data and the desired results when using the sample data, providing you with a tested answer is next to impossible.

    Please, please post your table definition(s),...

    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: SQL DDL trigger

    Here is some info with examples (sample code) of what I think you want to accomplish.

    http://beyondrelational.com/modules/2/blogs/43/posts/10196/who-created-a-table-ddl-triggers-in-sql-server-2008.aspx

    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: SSIS 2012 - Create Catalog

    Thanks for a GREAT question .. glad I answered it after my 2nd cup of coffee .....

    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 update just the year in date fields (non datetime data type)

    Now I did a little testing with the BIGINT value to deteremine the maximum BIGINT value that could be converted to DATETIME as follows:

    DECLARE @b-2 BIGINT

    SET @b-2 = 2958457 ...

    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 update just the year in date fields (non datetime data type)

    Had to reduce the value of you BIGINT (other wise - overflow error)

    but here goes

    DECLARE @B BIGINT

    SET @B = 922337

    SELECT convert(VARCHAR(20),CAST(@B AS DATETIME),101)

    Result: 04/10/4425

    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 update just the year in date fields (non datetime data type)

    Here is a few to get you started.

    DECLARE @d1 VARCHAR(20)

    DECLARE @d2 NVARCHAR(20)

    DECLARE @d3 VARCHAR(20)

    DECLARE @d4 NVARCHAR(20)

    DECLARE @d5 VARCHAR(20)

    SET @d1 = '2004-06-23'

    SET @d2 = '2004-06-23'

    SET @d3 = '06/14/2011'

    SET @d4 = '06/14/2011'

    SET...

    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 the posted questions getting worse?

    Yup time to party .. just got email notification that my seventy-first (71st) accepted QOD is scheduled for mid June (of this year).

    SO PARTY TIME ! ! !

    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: Foreign key

    Hugo Kornelis (5/18/2012)


    bitbucket-25253 (5/17/2012)


    Well my answer was declared to be incorrect, so went to read the explanation, following the link given ..... nada / nothing / not a word to...

    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: Foreign key

    Well my answer was declared to be incorrect, so went to read the explanation, following the link given ..... nada / nothing / not a word to support what is...

    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: Find obsolete User Defined Functions SQL2008R2

    Use the Depreciated Feature Object in sQL 2008R2

    Here is a link to describe its use and limitations

    http://technet.microsoft.com/en-us/library/bb510662(v=sql.105).aspx

    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: Replacing DB name reference in objects (views, SPs, UDFs)

    bitbucket-25253 (5/16/2012)


    You might use this to find the words to replace.

    CREATE PROCEDURE [dbo].[FindWordsInaSP_5K]

    @Watchword varchar(50)

    AS

    SELECT distinct

    'type' = case type

    when 'FN' then 'Scalar function'...

    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 - 436 through 450 (of 3,221 total)