Forum Replies Created

Viewing 15 posts - 616 through 630 (of 3,221 total)

  • RE: Model Database

    Seems like a lot of people are learning something new.

    Correct answers: 30% (98)

    Incorrect answers: 70% (234)

    Total attempts: 332

    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: Model Database

    If only every one would read the question carefully it states

    In SQL Server 2008 R2, can I set the model database to read only? Will new databases created default 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: Model Database

    A good question

    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: Running DTA for Index recommendations

    Try reading this to see if helps.

    http://msdn.microsoft.com/en-us/library/ms345524(v=sql.100).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: table variable/temp table

    Here is another link to read before you decide

    http://blogs.msdn.com/b/sqlcat/archive/2008/10/09/table-variable-vs-temp-table-and-estimated-vs-actual-query-plan.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: Finding TableNames and Column Names in storedProcedure.

    GilaMonster (2/21/2012)


    syscomments is deprecated, should not be used, only for backward compat with SQL 2000, use sys.sql_modules instead.

    Gail thanks for pointing that out.

    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: Finding TableNames and Column Names in storedProcedure.

    You could also use

    SELECT text FROM sys.syscomments WHERE Text LIKE ('%dbo.sp_upgraddiagrams%')

    Where '%dbo.sp_upgraddiagrams%' is your stored procedures name it return the text of the stored procedure which you can then examine.

    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 what type of backup a backup files has in it

    Try reading this:

    http://www.mssqltips.com/sqlservertip/1150/what-is-in-your-sql-server-backup-files/

    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: dynmic temp table help

    First of all

    CREATE TABLE #cmd_holiday (@col float ) --> i want like this dynamic (January float ,February Float)

    -- should be

    --CREATE TABLE #cmd_holiday (col float )

    Second we have no idea...

    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: Bulk Insert and row terminators

    If you can read in a large enough sample of text you might use the following to determine how a line is terminated.

    DECLARE @NewLineChar AS CHAR(2)

    SET @NewLineChar = CHAR(13) +...

    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: Opinions On Setting Up Multiple User Schemas

    If I understand you correctly, that is take separate DBs supporting different customers. Combine those into one DB, using SCHEMAs to keep each individual customer's data separate. Let...

    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 query count function

    David Stokes (2/20/2012)


    Hey Linking90,

    You may also want to consider a design change to your table. You should change the 3 columns other than User_ID to the bit data type...

    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: Hash Join

    EL Jerry (2/20/2012)


    Hi!!! After thorough reading and searching I found and selected the right answers based on the same referenced article, just to find out they were wrong?

    Looks 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: Hash Join

    Hmm from the cited support link

    Hash recursion and hash bailout cause reduced performance in your server. To eliminate or reduce the frequency of hash recursion and bailouts, do one...

    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?

    Steve Jones - SSC Editor (2/19/2012)


    I think we have some of the changes surfacing in the Recent Activity. We do create threads, and have wanted discussions for scripts, so this...

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