Forum Replies Created

Viewing 15 posts - 766 through 780 (of 1,179 total)

  • RE: BATCH FILE CREATION

    Batch file is nothing but simply a Text file which contain bunch of data/records/commands. 🙂

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

  • RE: Sql Server 2005 Licensing question

    As far as I know price is same for 32 bit and 64 bit but better check with the vendor.

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

  • RE: how to Improve query performance?

    just try with b.id = a.id

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

  • RE: How many rows are returned from the query below?

    Author could have eliminate the answer option "Error Message" from Question.

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

  • RE: How many rows are returned from the query below?

    Question asked do not mention anything about table tblUsers

    When executed the query ;

    WITH Users(UserID, UserName) AS

    (

    SELECT TOP 1 intUserID, strUserName FROM tblUsers

    )

    SELECT TOP 2 tblUsers.*, Users.* FROM tblUsers, Users

    Reults...

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

  • RE: sql server performance if i have unused storedprocedures or objects.

    As suggested by Gila it would be gerat if you can shar the performance data.

    However SQL Server is running TB of data and billions of rows in a table without...

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

  • RE: Poor Performance Issues...

    SQL will run smoothly for 250 GB of data on 8 GB RAM depending your application and load.

    First of all let me tell you that it's not always correct that...

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

  • RE: Retrieve Partition info

    I am not sure what you actually looking for?

    following will give you the details of the created partition fucntions.

    SELECT * FROM sys.partition_functions

    HTH

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

  • RE: How to move datafiles and logfiles of system databases.

    Hello EdVassie,

    Thanks for sharing this in detail 🙂

    I was not sure about the master and done the location change for all systemdatabase. I was fortunate that nothing happen and everything...

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

  • RE: maximizing sql server memory usage

    SQL Server 2005 Standard & Enterprise Edition supports Operating system Maximum RAM.

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

  • RE: sql server performance if i have unused storedprocedures or objects.

    Except occupying a little disk space; which won't bother you 😉

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

  • RE: Running SQL Server 32-bit on 64 bit OS

    Provide more and specific detail like What OS version and edition you will be using and what SQL Server edition you are considering?

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

  • RE: Minimum rights for running a job.

    role SQLAgentUserRole will able to perform this considering he owns the job. Refer the following link for further detail.

    http://msdn.microsoft.com/en-us/library/ms188283(SQL.90).aspx

    HTH

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

  • RE: Switching recovery models

    For production environment it's not advisable to put change recovery model from Full to Simple to shrinkfile. If you do so you need to take Full backup ASAP.

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

  • RE: Switching recovery models

    I do not think for DB which is in Simple recoevery will help.

    But you can do the same for Full recovery DB if you wish but make sure you...

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

Viewing 15 posts - 766 through 780 (of 1,179 total)