Forum Replies Created

Viewing 15 posts - 46 through 60 (of 497 total)

  • RE: Missing Century in Date

    You can configure your two digit year cutoff so that it displays the correct century. http://msdn.microsoft.com/en-us/library/ms191004.aspx



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Faster disk for mdf or ldf?

    It depends on the read/write ratio of your database. If you are mainly a read-only database (80% reads or more) then I would suggest your mdf file be moved over...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: dynamic script for reindexing fragmented indexes

    Ola Hallengren has already done the work for you. Check out his scripts[/url] for performing index maintenance and also backups and restores. These scripts are highly regarded in the SQL...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Help Re-Generating MS Agent Jobs from dead Server

    Don't make this harder then it needs to be. Either script out the "must have" jobs and then restore MSDB and reapply the jobs from the script or restore MSDB...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Report

    shiv-356842 (7/30/2014)


    Hi Team,

    For pre-paring report I need this format report on instance.

    Database Name Database User Name Database User Permission

    Request to you please give any ideas on...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Help Re-Generating MS Agent Jobs from dead Server

    Do you have a backup for the entire MSDB? If so, you can simply restore that over the new MSDB database.



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Instance: table column with default value

    ScottPletcher (7/30/2014)


    Sean Lange (7/30/2014)


    ScottPletcher (7/30/2014)


    Keith Tate (7/30/2014)

    What can happen if null is not defined?

    If you don't set the NULL option then it will be nullable.

    create table Test1 (

    ExpirationDate datetime);

    go

    That's not...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Instance: table column with default value

    You can create User Defined Data Types that had the necessary Null values you want defaulted for that data type, but you would have to use that data type when...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: One to many problem

    SELECT DISTINCT C1.IDX

    , C2.C2FirstName

    , C1.C1FirstName

    , CASE WHEN CHARINDEX(' ',C2.C2FirstName) > 0 THEN PARSENAME(REPLACE(C2.C2FirstName, ' ', '.'),...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Instance: table column with default value

    Is required to set the null value after the field type?

    It is not required.

    What can happen if null is not defined?

    If you don't set the NULL option then...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Where Clause error?

    You have posted 4 or 5 different times about this query. If you want it to work correctly please give us the all the create table statements (for all tables...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Retrieving Specific Table Help.

    Please don't post the same question in multiple forums. Here is a link to the original http://www.sqlservercentral.com/Forums/Topic1586485-391-2.aspx#bm1586578



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Adding Another Table.

    Please, Please, Please add the code to create the tables and some sample data along with the desired output. We are wasting time trying to guess what you want and...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Adding Another Table.

    I'm not sure what the question is. It seems like you have added the table are you not getting the results that you expect? If not, what are you getting...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Need help to understand these wait-types

    Click on the word blog it is a link



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

Viewing 15 posts - 46 through 60 (of 497 total)