Viewing 15 posts - 1 through 15 (of 15 total)
thanks for that.
I'd always presumed that a windows group named at a database level needed a corresponding server login, regardless of what other access the user had to the...
March 15, 2016 at 9:07 am
Thanks for the replies, folks.
I finally managed to get this to work today using the original certificate, dsource.companyname.com, even though the server name is something different. What helped me was...
February 13, 2012 at 2:36 pm
anyone any thoughts on this one?
thanks,
February 8, 2012 at 2:26 am
Excellent, informative and slightly scarey - all at once!
September 2, 2010 at 3:51 am
vlad-548036 (5/26/2010)
Exactly, I was just wondering whether you know where ?
I meant to post this earlier. This works for me across my servers\instances.
It's just a slightly amended version of the...
May 26, 2010 at 9:41 am
vlad-548036 (5/10/2010)
RegOpenKeyEx() returned error 2, 'The system cannot find the file specified.' :doze:this is on named instance of sql 2008 on 64-bit 2008 server
This script only works on the default...
May 26, 2010 at 4:55 am
Great script.
For the database name problem, all you have to do is use the QUOTENAME function i.e.
SET @sql = 'USE ' + QUOTENAME(@dbname) + 'DBCC SHOWFILESTATS WITH NO_INFOMSGS'
works for me.
February 23, 2010 at 8:27 am
You can disable the metadata, which means the user won't see any objects on the server at all -
REVOKE VIEW ANY DATABASE FROM ----
She will be able to run...
October 20, 2009 at 4:55 am
thanks - I think event notifications are a Service Broker thing, and I haven't had a chance to look at that yet.
Think that'll be my next port of call.
I...
April 7, 2009 at 3:27 am
yeah, we may have to look at that sort of scenario.
Ideally, I'd rather do everything on the one box, as time is short, but if the only stable solution...
April 2, 2009 at 10:51 am
thanks for that. I don't think the Oracle client for 9 will work with a 7 database however. The highest I could get to work was 8.
cheers,
April 2, 2009 at 10:07 am
I would definitely advise using the inbuilt SQL Debugger in Visual Studio 2005. There is an article on MSDN which explains how to set it up (very straightforward). Using this...
August 25, 2008 at 6:07 am
What error do you receive? Is it a syntax one?
I would tend to do this:
DECLARE @recipients varchar(100)
exec sp_Getmail 'xyz', @recipients OUT
SELECT @recipients
July 23, 2008 at 12:39 pm
How many records are we talking about here (being returned from your SELECT statement)? If it's a relatively small number, I would be tempted just to do this in...
July 14, 2008 at 6:44 am
Viewing 15 posts - 1 through 15 (of 15 total)