Forum Replies Created

Viewing 15 posts - 256 through 270 (of 2,462 total)

  • RE: which table sql server will create database after log shipping and in which system database it will create?

    http://technet.microsoft.com/en-us/library/ms175106.aspx

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Database sycronisation

    Ford Fairlane (9/12/2013)


    some of those users are going up to a mine site where the link is over satellite so latency is rather large

    Please elaborate.

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Searching a particular table in DB

    select * from information_schema.columns

    where column_name like '%col1%'

    OR column_name like '%col2%' OR column_name like '%col3%'

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: ALTER TABLE

    kapil_kk (9/16/2013)


    This time I used new column also in the SELECT statement but it gives an error that NULL values not allowed in that column instead I was not getting...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: t-sql full table scan problem

    wendy elizabeth (9/14/2013)


    Thus cany ou tell me what I can do to make this sql run faster?

    what made you to think that this query is behaving bad ?

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Issues with msdb.dbo.sp_send_dbmail procedure

    i will second Jeff here. Do the NULL handling in all the vairables (ISNULL(@variable, ''))

    Also Before sendin it to DBmail

    Print the Text for @Subj =...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Need conditional sequence number

    Thanks a ton for help ..to all guys here 🙂

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Need conditional sequence number

    Need help ..please .......

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Suggestions on TEMPDB Setup

    DBA_Learner (3/15/2013)


    I have a teradata environment with database aroudn 3TB. This server has around 40 core processors. Microsoft suggested to Use only 32 processors instead of 40 as there was...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Function in where clause

    Now people would be looking for exec plan here 😀 like me .

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: index re-build on trucated table

    rohit.anshu (3/21/2013)


    1. would a NC/C index slow down the truncation(not delete) of data from a huge table.

    No. Truncation command dosent touch the indexes.Thats the another reason why truncate is faster....

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Distributed Query

    Minnu (3/21/2013)


    Table_1: ID | CHARACTER

    1A

    2B

    3C

    4D

    5E

    Tabe_2 : ...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Database backup and restoration

    kk.86manu (3/21/2013)


    We currently have a backup and restore job which runs on a weekly basis and the database size is more than 10TB.Split backup method is followed for taking the...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Function in where clause

    Kwisatz78 (3/21/2013)


    My question is, in this case, would that be the best way to code this or would splitting the string first and placing it in a temp table before...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Get missing records

    declare @max-2 int , @cnt int

    declare @t table (id int ,Company varchar(50),Site nvarchar(20),TransDate Datetime)

    set @cnt =1

    --select * from #TransDetail

    select @max-2 = MAX(Number) from #TransDetail

    while ( @max-2 >...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

Viewing 15 posts - 256 through 270 (of 2,462 total)