Viewing 15 posts - 5,746 through 5,760 (of 9,643 total)
IN SQL Server 2005, typically, objects are not owned by users anymore they are owned by schemas, although a user CAN still own an object, you have to do some...
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
March 6, 2009 at 1:08 pm
Vic,
Thanks for answering my questions. Unfortunately there is no way that I am aware of to tell Profiler or SQLTrace to run DBCC INPUTBUFFER or any other query based...
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
March 6, 2009 at 11:14 am
Can you clarify what version of SQL Server you are using? You have posted in a SQL Server 2000 forum, but have used the sys.schemas system view which does...
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
March 6, 2009 at 10:50 am
What are the details you want to get about the SPID? Do you want to filter by SPID or do you want details for each SPID?
What events are you...
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
March 6, 2009 at 9:38 am
Are you using the @body_format parameter and setting it to 'HTML' like this:
EXEC msdb.dbo.sp_send_dbmail @recipients = 'your_name@your_company.com', @subject = 'test',
@body_format = 'HTML', @body = '<b>Test</b> This works'
edit:...
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
March 6, 2009 at 9:34 am
This will work without a CASE and will change any year to 2009 if the MAX(expiry_date) is not 2003 or 2006.
USE tempdb;
GO
DECLARE @test-2 TABLE(induction_no CHAR(5), access_code INT, expiry_date SMALLDATETIME)
INSERT INTO...
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
March 6, 2009 at 9:21 am
t.walker (3/5/2009)
because noone can read 250 pages of contributions
I have, but then again I've been here since day 1 and I've been amazed when I go off-line for a couple...
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
March 5, 2009 at 6:39 pm
I guess I would wonder why it can't be both? I was one of the people who knew little when I first joined SSC, and while I don't think...
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
March 5, 2009 at 6:37 pm
GSquared (3/5/2009)
For example, there have been plenty 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
March 5, 2009 at 2:57 pm
GSquared (3/5/2009)
That's exactly why I don't like the "ratings systems" used by certain sites. The people you help mostly just read it, try it, like it, and never come...
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
March 5, 2009 at 2:17 pm
That's how I'd do it with Express edition. Someone else may have a better solution.
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
March 5, 2009 at 9:18 am
Ahhh, Express edition does not support Database Mail, http://msdn.microsoft.com/en-us/library/ms165636(SQL.90).aspx.
In this case you would need an outside process to generate the email. I would probably create an email_queue (id, Call_Num,...
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
March 5, 2009 at 9:10 am
The code you posted is missing a space between sp_configure and @configvalue.
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
March 5, 2009 at 8:41 am
You can see if database mail is enabled by running this:
sys.sp_configure @configname = 'Database Mail XPs'
This will return something like this:
name ...
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
March 5, 2009 at 8:19 am
Basically to use SourceSafe with your DB you need to script out any DB objects you want to put in SourceSafe, add them to a SourceSafe project, and then discipline...
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
March 5, 2009 at 7:28 am
Viewing 15 posts - 5,746 through 5,760 (of 9,643 total)