Viewing 15 posts - 16 through 30 (of 37 total)
>>A user can view any thing that they can access. Just give them CONNECT access to the database and they will be able to see it (though not necessarily much...
May 6, 2009 at 9:07 pm
>>What's wrong with that standard approach?
Nothing is wrong (or "a lot is wrong" if you wish...). It's just irrelevant.
Pablo:
You are talking about access to a database - one of a...
May 6, 2009 at 7:06 pm
Excellent code, ALZDBA, thanks.
Could you please help me with my problem:
Given:
Login: pacrat
User: pacrat with default schema: [pacrat]
view pacrat.tv (as select getDate())
BOL states that under these circumstances query 5 in...
April 3, 2009 at 12:54 pm
BOL claims:
"In SQL Server 2005, each user has a default schema, which specifies the first schema that will be searched by the server when it resolves the names of objects....
April 1, 2009 at 7:31 am
The problem is that there is a ton of code that uses just simple object name without schema name. And I want on one hand somehow improve DB organization with...
April 1, 2009 at 7:11 am
select name, default_schema_name
from sys.database_principals u
where u.name='pacrat' and u.name='PacRaT' and u.name='PACRAT'
name default_schema_name
------ ----------------------
pacrat ...
March 31, 2009 at 1:30 pm
... unless the user has "Default Schema" name defined that is different from "dbo". It is "pacrat" as you can see from the very last query results and from this...
March 31, 2009 at 12:40 pm
I googled the question, and this time I succeeded:
I bought this book.
March 6, 2008 at 11:01 am
TicketID = CASE WHEN TicketID > 0 THEN @TicketID ELSE TicketID END
March 6, 2008 at 8:35 am
Thank you SQLBill for your answer, but it looks like there is kind of misundersanding.
1) From Query Analyzer I issue a statement.
2) This statement contains braces.
3) SQL Server successfully executes this statement.
My question...
September 20, 2005 at 10:56 am
Thanks, Enthusiast. Although I am not going to use it I am just curious:
Can these braces be used in any other context?
September 20, 2005 at 8:05 am
As I mentioned in my post of 7/29/2005 12:23:00 PM I am trying to avoid creating a new subject to maintenance like a set of text .sql files (let SQL backup...
August 23, 2005 at 2:25 pm
Viewing 15 posts - 16 through 30 (of 37 total)