Viewing 15 posts - 271 through 285 (of 2,038 total)
Do you have administrator privileges on your box? Debugging CLR procedures from VS2008 requires to be administrator.
October 29, 2009 at 4:03 pm
As Steve indicated. Do this only if you really need to.
Coupling databases over SQL - especially triggers - is a dangerous thing.
Edit: Typo
October 29, 2009 at 3:59 pm
Hi
(Disclaimer: Can't try this at the moment due to a missing test system :hehe: )
The "little boxes" might appear in notepad because in Windows you need a CRLF (carriage-return line...
October 29, 2009 at 3:52 pm
Hi
I'm not sure if I got you.
You can call the procedure with any answer-id and it should work fine.
Either there is a problem with your design or it works. 😛
Just...
October 29, 2009 at 3:47 pm
Hi
It's not possible to use variables within XML expressions. If your node names are like "dataDef1" to "dataDefN" you can try to use the XPath functions name() and substring(). SQL...
October 29, 2009 at 3:41 pm
Hi
Give this a try:
-- some vars
DECLARE
@companyName NVARCHAR(100)
,@requestorName NVARCHAR(100)
,@sql NVARCHAR(1000);
-- some parameter
SELECT
@companyName = NULL
,@requestorName =...
October 29, 2009 at 9:39 am
Hi
As Lynn already suggested. You should use sp_executesql instead of concatenating values into dynamic SQL strings. Concatenating SQL with values is always a solution for SQL injection and can cause...
October 29, 2009 at 9:20 am
Hi Grant
Sorry for the late response.
Seems that the problem does not occur any more since we split the databases to different servers. We'll change the memory allocation tomorrow.
Data-center team will...
October 29, 2009 at 9:14 am
Hi Grant
I'll try to change the Min/Max Memory Allocation to same value. Do you know if we have to restart the service after changing?
Some new information
We switched the EAV database...
October 29, 2009 at 5:29 am
Hi
My advice would be, don't do this within SQL Server if possible. HTTP-Posts/-Requests usually should be done by a process.
If you really need to do this with SQL Server, use...
October 29, 2009 at 4:20 am
Hi Tak
Glad we could help. Thanks for the feedback!
Flo
October 29, 2009 at 2:46 am
Hi douglas
Have a look to this link:
Cross Tabs and Pivots, Part 1 – Converting Rows to Columns[/url]
Greets
Flo
October 28, 2009 at 1:03 pm
Hi takutoyamada
If the search criterion does not contain any further wild cards (like "%foo%bar%") CHARINDEX function usually works faster than LIKE.
Greets
Flo
October 28, 2009 at 12:55 pm
Viewing 15 posts - 271 through 285 (of 2,038 total)