Forum Replies Created

Viewing 15 posts - 52,201 through 52,215 (of 59,070 total)

  • RE: Query improvement

    "and, sorry, I almost forgot... there aren't any "fields" in a database, they're called "colums"" 😉

  • RE: Query improvement

    vaidyanathan_kalyanasundaram (3/3/2008)


    Hi,

    How do i improve the performance of this query:

    select * from table where Month(datefield)='mm'??

    If it were me in the interview and I was asked that question about that query,...

  • RE: How to lay out SQL Code

    I'm anal about formatting and embedded documentation. I imposed rigid formatting requirements on all the developers in the form of publicised SQL Standards. Everyone knows what I expect...

  • RE: Need some Logic Help on some row by row process

    Perfect. Thanks Dan... you won't spend the time in vain.

  • RE: How to grant such a permission?

    Actually, you hit the nail on the head, Steve... there should be a database for utilitlity functions of this nature. I suggest the name of UTILITY? 😉

  • RE: Columns Better Than Rows For Data Warehouses

    I'm cynical as well... but the very thought of making a database engine that truly responds to the columnar nature of an RDBMS is thought provoking and intriging, at the...

  • RE: Export Data to Excel

    Heh... or maybe, Jeff? 😀

  • RE: I got burned today at a SQL Server Interview!

    Don't sell yourself short, Lynn... your a humble man that knows more than you think. Sounds wierd, but maintain the humility with pride. I would honor the chance...

  • RE: Text Parsing TSQL code

    GF (3/2/2008)


    Hi all,

    this topic is almost what I am in need of. I have looked at Jeff's Code and I see the potential but I am a bit confused as...

  • RE: Text Parsing TSQL code

    noeld (3/10/2006)


    For some things, you don't need the tally table

    SELECT SentenceID,

    datalength(Left(' '+y.Sentence+' ', N)) - datalength(replace(Left(' '+y.Sentence+' ', N), ' ', ''))InSentenceNo,

    SUBSTRING(' '+y.Sentence+' ',N+1,CHARINDEX('...

  • RE: Text Parsing TSQL code

    Carl E. Campbell (3/10/2006)


    I'm starting to get the hang of using these tally tables, but I'm a little foggy on the sequence of events (my experience up 'till now is...

  • RE: Need some Logic Help on some row by row process

    Take a look at the URL in my signature line... it'll show you how to post some data so we can play with the same data as you...

  • RE: How to grant such a permission?

    The problem is, that YOU don't own Master... Microsoft does. They can put or remove anything they like, including code that doesn't belong to them, during any service pack...

  • RE: Export Data to Excel

    You need to double up on the embedded single quotes...

    xp_cmdshell 'bcp "select CUSTOMER_ID,Email1 from R4W_001.dbo.SYSCUST_AUDIT where Email1=''abc@sarasu.com''" queryout "C:\SoundPub\EmailList\durga2.csv" -T -c'

  • RE: How do I create a dates table with every possible date??

    Heh... considering that it's been over two weeks, I guess you do mind.

    Thanks, anyway 😉

Viewing 15 posts - 52,201 through 52,215 (of 59,070 total)