Viewing 15 posts - 421 through 435 (of 469 total)
Can you post the SQL you're using? I'm seeing part of it in the plan but it cuts off.
May 11, 2010 at 11:04 am
Make sure you're testing on data that's similar to production because query plans can change with different data sizes and distributions.
May 4, 2010 at 8:05 am
For the product I work on (external support only) L2 deals with the client's IT staff, has minimal visibility into the code, and can't made code changes (although some of...
May 3, 2010 at 6:28 am
I've used WinDirStat to track down files to delete to free up space. I would make sure you keep a list of what you delete and then try to...
April 28, 2010 at 9:48 am
If that process is blocking others you'll need to either find out why it's running so long or stop it.
April 23, 2010 at 10:10 am
That was my only thought. Hopefully someone else comes along with another idea.
April 23, 2010 at 10:03 am
I'm not aware of a way of restricting CPU percentage but if it's a multi-processor machine you can set the maxdop for the query.
April 23, 2010 at 9:37 am
If the queries aren't completing I would check for blocking using Activity Monitor.
April 23, 2010 at 9:33 am
Select statements don't change any data so they aren't logged.
April 23, 2010 at 8:34 am
Check the charindex function to find the decimal and the substring function to get the third position after that. You'll need to convert the column to a varchar first.
April 22, 2010 at 11:08 am
Can you send the call you're making to the procedure? It looks like you're not passing in something for @CandID but we'll need to see the call and how...
April 22, 2010 at 10:40 am
Will something like this work:
select myCol, count(*) from myTable
group by myCol
order by 2 desc
April 22, 2010 at 9:47 am
It looks like it still needs to scan the whole table for this:
SUBSTRING(LineRead,
CHARINDEX('/',LineRead,CHARINDEX('/',LineRead)+ 1)...
April 21, 2010 at 10:03 am
What about splitting it into two databases and setting up either views or synonyms to reference the objects that were moved? That should make the change transparent to anything...
April 21, 2010 at 6:22 am
Another option would be to set up individual SQL accounts for each user and not use shared accounts.
April 21, 2010 at 6:16 am
Viewing 15 posts - 421 through 435 (of 469 total)