Forum Replies Created

Viewing 15 posts - 91 through 105 (of 222 total)

  • RE: Migration issue, need alternatives

    Hi Jorge

    Can you please clarify, the updates you are trying to do for comments is on which table? Is it the same comments table or you are updating the new...

  • RE: Delete a mdf and ldf files using T-SQL

    Hi Jaya

    If your requirement is only to create the database, then why don't you use the approach

    check if database exists then restore the database with replace. If you want...

  • RE: Can we merge two column?

    in a rush but will give a sample code and you can work around it based on your requirement.

    DECLARE @colList varchar(8000)

    SELECT @colList = COALESCE(@colList + ', ', '') + tblcol

    FROM...

  • RE: Add virtual hard disk to SQL cluster

    Hi Linda

    Are your database backups on the server as well?

    no database backups are not on the same server.

    Can you add an external array?

    i am in a virtual...

  • RE: Sql Date time conversion

    zubairm76 (2/3/2009)


    Almost works.

    When I convert using VarChar:

    select CONVERT (varchar(11) ,WbsStartDate,126) from wbsdata

    the result is May 25 2006 which is almost ok.

    I need the format to be 2006 May 25....

  • RE: Make a primary key column as identity?

    as mentioned previously, you can add identity column and still use the exisiting primary key.

    If you really want to add identity column to use as primary key, add it...

  • RE: Celebration

    Brad M. McGehee (1/29/2009)


    Can any of you math majors calculate what the number of members SSC could potentially have if the site continues to grow at the current rate for...

  • RE: Unused Logins

    Your plan sounds fine but as Adonia said in previous post, disable the user rather than deleting. In future, if you'll face any problem in any sql server object referencing...

  • RE: Log shipping 2005 issues

    My questions are:

    Since this is 2005 shouldn't the transaction log backups start to fail (which is not the case) on the primary side if the next transaction log...

  • RE: Timesheets for DBA/DBDs

    Its entirely different here in Australia as to US. Contractors are the first to be axed. Group of big IT companies haven't renewed contracts of more than 1000 employees giving...

  • RE: Phone Numbers Table Design

    Krishna_DBA (1/17/2009)


    CREATE TABLE ContactPhone

    (

    --Numbers for NANPA--

    AreaCode_NPA nvarchar(10),--Area code for NANPA

    Exchange_NXX nvarchar(10),--Exchange code for NANPA

    Number_XXXXnvarchar(10),--Last 4 digits...

  • RE: Phone Numbers Table Design

    Krishna

    I would say, try to generalise your table strucutre as much you can. i know its not possible to standardise the phone number formats from all the countries, but atleast...

  • RE: More Tips for New (and old) DBAs

    interesting article with bonus of knowledgable discussion. keep it up mates.

  • RE: tables data changes question

    what do you mean by table change - is it data in tables or table structure?

  • RE: Confusion with int

    Thanks Lynn.

    I think i need another coffee to get me working. i could have figured this out earlier before posting it here.

    Cheers

Viewing 15 posts - 91 through 105 (of 222 total)