Viewing 15 posts - 5,146 through 5,160 (of 9,643 total)
I have to disagree with Greg on this one. Create a role that has the necessary permissions and assign the user to the role. The db_datareader and db_datawriter...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 8, 2009 at 6:50 am
Is it an embedded sub-report or a link to another report?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 8, 2009 at 6:47 am
Well, since you are setting the stop time to 5 minutes I would venture to say that you are only collecting 128KB of data and would never fill a 5MB...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 8, 2009 at 6:40 am
Great article Bill. As with most good articles you read it and say "Yeah, that makes sense", but then you realize how many times you leave out some of...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 8, 2009 at 6:28 am
Lack of understanding the SQL Server security model. Using sa or putting everyone in the dbo or datareader and datawriter roles. SQL in the application not in stored...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 8, 2009 at 6:23 am
Check out this article[/url] by Brian Kelley.
No offense to MS but Brian's solution is better than the MS one. sys.dm_exec_sessions can be spoofed by the Workstation ID and EventData...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 7, 2009 at 3:02 pm
You have to be wary of the logon trigger approach because client host can be set in the connection string of the application. So a "smart" person could spoof...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 7, 2009 at 1:26 pm
Lynn Pettis (5/7/2009)
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 7, 2009 at 9:43 am
Okay, I used RedGate SQLGenerator to put 100,000 rows in the table and ran these 3 queries which all returned the same results:
DBCC FREEPROCCACHE()
DBCC DROPCLEANBUFFERS()
SET STATISTICS IO...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 7, 2009 at 9:32 am
I don't know of any way to do this within SQL Server. You could do it with a rule in a firewall.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 7, 2009 at 8:47 am
Declare @filename nvarchar(245),
@rc Int,
@TraceID Int,
...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 7, 2009 at 7:52 am
Wouldn't this return the same thing?
Select
max(id) as id
From
tbl_logs
Where
date between '2009-05-06 00:00:00' and '2009-05-06 23:59:00'
Group By
fk_tbl_visits_id
Please take a look at the first article linked in my signature and post...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 7, 2009 at 7:45 am
John,
I'm glad the code I provided was helpful, but I did ask for more information the same as Lynn
Can you post some sample data and what the desired result is?
The...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 6, 2009 at 7:07 pm
Bob Hovious(5/6/2009)
If you want a weird programming language, look at Whitespace.
Is that band still touring? I thought they broke up.
"Here I go again on my own"
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 6, 2009 at 3:02 pm
Well ACCESS does support OUTER JOIN's so you could use a LEFT OUTER JOIN. The LEFT OUTER JOIN would work in SQL Server too, but EXCEPT is easier.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 6, 2009 at 2:55 pm
Viewing 15 posts - 5,146 through 5,160 (of 9,643 total)