Viewing 15 posts - 181 through 195 (of 449 total)
Into "all" tables. Does this include the system tables?
I would do this with two logins.
One login would have DDLAdmin, datareader, datawriter and this login would exist only...
April 14, 2010 at 5:56 am
The security vulnerability footprint is much higher when using dynamic sql over a properly written parametrized stored procedure.
I apologize to the original poster for getting off the "thread" topic.
April 13, 2010 at 6:41 am
mtaylor7210 63514 (4/9/2010)
Dynamic sql will allow you do exactly what you are wanting.
... but also opens you up to SQL Injection attacks.
April 13, 2010 at 6:21 am
Steve, you hit the nail right on the head. I totally agree with you.
April 13, 2010 at 6:05 am
No, it doesn't make sense. Adam has provided good guidance.
I cannot think of a reason why you would want to perform such actions.
April 12, 2010 at 6:16 am
Without seeing code, who knows?
Here's a guess: If it's an OLTP database maybe new records are being added or modified in between runs of the sproc and that's why...
April 9, 2010 at 7:51 am
SQLCompare
SQLDataCompare
Ultraedit
SSMS
SQLServerProfiler
April 9, 2010 at 7:46 am
Maybe referring to Lehman Brother's who filed for bankruptcy. Try talking to those guys!
April 7, 2010 at 11:00 am
Well, you're not disabling your "admin" login; just the user logins. Anyway, the OP doesn't think my suggestion will work.
March 31, 2010 at 6:28 am
Did the resource databse ever get updated?
SELECT SERVERPROPERTY('ResourceVersion');
select @@version
Both versions should be identical.
March 31, 2010 at 6:24 am
river1 (3/30/2010)
March 31, 2010 at 6:08 am
You say you really want to be a DBA, but it seems as though you're just looking to pass an interview. If you study hard using all sources (many...
March 26, 2010 at 6:41 am
Make sure the ResourceDb got upgraded. I had an issue where the install completing successfully but the ResourceDb never was upgraded. Totally weird because the install showed success....
March 25, 2010 at 8:43 am
You should start a server side profile trace prior to running the job. This will provide more information (ie: blocking, deadlocks). Currently, your post is too vague.
Some questions...
March 23, 2010 at 6:05 am
To check for the indexing:
You could always execute "sp_who2" into a temp table and check to see if there is an input_buffer with "DBCC DBREINDEX 'tablename'" for the tables that...
March 18, 2010 at 6:12 am
Viewing 15 posts - 181 through 195 (of 449 total)