Viewing 15 posts - 811 through 825 (of 1,162 total)
The path is the path on the SQL Server rather than on your local machine... If you've moved that dll to the server, check the SQL Service Account has permissions...
March 31, 2011 at 6:16 am
There's a forum post here about the same topic, looks like you just have to create an assembly for the DLL you'll be referencing:
Referencing an external DLL (except the ones...
March 31, 2011 at 6:08 am
If the application calls a Stored Procedure that you do have access to, then yes, you can wrap it in a TRY...CATCH block and raise a custom error message.
If it...
March 31, 2011 at 5:40 am
Apologies, think I misunderstood the question then. Yes, someone must have restarted the SQL Service while the rollback was still completing, so it has to recover before the database can...
March 31, 2011 at 4:49 am
If you know the session ID (SPID) of the process, you can find the percentage complete of the rollback (approximately) by looking at the following DMV:
SELECT percent_complete FROM sys.dm_exec_requests WHERE...
March 31, 2011 at 4:22 am
Ok, I think I see what you're after. So, saying you had a table where you'd imported this list called rowstoupdate, you could use MERGE (or the proprietary UPDATE...FROM) to...
March 30, 2011 at 3:01 am
LutzM (3/29/2011)
Something like
CASE
...
March 29, 2011 at 11:32 am
Thanks Paul, yep that fixes it.
I'm aware PERSISTED isn't required if it's being indexed - it was one of the things I added in trying to troubleshoot what the...
March 29, 2011 at 9:47 am
To give some more information, a functionally equivalent computed column that's calculated from a scalar function produces a seek as expected. Test case updated below to include both:
USE tempdb
GO
IF EXISTS...
March 29, 2011 at 9:34 am
GilaMonster (3/29/2011)
Starting to look like a bug, especially since it works as expected on SQL 2005. Let me get some additional opinions....
Thanks Gail
March 29, 2011 at 6:16 am
Lowell (3/29/2011)
March 29, 2011 at 6:15 am
When adding the following hint:
WITH (INDEX(IDX_Computed_Concatenated_Field), FORCESEEK)
I also get the error:
Msg 8622, Level 16, State 1, Line 1
Query processor could not produce a query plan because of the hints...
March 29, 2011 at 6:04 am
GilaMonster (3/29/2011)
Try including SystemID and Reference in that index. They should not be necessary, but somehow it appears SQL...
March 29, 2011 at 5:58 am
GilaMonster (3/29/2011)
What editions of SQL?
Standard Edition - Other question answered above
March 29, 2011 at 5:56 am
Lowell (3/29/2011)
March 29, 2011 at 5:55 am
Viewing 15 posts - 811 through 825 (of 1,162 total)