Forum Replies Created

Viewing 15 posts - 226 through 240 (of 405 total)

  • RE: Char And int

    As jan van asked why are you using nvarchar

    You must have noticed that in your result some numbers are missing . This is actually charactor comparison.

    If you want the correct...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Repairing a Broken Log Shipping Plan From a Differential Backup

    Great article. Very useful for DBA in production environment.

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Is it time to move from SQL Azure to Amazon RDS SQL Server?

    Thank you for the wonderful article.

    Looking forward to hear more on performance

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Add new user in SQL server 2000/2005 through script

    Conceptually both are same.

    Login lets you connects to the server

    and User has the permissions inside the database.

    Only difference is in 2000 the user and schema are clubbed.

    In 2005 they are...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Help required on using XACT_STATE() function

    Thanx Sturner

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: blocking

    Pls use add topic link below

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: How can I export all table names plus column names from sql?

    SELECT o.Name as TableName,

    i.rowcnt Row_count,

    c.Name as ColumnName,

    t.name as DataType,

    t.length as [DataLength],

    c.collation

    FROM sysobjects o

    JOIN syscolumns c

    ON o.id = c.id

    JOIN systypes t

    ON c.xtype = t.xtype

    JOIN Sysindexes i

    ON o.id=i.id

    WHERE o.xtype = 'u'

    and i.indid...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: How can I export all table names plus column names from sql?

    You can add a join to sysindexes and filter for clustered index or heap (indid in (0,1)

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Log shipping

    You can check the restorehistory in msdb database to conform the restore. View logs for the jobs

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Log shipping

    Hi,

    How did you set up the log shipping , manually or wizard. Was the log applied on the secondary? what frequency is configured for the log to ship.

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: How many of you are not true DBA's?

    Graphic designer->Video editor-> then website developer->

    .net developer

    (all the above without much luck)

    Finally SQL DBA for past 4 years. Happy everafter

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: My Cluster has removed the sql service pack!

    It is possible for different nodes be patched differently.

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Allocating huge space during restore.

    Just see why you have that much unallocated space in files. Normally this much free space comes after some cleanups only (if it is data file). If it is not...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Services

    No

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Services

    You can use xp_cmdshell.

    xp_cmdshell 'sc qc mssqlserver'

    Note: xp_cmdshell makes your server vurnerable to threats. Disable it once you are done

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

Viewing 15 posts - 226 through 240 (of 405 total)