Viewing 15 posts - 841 through 855 (of 964 total)
GilaMonster (10/19/2008)
October 19, 2008 at 10:48 am
I can provide you a number of theories about what may or may not be causing this. The best way to determine for certain why you are getting the...
October 17, 2008 at 8:30 am
There are a couple of ways for you to go about creating this linked server. The first thing you have to do though is ensure that the SQL Express...
October 15, 2008 at 8:37 am
Create a Linked Server between the two and call the stored procedure over the link. I would expect that you will have some performance issues with this since it...
October 14, 2008 at 8:26 am
GilaMonster (10/11/2008)
October 11, 2008 at 1:49 pm
I'd recommend that you read up on ANSI standards for SQL. I might be hardheaded, but I understand what I am talking about. You also might pickup Kalen...
October 11, 2008 at 7:21 am
If you are having this kind of issue, then you have something that is not thread safe in your implementation, which we can't see in the little bit of code...
October 10, 2008 at 4:45 pm
It is obvious from your post that you have no idea how the Query Engine in SQL Server works. The fact that CLR Integration was added to SQL Server...
October 10, 2008 at 4:31 pm
The database engine understands TSQL. It doesn't build a expression tree from the TSQL, it creates an optimized execution plan so that the database engine knows how best to...
October 10, 2008 at 12:00 pm
Describe what you mean inverse query. If you simply mean to get the opposite set of rows for the two queries then use NOT LIKE and or !=. ...
October 3, 2008 at 8:50 am
What version of SQL Server is this for? How do you want the contents of the table sent, as a CSV attachment, inline to the body of the message,...
October 2, 2008 at 10:13 am
It might take a few days but I will follow up on this and post a conclusion here when I do.
October 1, 2008 at 1:43 pm
kent.kester (10/1/2008)
It seems like more trouble than it's worth at this point for something that sounds like a generally bad idea.
That would be my thoughts on this exactly, but I...
October 1, 2008 at 12:33 pm
I would have to play with this to know. I don't register unapproved assemblies in my servers, so I have never encountered this. I'll have to play with...
October 1, 2008 at 12:06 pm
Since the BCL consists of signed assemblies, you can still do it without Trustworthy:
CREATE ASYMMETRIC KEY SYSTEM_DRAWING_KEY
FROM EXECUTABLE FILE = 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\system.drawing.dll'
GO
CREATE LOGIN SYSTEM_DRAWING_Login FROM ASYMMETRIC KEY SYSTEM_DRAWING_KEY
GO
GRANT UNSAFE ASSEMBLY...
October 1, 2008 at 11:59 am
Viewing 15 posts - 841 through 855 (of 964 total)