Viewing 15 posts - 1,471 through 1,485 (of 2,044 total)
Do you have the truncate (remove unused space) on in your maintenance plan?
Sure you do the same type of backup (full, differential,...)?
April 3, 2006 at 10:41 am
Have you watched your performance counters?
Perhaps the server is too busy with I/O or something else.
April 3, 2006 at 10:37 am
Perhaps a difference on servicepack level of the clienttools.
Do they match the sql server servicepack level?
April 3, 2006 at 10:35 am
You will have a performance drop since it needs to communicate with another server.
How large the drop will be depends on the amount of data & network latency.
March 29, 2006 at 7:23 am
Your commandtimeout is adjusted to 10 minutes?
Is there any rollbacks of transactions?
You can post your query in the T-SQL forum if you need to speed it up.
March 27, 2006 at 3:36 am
Hello again.
Normally when there is a time-out you get an error.
The stored procedures does return the results in the query analyzer?
March 26, 2006 at 11:30 pm
SELECT *
FROM Table1
INNER JOIN Table2
ON Table1.Date = Table2.Date
AND Table1.Date >= convert(datetime,'20060324') /*always pass universal date, with function on the right allows indexes to be used*/
AND Table1.date < dateadd(d,1,convert(datetime,'20060324'))
March 24, 2006 at 4:52 pm
Hello.
*Applying a function on the restrictive column is really nasty for your performance as you force out a full table scan instead of an index scan.
This also leads to additional...
March 24, 2006 at 10:41 am
The table definitions are the same? (char vs varchar)
March 24, 2006 at 10:35 am
*Closing the connections would be a great start. (releases remaining locks etc)
*Sql server's goal is to occupy memory till 4-10mb free memory is left over. (in dynamic memory allocation mode)
Motto: not...
March 24, 2006 at 10:24 am
1)Always specify the datalength when converting, otherwise you risk truncation
->CONVERT(VARCHAR(20),CREATED_DATE,101)
2)What datatypes are @START_DATE and CREATED_DATE?
March 23, 2006 at 12:10 pm
Have a look at http://support.microsoft.com/kb/839279
it is the "full" version of the problem description.
March 23, 2006 at 12:05 pm
1) an oversight of waittypes in sqlserver
http://support.microsoft.com/?kbid=822101
2)The activity window in enterprise manager isn't autorefresh.
3) You could use the profiler if your query is composed of multiple steps, by watching...
March 23, 2006 at 12:02 pm
1. The servicepacks are free and available at http://http://www.microsoft.com
It could be you have to pass a "genuine" validation first.
2. Yes, the latest servicepack includes all previous versions.
3.You can do...
March 23, 2006 at 11:44 am
Timetable
Timevalue datetime (time)
IsStart bit (value)
select Timetable.timevalue as starttime,min(table2.timevalue) as endtime
from Timetable
inner join Timetable table2
on table2.timevalue>Timetable.timevalue /*younger than*/
and table2.isstart=0
and Timetable.isstart=1
group by Timetable.timevalue
Renamed Time & Value because they are reserved words.
With some functions...
March 23, 2006 at 11:38 am
Viewing 15 posts - 1,471 through 1,485 (of 2,044 total)