Forum Replies Created

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

  • 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...

  • RE: Replication latency Need Suggetions

    What are the suggetions for reducing the latency and bring both subscribers with in 1 or 2 hours latency

    One of the suggestions is, defragment the indexes in publisher as well...

  • RE: SQL Server 2000 to 2005 migration problem.

    Is their any difference in access from Dot Net code in 2000 and 2005???

    No. There is no differece in access from .NET code for 2000 and 2005.

    However, there are...

  • RE: error in copying initialization file

    im using an sql accoun "sa"quote]

    1) Share the folder to which backups are copied.

    2) SQL Server Agent service account should be a domain account, not local account.

    3) Grant...

  • RE: Create SQL SERVER Jobs

    Create a Windows scheduled task.

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