Forum Replies Created

Viewing 15 posts - 3,391 through 3,405 (of 6,679 total)

  • RE: Suggestions to tune this query?

    I took a quick look at this and see several problems. However, I think the biggest problem you have is the EAV model you are working with for the...

  • RE: How to delete backups after the job rans

    SKYBVI (2/9/2011)


    Is BIDS installed on that server.??

    SSIS is a must for maintenance plans.

    Regards,

    Sushant

    No - it is not a requirement. It is a requirement for specific versions (e.g. SQL Server...

  • RE: Schemas

    Sorry - is there a question here?

  • RE: Upgrading sql server with named instance.

    The only way I know of doing this is to create a client alias on every machine that will be connecting to that instance of SQL Server.

    If this is a...

  • RE: ensuring maintenance gets done on a 24/7 database

    I know of several organizations that schedule maintenance quarterly, or yearly, or somewhere in between. Part of that scheduled maintenance would be index rebuilds, etc...

    Honestly, if this was my...

  • RE: How to delete backups after the job rans

    You need to verify the version of your client tools, and the version you are running on the server. Both need to be at least 9.00.3054 or greater (SP2...

  • RE: Increase MDF file size of 2GB

    You posted this in the SQL Server 2005 forum, so I am going to assume you are running SQL Server 2005 Express Edition.

    Please verify the edition of SQL Server you...

  • RE: Maintenance plan Issue sql 2005

    You are running the RTM version - which had several issues with maintenance plans that have been fixed in later service packs.

    Additionally, in this version you are required to have...

  • RE: DB mirroring /Reporting Environment

    This solution will definitely work for reporting - however, you need to make sure you are running Enterprise Edition since snapshots are not possible in Standard.

    Also, if you plan on...

  • RE: telnet

    You cannot run an interactive command using xp_cmdshell. An interactive command requires someone to have access to the machine where the command is being run to interact with command...

  • RE: SQL Server 2K5 db_datareader rights

    If you want to grant execute to all stored procedures in a particular schema, you can do the following:

    GRANT EXECUTE ON SCHEMA::{schema} TO {user/role};

    Advantage to this is new procedures created...

  • RE: Migrate cluster to new SAN

    Chrissy321 (2/3/2011)


    The original drives were overprovisioned. The SAN tools can migrate the LUNS but they would remain the same size. We want the new drives to be smaller. Now I...

  • RE: Reorgonizing indexes on production server/Maintance plan

    Krasavita (2/3/2011)


    I was told to check and to set up on production server a maintance plan and the only thing this server has reorginize index on tabeles and views on...

  • RE: ndf vs ldf

    You can rename the file using ALTER DATABASE ... MODIFY FILE (...). Lookup the exact syntax in Books Online.

    Once you have done that, then you take the database offline,...

  • RE: Database shrinking

    If you need more disk space, then you need to get more disk space. Shrinking databases to try and manage this is just asking for more troubles.

    What happens when...

Viewing 15 posts - 3,391 through 3,405 (of 6,679 total)