Viewing 15 posts - 16 through 30 (of 727 total)
Yeah DouglasH, you are correct. I sorted out that point and bingo. Was not that complex but seems I need a coffee break. 🙂 Was stuck at this for some...
April 3, 2015 at 7:22 am
DECLARE @Expression VARCHAR(8000) = 'abcd_e_fgh',
@SearchString VARCHAR(10)= '_',
@OccuranceNumber SMALLINT = 5
DECLARE @SearchIndex...
April 3, 2015 at 7:21 am
Hi Eirikur, Thanks but this was a question with just an example. Actually it is a generic one. String could be anything and not just "abcd_e_fgh".
Though i've just sorted...
April 3, 2015 at 7:19 am
Thanks Gail & Conor for the clarification. That helps. 🙂
January 23, 2015 at 5:48 am
Thanks Gail. So any of these four exams can be given in any sequence (as per your choice ofcourse) ?
Additionally these four exams (464-467) cover both SQL 2012 & 2014...
January 20, 2015 at 12:18 am
Nope. I was getting following error in second spid (as per my presented scenario):
"Invalid column name 'Col5'."
And the name #Temp1 is taken here just for the example. Actually following naming...
November 14, 2014 at 5:17 am
To summarize, i've this simple procedure definition in one sql session.
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'dbo.testproc') AND type in (N'P', N'PC'))
DROP PROCEDURE dbo.testproc
GO
SET ANSI_NULLS ON
GO
SET...
November 14, 2014 at 5:01 am
I'm working in SQL server only
November 13, 2014 at 7:36 am
Ed Wagner (7/28/2014)
I'm lucky that we're still running 2008. 😛 Thanks for sharing the question.
Really that helped. Overall a good question. 🙂
August 5, 2014 at 3:26 am
Viewing 15 posts - 16 through 30 (of 727 total)