Viewing 15 posts - 1,621 through 1,635 (of 5,394 total)
April 24, 2012 at 4:33 am
I'm not 100% sure, but looks like you were bitten by a DBMail Wizard bug.
I suggest that you close all dbmail wizard windows and set it up...
April 24, 2012 at 4:31 am
raghu_ktm (4/23/2012)
Nice to see the solution here, In may case same issue with MSSQL Linked server, do you have any idea to solve this as well !
I am calling...
April 23, 2012 at 7:18 am
This should do the trick:
-- SETUP
DECLARE @Employee TABLE (
ExamID int,
EmpID int
)
DECLARE @QuestionPaper TABLE (
QuestionID int,
...
April 19, 2012 at 6:05 am
jitendra.padhiyar (4/16/2012)
April 16, 2012 at 10:24 am
I'm sorry, I didn't notice that.
Well, I guess you will have to re-install from scratch, then.
Sorry.
April 16, 2012 at 4:16 am
PIVOT can work on one column at a time.
You could pivot manually using a crosstab[/url].
If you're looking for some help on the forums, I suggest including table scripts, sample data...
April 16, 2012 at 4:08 am
Couple of questions:
1) Do you want users to connect to the same session via Remote Desktop? If so, it's impossible.
2) Do you have a Terminal Server license?
3) How does...
April 16, 2012 at 3:56 am
Developer to Standard is a supported upgrade path (see http://msdn.microsoft.com/en-us/library/ms143393(v=sql.105).aspx).
You just have to run the setup to change the edition.
April 16, 2012 at 3:50 am
It's a typical catch-all query. I recommend doing this with dynamic SQL.
See this post[/url] on Gail Shaw's blog for more info and a better solution.
April 16, 2012 at 2:46 am
Totally misread your question, sorry.
I thought you wanted to avoid the job failure...
April 10, 2012 at 3:42 pm
1) Yes
CREATE PROCEDURE usp_test_1
AS
BEGIN
PRINT '1'
END
GO
CREATE PROCEDURE usp_test
AS
BEGIN
EXEC usp_test_1
END
2) Yes
CREATE FUNCTION ufn_test_1()
RETURNS int
AS
BEGIN
RETURN 1
END
GO
CREATE FUNCTION ufn_test()
RETURNS int
AS
BEGIN
RETURN dbo.ufn_test_1()
END
3) No. The EXEC command is not allowed in functions.
4) Yes
CREATE PROCEDURE usp_test_2
AS
BEGIN
SELECT ...
April 10, 2012 at 7:44 am
Viewing 15 posts - 1,621 through 1,635 (of 5,394 total)