Viewing 15 posts - 3,766 through 3,780 (of 5,394 total)
You could also avoid mapping the login to a db user completely, so that it can't access the database at all.
October 18, 2010 at 11:27 am
Public role doesn't have table access, don't worry about that.
October 18, 2010 at 11:24 am
db_owner is referred to a single database, it's not a server role.
You just have to create the user as db_owner of the target database and leave it as "public" on...
October 18, 2010 at 11:10 am
Paul White NZ (10/18/2010)
Kit G (10/18/2010)
October 18, 2010 at 11:04 am
GSquared (10/18/2010)
October 18, 2010 at 10:36 am
I would import the minimum possible amount of data (only required fields) from the remote server into a temp table, index it properly, and then update the local table.
Such a...
October 18, 2010 at 10:14 am
Gianluca Sartori (10/18/2010)
Plz, do my homework!
Well, I was wrong.
When I see things like "plz" and "How can i write the Sp PLZ let me know" I...
October 18, 2010 at 7:56 am
October 18, 2010 at 7:38 am
October 18, 2010 at 7:35 am
The point I'm trying to make is that your question doesn't contain enough information to get a sensible answer.
Read the article and add the requested info to your question.
October 18, 2010 at 7:00 am
You're not going to get useful answers for this problem, unless you take the time to describe it properly.
See the article linked in my signature and find out how to...
October 18, 2010 at 6:24 am
davrose (10/18/2010)
Well..i know how recursive CTEs work 😀i am interested in the select on the rCTE.
Anyway... now it works on the real problem as well 😉
Oh, sorry!! :blush:
No offense meant!...
October 18, 2010 at 6:04 am
WITH zones AS (
SELECT dnsname, alias
FROM dnszone AS A
...
October 18, 2010 at 4:30 am
Viewing 15 posts - 3,766 through 3,780 (of 5,394 total)