Viewing 15 posts - 8,086 through 8,100 (of 13,469 total)
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...
February 18, 2011 at 2:49 pm
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...
February 18, 2011 at 12:36 pm
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...
February 18, 2011 at 12:18 pm
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...
February 18, 2011 at 11:34 am
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...
February 18, 2011 at 8:38 am
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...
February 18, 2011 at 7:18 am
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...
February 18, 2011 at 5:46 am
Khades (2/16/2011)
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...
February 16, 2011 at 5:24 pm
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, *...
February 16, 2011 at 11:49 am
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...
February 16, 2011 at 11:02 am
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.
February 16, 2011 at 10:51 am
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,...
February 16, 2011 at 7:27 am
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...
February 16, 2011 at 6:58 am
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 * ...
February 16, 2011 at 6:02 am
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...
February 16, 2011 at 5:56 am
Viewing 15 posts - 8,086 through 8,100 (of 13,469 total)