Viewing 15 posts - 91 through 105 (of 240 total)
So, was the purpose of this article to make us feel holier than people who know less than we do, or inferior to those who know more?
August 18, 2005 at 9:15 am
> up to 100 instances
Yikes!
I would start with making a list of all the server names I had to process against (in a table, a temp table, or a cursor),...
August 15, 2005 at 10:21 am
Substitute this line of code after the "IF LEN (@Datefrom)...BEGIN":
Set @SQLString = @SQLString + ' AND crdate BETWEEN ' + CHAR (39) + CONVERT (VARCHAR, @DateFrom, 101) +...
August 15, 2005 at 9:40 am
I don't think there is any way, short of using dynamic T-SQL to recompile the procedure, to alter the number of parameters that a T-SQL procedure accepts. However, you can...
August 15, 2005 at 6:51 am
Well, you might try setting up a domain user with permissions to run everything you need on all the servers, and set this domain user up as the owner of...
August 11, 2005 at 12:48 pm
Security in computers is like gravity in physics. In small amounts, it's easy, almost inconsequential. In large amounts, it completely dominates everything around it. It's one of the hardest things...
August 11, 2005 at 12:20 pm
That sounds like an application issue, and I've probably helped as much as I can safely do so. But that's never stopped me before. You can either proceed to give the login...
August 11, 2005 at 12:01 pm
It sends an email to Bill Gates, and waits for his permission to run faster!
Just kidding. But it's amazing that an OS and a DBMS that together comprise a universe...
August 11, 2005 at 11:54 am
Sorry, Hammer, my fault. I saw "Query Analyzer" in your first post, and that's all I saw.
Maybe you can try using the NT-shell "FOR" command with the "text parser" option. I...
August 11, 2005 at 9:04 am
Yer right, Steve, she ain't much to look at.
Right now, though, I'm concerned that I just misread the whole requirement. I assumed he wanted to know how to do that...
August 11, 2005 at 8:47 am
Hmmmm.... I may be venturing into uncharted territory, so be advised.
I assumed your login was a network login that owns the MSSQLSERVER and SQLSERVERAGENT services on your database server and could...
August 11, 2005 at 7:35 am
I know a way. It ain't pretty. ("Don't look, Ethel!!!!")
August 11, 2005 at 7:03 am
Here's a Microsoft article on auditing:
http://www.microsoft.com/technet/security/prodtech/sqlserver/sql2kaud.mspx#EGAA
Otherwise, maybe there's a third-party app you could use. This one looks intriguing:
http://www.sql-server-performance.com/entegra_spotlight.asp
Their blurb says, "Entegra allows an administrator to audit virtually any...
August 10, 2005 at 2:47 pm
I'm not aware of any such thing as a SELECT trigger. It seems to me as if you're best (only?) option is to wrap a layer of some sort around...
August 10, 2005 at 11:46 am
You're halfway there. Running from the SQL server, you can execute 'xp_cmdshell' to spool off a job on the app server using the NT-shell "AT" command. I have such a...
August 10, 2005 at 9:37 am
Viewing 15 posts - 91 through 105 (of 240 total)