Viewing 15 posts - 8,281 through 8,295 (of 9,643 total)
When setting up a database mail profile you only setup 1 account as the FROM account. I think what you want is to set up an Operator to email...
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
July 24, 2008 at 7:44 am
Grant,
Good question. I found the chapter of the book on MSDN on-line and here is the paragraph:
"The file provider is designed with a guarantee that no event data...
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
July 24, 2008 at 7:31 am
That is what the multivalued parameter is for. You need 2 datasets in your report. Dataset 1 will return a list of employee names and ids and dataset...
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
July 24, 2008 at 7:18 am
david.sims (7/23/2008)
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
July 23, 2008 at 8:45 pm
Grant Fritchey (7/23/2008)
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
July 23, 2008 at 8:25 pm
Are you using SSRS 2000 or 2005? In 2005 you can create a Multi-Value drop-down list parameter that passes a commas delimited list. In your Report you would...
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
July 23, 2008 at 2:30 pm
Here are a couple of T-SQL options:
[font="Courier New"]IF @ActionID IS NULL -- or @ActionId = [DefaultValue]
BEGIN
SELECT
*
FROM
dbo.Actions
END
ELSE
BEGIN
SELECT
*
FROM
dbo.Actions
WHERE
ActionID = @ActionId
END
-- OR
SELECT
*
FROM
dbo.Actions
WHERE
ActionId = CASE
WHEN @ActionID IS NULL THEN @ActionID--...
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
July 23, 2008 at 2:13 pm
I just ran these procs I created to answer another forum question in AdventureWorks:
[font="Courier New"]ALTER PROCEDURE temp_table_test_1
AS
CREATE TABLE #test
(
test_id INT IDENTITY(1,1),
test NVARCHAR(50)
)
INSERT INTO #test
(
test
)
SELECT
name
FROM
production.product
SELECT * FROM #test
EXEC temp_table_test_2
SELECT *...
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
July 23, 2008 at 2:04 pm
spamhdp (7/23/2008)
I am pretty sure I have seen this behavior on my SQL. I mean, update a value, query it and have the old value for a few seconds, and...
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
July 23, 2008 at 1:56 pm
You could put a textbox on the report and set the visibility (Hidden Property) by checking the value of the parameter like this =IIF(Parameters!test.Value = "x", False, True) and set...
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
July 23, 2008 at 1:44 pm
You cannot pass a temporary table to a stored procedure. You can create a temporary table in stored procedure 1 and then manipulate the data in the temporary table...
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
July 23, 2008 at 1:24 pm
kayuca (7/23/2008)
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
July 23, 2008 at 10:02 am
Andy,
Good advice from both Grant and Herve. You should also know that you can use Profiler to create the trace, script it, and then run it on the server...
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
July 23, 2008 at 9:51 am
In SSMS connect to a server using Object Explorere then Go to SQL Server Agent -> Jobs. Right-click -> New Job, etc..
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
July 23, 2008 at 9:32 am
Cross post. Original here: http://www.sqlservercentral.com/Forums/Topic539362-145-1.aspx
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
July 23, 2008 at 9:03 am
Viewing 15 posts - 8,281 through 8,295 (of 9,643 total)