Viewing 7 posts - 31 through 37 (of 37 total)
Having looked closer at the example I have now realised I have miss read what it is doing. So to make things really simple. If I have the following sales...
December 9, 2008 at 8:47 am
I'm trying to achieve what this article says Quartile will do.
http://www.sqlservercentral.com/articles/Miscellaneous/sqlserverstatisticalfunctions/1255/
Specifically and I quote from the article.
"Another way of looking at extremes is to use something called the...
December 9, 2008 at 8:20 am
CREATE TABLE [dbo].[Products] (
[ProductId]char(20) NOT NULL,
[UnitPrice]float NULL
)
GO
INSERT INTO [dbo].[Products]([ProductId], [UnitPrice])
VALUES('214700 ', 0.65)
GO
INSERT INTO...
December 9, 2008 at 7:45 am
The problem I have is that the viewer can connect to the live database and select from any tables. I have had to execute deny select on payroltab to viewer...
November 6, 2008 at 10:54 am
Lets just say I have good reasons for wanting to do it my way is there a way of preventing a user connecting to a database but also still being...
November 6, 2008 at 8:42 am
All I'm trying to do is give access to live data in read-only mode on a small selection of tables. I know that if I don't use NOLOCK then the...
November 6, 2008 at 6:17 am
How do I give viewer access to schema scheme. I tried GRANT SELECT ON SCHEMA::scheme to viewer but go the message
Server: Msg 156, Level 15, State 1, Line 1
Incorrect syntax...
November 6, 2008 at 5:15 am
Viewing 7 posts - 31 through 37 (of 37 total)