Forum Replies Created

Viewing 15 posts - 871 through 885 (of 1,069 total)

  • RE: Index Fragmentation

    Is it nonclustered index on a heap (= table without a clustered index)?

    Is it a very small table, with only few pages?

    What is the fillfactor?

  • RE: instsalling SQL Server 2005 named instance

    shailesh (12/19/2008)


    when I am trying to connect locally it is connecting to SQL server 2000.

    So i can't enjoy sql 2005 features.

    Shailesh,

    You don't have to uninstall or install anything....

  • RE: Property Owner is not available for Database

    Set the database owner using sp_changedbowner

    For example:

    use DatabaseName

    go

    sp_changedbowner 'sa'

    go

    After that you will be able to access the database properties.

  • RE: SQLServer2005-KB953752-x86-ENU.exe

    i get the following error : "The following unexpected error occurred: "

    Could you post the complete message?

    Also check ...\Setup bootstrap\LOG\Summary.txt

  • RE: SQL Server 2008 Express

    It is recommended NOT to install SQL Server on a Domain Controller for security and performance reasons.

  • RE: Index

    So what is the approach for creating covering index.

    A simple example:

    SELECT Column1 FROM Table1 WHERE Colmn2 = @Value

    CREATE NONCLUSTERED INDEX ixTable1

    ON Table1 (Column2)

    INCLUDE (Column1)

  • RE: Delete record

    DELETE FROM Country

    WHERE Id NOT IN (SELECT ID FROM Table1)

    AND CountryName NOT IN (SELECT CountyName FROM Table2)

    AND ....Table5)

  • RE: Sql query to retrive duplicate values

    Require a sql query that will retrieve duplicate values that are present in database columns

    Try somethinig like this:

    SELECT EmpName, count(EmpName)

    FROM tblEmp

    GROUP BY EmpName

    HAVING count(EmpName) >= 2

  • RE: how to select getdate() into a string variable in YYYY-MM-dd format

    i want to assign that string variable with the Current date in the formate "yyyy-MM-dd" within Execute Sql Task by using Sql statement..

    Try something like this:

    declare @vstrDate as char(10)

    select @vstrDate...

  • RE: How to get a list of database objects changed between specific time sql server

    select * from sys.objects

    where type = 'U' or type = 'P'

    and modify_date between '2008-12-01' and '2008-12-11'

  • RE: Starting up database

    I have an error in the log file saying starting up database which is occuring every 1 minute.

    Set the AutoClose property to False.

  • RE: Installing SP2 for SQL server 2005

    We'll be downloading and testing SP2 on test machine before trying it on PROD server.

    I am not a DBA and dont know much about what issues we could face...

  • RE: Formatting SP Emails

    How can format the email to be more appealing? currently it is just standard text.

    i.e. How could I add:

    - font to selected sections?

    - Maybe images (A banner at the...

  • RE: How to Know when datafiles are last modified

    who increased the size of the file and how much he increase and when it happened. ... I suspect that some one has increase 1024BM on one of the database

    It...

  • RE: URGENT: Losing the users in a database

    This cause a major problem since the rights assigned to the user are lost. How I can find how & where the user are re-created?

    select * from master..syslogins

    Run the...

Viewing 15 posts - 871 through 885 (of 1,069 total)