Forum Replies Created

Viewing 15 posts - 121 through 135 (of 156 total)

  • RE: Policy-Based Management: Policy Creation

    same here...:-)

    CirquedeSQLeil (3/16/2010)


    I learned something today. I am still left wondering how to do it? The documentation is very light on the subject.

  • RE: Full backup Scenario

    Oleg Netchaev (3/16/2010)


    sjimmo (3/16/2010)


    Hugo, after getting the questin wrong;-) and re-reading a few times in disbelief I found on <http://msdn.microsoft.com/en-us/library/ms175477.aspx&gt; - Each data backup includes part of the...

  • RE: Full backup Scenario

    probably some kind of rollback should have been in place.. 🙂

    CirquedeSQLeil (3/16/2010)


    Great question. Would have been better if I had not missed my click.:-D

  • RE: Sparse Columns

    sorry for sounding stupid, but has anybody implemented sparse in his/her code ?

    what was the reasoning behind.. is it really worth ?

  • RE: Data flow source

    thanks..:-)

  • RE: How many rows are returned from the query below?

    if the query contains a top 3

    SELECT top 3 c.*, Users.* FROM reptec_changedim c, Users

    then this will return 3 records...

  • RE: How many rows are returned from the query below?

    i fail to understand what is the learning in this question. anybody plz. suggest...

  • RE: Counting spaces with datalength

    thanks for the question.... was really not aware of datalength function..

  • RE: Optimization

    thanks for the question :). learned something new today

  • RE: Timing is Everything

    UTC is the best option, we have people accessing our application from all time-zones. all updates are done in utc format.

    the only thing people in different time zones need to...

  • RE: indexes on staging tables

    apologies... i should have included table structure and some sample data...

    declare @wareshousetable table

    (

    col1 [varchar](64) NULL,

    datesection [char](16) NULL,

    totalvalue [numeric](10, 0) NULL,

    usedvalue [numeric](10, 0) NULL,

    smalldatesection char(7) NULL

    )

    insert into @wareshousetable (col1,datesection,totalvalue,usedvalue)

    select 'server1','220003722000',100,25...

  • RE: Numeric or Not Numeric

    That is, isnumeric doesn't guarantee that the conversion will work, just that its likely to

    Float is not the only numeric data type 🙂 The conversion to money works fine.

    conversion to...

  • RE: indexes on staging tables

    thanks...

    i just checked it out.. without indexes, update query takes 30 sec.

    with the indexes in places, it takes 2 min !

    RBarryYoung (2/17/2010)


    I think that it depends on a number of...

  • RE: FOR XML PATH

    thanks for the question.. good one! 🙂

  • RE: Concatenation Cursor

    thanks, a very good question ! got to learn something new today.:-)

Viewing 15 posts - 121 through 135 (of 156 total)