Forum Replies Created

Viewing 15 posts - 49,591 through 49,605 (of 59,078 total)

  • RE: Do I need more memory?

    jjssilva (6/27/2008)


    Jeff Moden (6/26/2008)


    jjssilva (6/26/2008)


    Check Buffer Cache values. Also, how big are the Databases?

    The DB shouldn't take more than 80% of the available RAM.

    So... what do you do when you...

  • RE: eliminating duplicates

    Heh... Hey, Barry! Did I 'splain all that correctly? :hehe:

  • RE: eliminating duplicates

    Don't look at the symbols... the symbols mean nothing to humans. What is important is the ASCII value... it can be 0 to 255 in a single character VARCHAR...

  • RE: what date format is this?

    Chris Morris (6/27/2008)


    Jeff Moden (6/26/2008)


    Heh... no problem... if you think no coffee is bad, I'm trying to quit smoking... got anyone you want to take to a porkchop dinner? 😀

    Ahah...

  • RE: Grouping GROUP BY subtotals

    I don't see where you've used that particular ISNULL as a join. It think it would be a problem if it were actually in a join because it uses...

  • RE: Need Some Queries

    jezemine is correct, though. I didn't really help with your test questions and you should learn how to use Books Online to find those answers.

  • RE: SQL table dynamic creation

    gerald.duncan (6/27/2008)


    My goal is to create a table for each flat file.

    You still haven't explained why you want to do that, Gerald. Not trying to bust your chops......

  • RE: For loop in sql server

    Thank you for the awesome compliment, Jim! Folks like you sure help keep me going...

  • RE: Parameter list query - peformance 32bit vs 64bit

    Wow... I guess 64 bit isn't ready for primetime...

    Of course, I still say that about 2k5 when the optimizer makes the wrong choice... 😛

  • RE: Query Data without Dynamic SQL

    GilaMonster (6/27/2008)


    Jeff Moden (6/26/2008)


    I haven't had to work with it so haven't been able to see what it actually does to a database and, as a result, can't say whether...

  • RE: Temporary Table problem

    Ummm... yeah... just don't try to run the same proc twice at the same time unless you detect if the table is present before you make it...

    ... and be pretty...

  • RE: Inserting row with Procedure

    Never mind... I got it... took a little trickery...

    drop table #Fun

    GO

    select *

    into #fun

    from openquery([myserver],'SET FMTONLY OFF exec master.dbo.xp_DirTree [C:\],1,1')

    select * from #fun

  • RE: Inserting row with Procedure

    Bugger... this works just fine (I changed my servername in the code)....

    drop table #Fun

    GO

    select *

    into #fun

    from openquery([myserver],'exec master.dbo.sp_who')

    select * from #fun

    ... and so does this...

    exec master.dbo.xp_DirTree [C:\],1,1

    ... but this...

  • RE: Inserting row with Procedure

    Dang it... nicely done, Matt... I totally forgot that OpenQuery could have an EXEC in it. :blush:

  • RE: SQL table dynamic creation

    gerald.duncan (6/25/2008)


    and create a separate SQL table from each file

    [font="Arial Black"]WHY???[/font] :blink: Especially when they all have the same file format...

Viewing 15 posts - 49,591 through 49,605 (of 59,078 total)