Viewing 8 posts - 1 through 8 (of 8 total)
Wow - I was out of the office for a few days and this post went crazy!
Thanks for all the input. For now, I'll stick with the join syntax. I...
April 14, 2009 at 8:15 am
CREATE ROLE Support;
GO
DENY INSERT ON DATABASE::**Name** TO Support;
DENY UPDATE ON DATABASE::**Name** TO Support;
DENY DELETE ON DATABASE::**Name** TO Support;
DENY EXECUTE ON DATABASE::**Name** TO Support;
GO
Then make them members of the role. The...
April 3, 2009 at 7:52 am
I am with you - I generally change the owner to sa for all databases. I did run into a recent exception though. We installed some third-party software that required...
March 31, 2009 at 9:20 am
We are a transportation company - operational systems as well as payroll and accounting systems. Some are third-party apps but the majority are inhouse written apps created by our developers.
February 25, 2009 at 10:23 am
Jack Corbett (2/25/2009)
February 25, 2009 at 9:04 am
These are not small tables - they have 500,000-1,000,000 rows on them so the fragmentation is a problem. If I manually run the defrag on the tables after the loads,...
February 20, 2009 at 7:14 am
The tables are 90% fragmented after the load. My fill factor is set to 80% - these tables are loaded fresh nightly but are updated/inserted/deleted from throughout the day as...
February 19, 2009 at 3:39 pm
I am using the ODBC data provider. I have tried changing the RetainSameConnection property but this causes a validation error on my data reader.
For the new ADO.NET connector, I cannot...
February 3, 2009 at 4:51 pm
Viewing 8 posts - 1 through 8 (of 8 total)