Viewing 10 posts - 1 through 10 (of 10 total)
Don't know if this helps - I use this to search for references in stored procs:
SELECT Distinct SO.Name
FROM sysobjects SO (NOLOCK)
INNER JOIN syscomments SC...
February 4, 2011 at 9:39 am
Try looking at this to watch your memory problem:
select * from sys.dm_os_memory_clerks where type = 'MEMORYCLERK_SQLCLR'
February 4, 2011 at 9:24 am
Hi,
Look at these:
sys.assemblies
sys.dm_clr_appdomains
sys.dm_clr_loaded_assemblies
You should be able to find out what you need.........
February 4, 2011 at 9:07 am
Thanks - but what I ideally want to do is verify the requested connection entirely in the logon trigger. If the connection is not valid, I will simply do a...
February 4, 2011 at 3:10 am
Thanks for the reply.
SQL server is simply failing to execute any code in the DoCallBack method, I tried putting a return statement at the top of this method so...
December 19, 2009 at 5:09 am
Hi Grant,
Thanks for the reply. The database is for controlling licenses on a client site. The database contains all the available licenses to the user, when then select a license,...
April 9, 2008 at 7:04 am
Thanks for the reply. I've thought of another approach that is easier, i think. I've created a strored procedure which executes automatically from startup. In the procedure I simply use...
April 9, 2008 at 4:53 am
Hi Jack,
Thanks for your reply. I tried what you suggested, but it still didn't work. I was getting an error about the SQL Server Agent. I didn't mention in my...
April 9, 2008 at 2:29 am
Thanks Gail / Steve,
I've used a stored procedure to run on start up and it's doing exactly what I want!
Thanks again for your help - much appreciated!
April 8, 2008 at 9:39 am
Hi Gail,
Thanks for your reply. The database manages licenses that get handed out when requested by a client. The application renews its license by polling the database every few minutes....
April 8, 2008 at 5:58 am
Viewing 10 posts - 1 through 10 (of 10 total)