Forum Replies Created

Viewing 15 posts - 136 through 150 (of 1,179 total)

  • RE: Fastest way to convert strings 'TRUE' and 'FALSE' to bit-values 1 and

    SQLRNNR (6/4/2014)


    EZ PZ lemon SQEEZEE

    +1

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: SQL LOG SIZE FULL ISSUE

    what is .mpmp format?

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: Page Verify Setting

    It would be advisable to create the code and than execute it so that you can have more control. If you directly performing chang in your code it happens in...

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: Querying the transaction log

    If you feel that Transaction log is filling quickly and would like to find out the issue...

    1. You can start SQL Server trace for the specific database to find...

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: How to make tempdb as secondary file

    By executing following command:

    ALTER DATABASE [tempdb] ADD FILE ( NAME = N'tempdb1', SIZE = 5120000KB, FILEGROWTH = 1024000KB, FILENAME = '<path>\tempdb1.ndf' )

    GO

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: How to make tempdb as secondary file

    Yes, you can add secondary file(.ndf) to tempdb.

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: Files for memory-optimized tables

    Easy one, thanks Steve.

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: Access Granted or Not?

    robertjtjones (6/3/2014)


    Cheers Andy - had to start off with all of them and eliminate one by one this time 🙂

    +1

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: What are the alternatives to transactions?

    You can have trusted domain. If not possible you can BCP/SSIS to CSV file, transfer file to destination location and do BCP/SSIS in.

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: Page Verify Setting

    Execute following command to find the status:

    select name, page_verify_option_desc from sys.databases

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: Huge TempDb file on a Development server

    There is nothing to do with database restore and Tempdb growth. Tempdb is used for the different purpose; check BOL.

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: Cardinality Regression

    Thank you, Steve. Easy One.

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: Keyboard key to Toggle between query and results pane

    Good One!

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: need to merge two tables

    How about creating VIEW? will it work?

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: stored procedure that inserts and updates a table with excel data

    Refer following link for the query:

    http://stackoverflow.com/questions/20085249/import-excel-spreadsheet-data-to-an-existing-sql-table

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

Viewing 15 posts - 136 through 150 (of 1,179 total)