Viewing 15 posts - 421 through 435 (of 927 total)
You need to share more detail regarding your issue, sample information if possible so we could understand what is causing the issue.
One point thou, If you are calculating something inside...
September 11, 2014 at 12:13 am
Msg 217, Level 16, State 1, Procedure procAddFirmWithAbbreviationNameStateEmail, Line 65
Maximum stored procedure, function, trigger, or view nesting level exceeded (limit 32).
Its self explanatory, you should better check the procedure source...
September 10, 2014 at 1:15 am
Woww .... to many nested While loops 🙂
Nice question, as its reminded the nested loop depth. Thanks for sharing.
I wonder what Jeff Moden have to say about this ... ...
September 10, 2014 at 12:53 am
Priya004 (9/9/2014)
Thanks twin devil..this what im looking for..it helped meOne doubt is that how will a case stmt work in dynamic sql without being in quotes
Let me clear you on...
September 10, 2014 at 12:19 am
for a moment i was like :w00t:
I suppose script is not unit tested 😛
September 9, 2014 at 5:14 am
Excellent solution shared by Eirikur. i should avoid sharing not recommended solution in the future.
Just to let you know and other information regarding the namespace. Please do make sure...
September 9, 2014 at 4:52 am
just to give you idea:
Declare @Xml as xml = Replace(
'<ClinicalDocument xmlns:sdtc="urn:h12-org:abcd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:h12-org:v3">
<realmCode code="US" />
<typeId extension="POCD_HD000040" root="2.16.840.1.113883.1.3" />
<templateId root="2.16.840.1.113883.10.20.22.1.1" />
<id root="226ff30f-3b1f-11e3-a969-005056bb0109" />
...
September 9, 2014 at 1:22 am
you are welcome.
September 8, 2014 at 5:12 am
kbhanu15 (9/8/2014)
hi ALl,can you please provide the possible ways to do this task.
Easiest would be to use Import Wizard of sql server, fetch the data from the source
create a staging(new)...
September 8, 2014 at 4:59 am
ok, so now can you share how you are doing it on SSIS, as its works on teh avaliable meta data for a given object. i-e, if the SSIS see...
September 5, 2014 at 7:59 am
xrapidx (9/5/2014)
SQL2008R2
I have a source that uses change tracking - we need to pull through and handle deletes on the target.
1.) The target...
September 5, 2014 at 6:19 am
DrKiller (9/4/2014)
CTEs doesn't ALWAYS need a semi-colon in front.
This for example works fine:
DECLARE @tmpVariable INT
WITH cte
AS
(
SELECT 1/0 as 'Result'
)
SELECT *
FROM...
September 4, 2014 at 4:01 am
Viewing 15 posts - 421 through 435 (of 927 total)