Viewing 15 posts - 1 through 15 (of 25 total)
Sean Lange (3/20/2013)
March 20, 2013 at 9:05 pm
GilaMonster (3/20/2013)
clintonG (3/20/2013)
March 20, 2013 at 9:02 pm
Lynn Pettis (3/20/2013)
Is this some sort of inventory database?
In a manner of speaking yes, this is a type of inventory database of all transactions when a pawnbroker or second-hand sales...
March 20, 2013 at 8:48 pm
To be honest, I would strongly recommend disassociating yourself from this project because from what I have read up until now it can only end in tears.
...
This story...
March 20, 2013 at 9:17 am
Also, I wasn't talking about SQL permissions, you need to lock down the windows machine, limit administrative access, make sure that no one has permissions to the machine unless they...
March 20, 2013 at 8:53 am
GilaMonster (3/19/2013)
clintonG (3/19/2013)
kevaburg (3/18/2013)
lol!
I don't know what's supposed to be so funny. How else could somebody lock down a Windows 7 client OS functioning as a "server" than to use...
March 19, 2013 at 5:54 pm
kevaburg (3/18/2013)
March 19, 2013 at 8:51 am
kevaburg (3/18/2013)
lol!
I don't know what's supposed to be so funny. How else could somebody lock down a Windows 7 client OS functioning as a "server" than to use Group Policy...
March 19, 2013 at 8:43 am
GilaMonster (3/17/2013)
clintonG (3/17/2013)
The SQLExpress database will be intsalled on a share of a Windows7 machine
Errrr....
SQL is not Access. It's not a file-based database that sits on a share. It's...
March 18, 2013 at 8:22 am
This and similar projects use P2P LANs. The SQLExpress database will be...
March 17, 2013 at 2:39 pm
kevaburg (3/17/2013)
March 17, 2013 at 8:45 am
// FAILED:
EXEC sp_addrolemember db_datareader, $(DatabaseUserName)
EXEC sp_addrolemember db_datawriter, $(DatabaseUserName)
REVOKE DELETE
ON $(DatabaseName)
FROM {$(DatabaseUserName)}
* Is the syntax correct?
* Is there anything problematic with this approach?
When I ran...
March 16, 2013 at 6:57 pm
clintonG (3/16/2013)
You could grant the user insert and update permission on the schema the objects reside in.
I was going to try it this way:
EXEC sp_addrolemember db_datareader, $(DatabaseUserName)
EXEC sp_addrolemember db_datawriter, ...
March 16, 2013 at 6:47 pm
You could grant the user insert and update permission on the schema the objects reside in.
I was going to try it this way:
EXEC sp_addrolemember db_datareader, $(DatabaseUserName)
EXEC sp_addrolemember db_datawriter, $(DatabaseUserName)
REVOKE...
March 16, 2013 at 6:06 pm
Perry Whittle (3/16/2013)
clintonG (3/14/2013)
March 16, 2013 at 1:12 pm
Viewing 15 posts - 1 through 15 (of 25 total)