Viewing 15 posts - 346 through 360 (of 920 total)
If it's happening every minute, I'd be willing to bet someone has a SQL Agent job set up to check something on a dev server every minute and they've pointed...
May 21, 2012 at 5:51 pm
Depends. I've seen instances where the firewall was configured for the traffic necessary for the SQL Server to communicate but not the traffic the browser service needed to communicate....
April 13, 2012 at 5:25 pm
Hmmmm......
15K rows per hour is WAY too slow. Something is wrong somewhere. What's the definition for the target table? Does it have a trigger of any kind?...
March 15, 2012 at 5:27 pm
Used it on Sybase and it's great. The information it brings back is very good at pointing out the worst bottlenecks and the server overhead was pretty small. ...
March 9, 2012 at 2:17 pm
Seriously? I just want them to connect to the SSIS server so they can extract packages, work on the locally, and then import them back. For that they...
June 22, 2011 at 4:01 pm
Run a profiler trace on the DB. Find out what it's really doing. If it never really issues any ddl commands, then create the new group as discussed...
May 18, 2011 at 11:09 pm
If this is a 64 bit SQL Server instance, you may need to use this:
May 13, 2011 at 9:49 pm
There's not enough information for anyone to help you with anything other than a random guess. Please post the definitions for the underlying tables, including any indexes, the view...
May 4, 2011 at 6:46 pm
21.3333 can't fit into a (5,5) numeric. 21.3333 has 2 numbers to the left of the decimal, but (5,5) indicates that all the numbers will be to the right...
April 26, 2011 at 10:43 am
How about:
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE FUNCTION [dbo].[ufnlastcolumn](
@col1 varchar(255), @col2 varchar(255), @col3 varchar(255), @col4 varchar(255)
)
RETURNS varchar(255)
WITH SCHEMABINDING
AS
BEGIN
DECLARE @ReturnValue varchar(255);
set @ReturnValue = 'a';
If @col1 > @ReturnValue
set @ReturnValue =...
April 20, 2011 at 7:01 pm
I think the 'case' in the 'group by' is confusing things. What happens with:
select
m_mainid,
case
when memberid in ('A','B','C',) then 2000
when memberid = 'E' and m_mainid in...
February 9, 2011 at 1:19 pm
If you need to move data and structure back and forth, SSIS is probably your best bet.
February 2, 2011 at 1:52 pm
Are you sure you're getting the right bcp? Does bcp -v still tell you it's Sybase? What happens if you use the full path name to call bcp,...
January 26, 2011 at 1:54 pm
While rowid and sqlstr are column names in your table, you are also using variables @rowid and @sqlstr in your code without ever declaring them. Add the declaration for...
January 26, 2011 at 1:39 pm
If this is SAN attached, you might take a look at any latency reports you can get from the SAN that indicate increased latency during your slow periods. This...
January 21, 2011 at 4:07 pm
Viewing 15 posts - 346 through 360 (of 920 total)