Viewing 15 posts - 181 through 195 (of 599 total)
Try:
Select count(thedate) from table where thedate is not null
see if that helps.
Other than that look at the execution plan, the IO statistics (SET STATISTICS IO ON), performance monitor,...
March 19, 2009 at 2:37 pm
Here's the link:
http://msdn.microsoft.com/en-us/library/ms186243.aspx
An example (quickly generecised from my code base):
WITH TheGroups as
(select i.item_id, i.group_id, g.group_name, g.department_id
from user_group_item i
inner join user_group g
on i.group_id = g.group_id
inner join split_csv(@v_user_ids,',') ids
on ids.token =...
March 19, 2009 at 1:53 pm
You lose a lot more than just a few dm's running in "compatability mode".
There is also the EXPENSE. Instead of going ahead and purchasing 2008, they have now had...
March 19, 2009 at 1:32 pm
This isn't a maintenance plan, so that doesn't apply. Also, the script is already deleting (via T-SQL) and re-creating the job.
Interestingly enough, I connected to the server via my...
March 18, 2009 at 11:13 am
Nope. Already tried that. Only one server_id in sysjobs, sysjobservers and sysjobstep. Only one server listed in sys,servers. @@servername returns the right server name.
It looks like...
March 17, 2009 at 1:25 pm
How are the backups set up to run (third party tool, SQL Server job / maintenance plan, homegrown app, something else?)? Have you checked there?
March 16, 2009 at 1:12 pm
Paid events are OK. I know about the Connections event but we're dealing with some family issues here on the West coast that need to settle down before we...
March 9, 2009 at 11:02 am
Yes, guys, I'm well aware of this. In fact I've mentioned it myself several times on this very board. (Probably should have mentioned it myself for the benefit...
October 19, 2008 at 2:02 pm
I couldn't tell you which one had which error as it was about a year ago and I've since gone on to other projects. This was a 3 TB...
October 19, 2008 at 5:52 am
I ran trials of all the SQL backup compression tools (Red gate, Quest and a few others). They all failed miserably.
October 19, 2008 at 2:34 am
Try sp_change_users_login
October 17, 2008 at 3:03 pm
At my previous client, I had to frequently copy files that were several times the size of the file you're copying. We used filezilla as that's what the ops...
October 17, 2008 at 2:32 pm
This is a hack, plain and simple. If you really want to move the table, the best way is to create a "temp: table on the new filegroup. move...
October 16, 2008 at 11:04 am
Generally speaking, partitioning will help performance. The key is that you need a logical, consistent data point on which to partition.
If you need to stick to 2000, you can...
October 14, 2008 at 5:24 pm
Viewing 15 posts - 181 through 195 (of 599 total)