Viewing 15 posts - 886 through 900 (of 1,162 total)
Does the performance improve if you add OPTION (RECOMPILE) to the statement?
http://msdn.microsoft.com/en-us/library/ms181714.aspx
It could be parameter sniffing of some kind.
February 18, 2011 at 3:23 am
I ended up writing a while loop (instead of the dreaded CURSOR) to go through the tblGroup rows.
Just to clarify, the CURSOR is dreaded because it's row by row, bot...
February 17, 2011 at 6:32 am
It is by definition a row by row problem - whether it's a while loop or cursor is largely irrelevent.
I hope there's no user access to be able to...
February 17, 2011 at 4:39 am
Is it a specific query or literally anything that goes through the linked server?
E.g. Does something like this work?
select * from OPENQUERY(mylinkedservername,'Select getdate()')
I've found some random linked server problems (with...
February 16, 2011 at 5:55 am
The whole point of hashing algorithms is that they are not reversable. Unless there was a specific vunerability in the hashing algorithm you could not reverse it.
I'd suggest reading up...
February 16, 2011 at 5:04 am
I'd check with your license provider rather than make a guess at it.
Generally speaking the license covers previous version of the software, but the wording is:
Deploy SQL Server 2008, 2005,...
February 11, 2011 at 10:33 am
Print the @sql parameter and execute the text manually to debug it - it'll make life much easier
February 11, 2011 at 6:06 am
Are shadow copies enabled on the drive?
Edit: Never mind, you've already answered that
February 7, 2011 at 10:13 am
'Show Hidden files' is unchecked and 'Hide protected operating system files' is unchecked.
Show Hidden Files should be checked, not unchecked.
February 7, 2011 at 9:49 am
Make sure you can see hidden files and folders - have a look here for how to do that in Windows 2008:
There must be more files than you're seeing...
February 7, 2011 at 9:32 am
I don't believe you can start a line with a slash in Oracle as it's a reserved character (for executing a batch) - take the carraige returns out and it...
February 7, 2011 at 9:29 am
Oracle requires you to have a FROM regardless of whether you're returning the results of a table - because of this, they have created a special table called 'dual' which...
February 7, 2011 at 8:57 am
PaulB-TheOneAndOnly (2/5/2011)
February 7, 2011 at 6:01 am
I haven't got an R2 environment to hand at the moment - any chance you could post the DDL for the view you've created to test this?
February 3, 2011 at 2:13 am
Michelle-164472 (2/2/2011)
All,Is it possible to use 1 report server to generate reports from multiple databases across multiple servers?
Absolutely. In fact, this is one of the core parts of...
February 2, 2011 at 9:58 am
Viewing 15 posts - 886 through 900 (of 1,162 total)