Viewing 15 posts - 1 through 15 (of 29 total)
It's a server with two named instances - it happens on both instances, in any database - but only when connected remotely, not when logged on to the server itself...
November 11, 2014 at 2:58 pm
In this case it was just a connection from Query Analyser.
From SQL Management Studio, symptoms are similar, but the error message is a little different:
A transport-level error has occurred when...
November 11, 2014 at 11:03 am
In case you miss is, article Generating Insert Statements[/url] is republished today.
Also, there is my own article, Scripting INSERTs[/url], which is intended to do address a slight different issue -...
May 14, 2010 at 2:41 am
The insert-generating method described above is clearly error prone.
Well, yes - but producing binary inserts clearly loses some of the flexibility I often use a scripting procedure for in the...
July 1, 2009 at 6:38 pm
I've got something similar I wrote that I use. Possibly worth pointing out that you can bind your own stored procedures to keys using "Customise" in SSMS and QA (e.g....
March 23, 2009 at 4:59 am
harry9katz (2/6/2009)
and decide if...
February 6, 2009 at 8:12 am
harry9katz (2/4/2009)
select * from master..sysprocesses where blocked>0 and spid<>blocked
order by waittime desc
and find the spid
then use :
dbcc inputbuffer (spid...
February 5, 2009 at 9:25 am
This seems to be addressing a different issue to the one I was trying to solve. First of all, it's pretty tied to SQL server 2005 and above - e.g....
January 2, 2009 at 9:57 am
Adam Tappis (12/30/2008)
December 30, 2008 at 5:08 am
Yelena Varshal (12/29/2008)
I mostly use CSV / BCP or MS ACCESS for that.
One key point about ths approach is that it's "quick and dirty" - if all you want to...
December 30, 2008 at 3:07 am
That means, if a table has 107 columns, then you'll only script 100 of them...does that make any sense? If indeed there is an obscure sql fault on greater...
December 29, 2008 at 9:07 am
I don't know of any nice clean way to join to it, but I've done the sort of thing I think you're after in fairly ugly ways with cursors. For...
July 7, 2008 at 1:37 am
Hardware has turned up, and we're just at the point where we'll be configuring the arrays. I'm still a bit concerned about the 30 disks in the external chassis. I...
July 4, 2008 at 5:40 am
Not seen this myself, but might it be something to do with SQL Agent alerts:
http://www.dbforums.com/archive/index.php/t-1104383.html
http://sql-server-performance.com/Community/forums/p/22262/128396.aspx
Tony
June 16, 2008 at 4:06 pm
The performance comes from the fact that field like('%search_item%') cannot use any index - it generates a table scan. Note that field like('search_item%') (without the leading "%") is a completely...
June 16, 2008 at 4:00 pm
Viewing 15 posts - 1 through 15 (of 29 total)