Forum Replies Created

Viewing 15 posts - 8,086 through 8,100 (of 13,469 total)

  • RE: sql trigger get incoming SQL

    just to confirm, from inside a trigger, you cannot always get the whole SQL statement; you can use DBCC inputbuffer, but that returns only the first 255 chars; a lot...

  • RE: Why does it take longer to run a script through a linked server?

    Colleen nailed it, I'll just try to explain:

    There are several threads here on SSC on Linked Sserver performance;one thread which stated that openquery against a linked server was faster for...

  • RE: Laptop suggestions with VS2008 in mind?

    As an FYI, i bought a recent Win7 HP laptop with 19" wide screen and full keyboard.

    While i love the OS and layout, I get more Blue Screens Of Death...

  • RE: MS SQL DATABASE CONNECTING TO CLASSIC ASP

    well... start with the basics....if you want real help, you'll have to give real details.show us the exact code you are using.

    comment out 99% fo the code , run the...

  • RE: MS SQL DATABASE CONNECTING TO CLASSIC ASP

    the section you pasted looks like it came from a .net config file. i think you're having trouble directly related to that....are you doing ASP classic or ASP.NET?

    the connection string...

  • RE: Need help identifying query

    Mr Magoo I'd love to hear the back story on this...might be very educational for us....

    what happened that made you start thinking something was flooding the server...after looking at the...

  • RE: MS SQL DATABASE CONNECTING TO CLASSIC ASP

    i realize this is probably a smippet, and not the whole page, but bear with me.

    I do not see the connectionstring being assigned to the connection object, nor do i...

  • RE: PROC Questions

    Khades (2/16/2011)


    Oh Thanks, awesome!

    What about question 2 though? Will having Child procs for the code to run parallel to each other improve performance?

    And can 1 proc run parallel to itself...

  • RE: Shift pattern

    not what I asked for , my friend sorry. Let me clarify.

    I wanted to see the actual TSQL statement you are using.

    show me something like this:

    SELECT dbo.shift(somecolumn) as AValue, *...

  • RE: PROC Questions

    if the temp table is declared in the parent procedure, the temp table exists for any processes or child procedure all as well.

    each instance of the parent proc would create...

  • RE: Shift pattern

    can you show the query that is using the shift function now? basically we are talking about joining that query to the shifts table directly, instead of using the function.

  • RE: Issue while creating DATABSE from a script.

    the default directory can be different on every machine.

    take a look at the filepaths from this view:

    select * from master.sys.sysaltfiles

    TSQL does not have any ability to raise a prompt. technically,...

  • RE: How to get back the hash values in sql server

    you'll really want to read the article; the master key is a prerequisite; once you have that, my snippet examples will work.

    i *think* this will work no matter what?:

    select...

  • RE: how to select 90% records from a table?

    remember a TOP without order by doesn't make sense...

    to do the top 20 of the top 90%, it's just nested selects....

    select TOP 20 * FROM

    (

    SELECT TOP 90 PERCENT * ...

  • RE: why the avatar picture you use

    these were my previous avatars:

    favorite comic inspired 7 plus years ago

    my dawg debbie was my avatar for years..

    for the star wars period Gail mentioned.

    reading on uglyoverload, time for a n...

Viewing 15 posts - 8,086 through 8,100 (of 13,469 total)