Viewing 15 posts - 2,821 through 2,835 (of 5,394 total)
I guess you'd better do that on the AS/400 side: wrap the program call into a stored procedure and then call it from SQL Server.
I've always done it this way...
August 30, 2011 at 6:07 am
Nice article, Wayne!
And I also liked your post on the performance comparison on your blog.
Cool stuff. Thank you.
August 30, 2011 at 5:45 am
patelmohamad (8/30/2011)
Agree with you but in Asp.Net application we holds the data in DataTable,List or Dataset Basically the Data holder and then display in grid, my question is same...
August 30, 2011 at 3:24 am
Glad to hear you solved your problem!
You could have seen it clearly from the execution plans, by the way.
This is why it's so important to always include actual execution...
August 30, 2011 at 3:21 am
Jeff Moden (8/29/2011)
Steve Jones - SSC Editor (8/29/2011)
Anyone see plagiarism here:http://www.sqlservercentral.com/articles/context_info()/74332/
http://www.thecodepage.com/post/TIP-A-Call-Stack-in-SQL-Server.aspx
I wish I could say "Yes" to try to help the person feeling infringed upon but, No I don't....
August 30, 2011 at 3:18 am
You can set it up from the alert configuration applet, in the "Response" tab.
You can either run a job or email an operator (or both things).
August 29, 2011 at 6:22 am
Nice article!
I've been using this trick for years and I must say it works quite well. The only thing I don't like about it is the need to add custom...
August 29, 2011 at 6:19 am
Another method:
WITH Test(TestField) AS (
SELECT 'aaa'
UNION
SELECT...
August 26, 2011 at 9:37 am
Grant Fritchey (8/26/2011)
Putting together an article on the most common backup errors (apart from not having one) and how to avoid them. I have four...
August 26, 2011 at 9:33 am
Ignacio A. Salom Rangel (8/26/2011)
Gianluca Sartori (8/26/2011)
SELECT DB_NAME() AS database_name,
PR.name AS principal_name,
PE.permission_name,
...
August 26, 2011 at 6:51 am
Maybe an explicit deny?
SELECT DB_NAME() AS database_name,
PR.name AS principal_name,
PE.permission_name,
OBJECT_NAME(PE.major_id) AS object_name
FROM sys.database_principals...
August 26, 2011 at 6:19 am
August 26, 2011 at 5:42 am
I mean under database users.
Do you have a database user for any of those logins in the group?
August 26, 2011 at 5:39 am
SanDroid (8/25/2011)
Steve Jones - SSC Editor (8/25/2011)
Leave...
August 26, 2011 at 2:46 am
However, you should see a database user for each single user in the windows group. Have you tried deleting them?
August 26, 2011 at 2:35 am
Viewing 15 posts - 2,821 through 2,835 (of 5,394 total)