Viewing 15 posts - 4,441 through 4,455 (of 5,504 total)
Step 1:
get the Export working outside of the job using your preferred way (e.g. from SSMS and save the export as SSIS package or use bcp or whatever).
Step 2: wrap...
January 23, 2010 at 3:07 am
I cannot confirm what you describe. Please provide sample data that allow us to verify the scenario. The following works just as expected (no output):
DECLARE @t TABLE (CodeName CHAR(2), ...
January 22, 2010 at 4:15 pm
CirquedeSQLeil (1/22/2010)
January 22, 2010 at 4:07 pm
I'm at the customer side (at least at the moment).
The statement
miscommunications with the client's client
indicates to me that you've been hired as a subcontractor.
If there would have been...
January 22, 2010 at 3:28 pm
Pac123 (1/22/2010)
January 22, 2010 at 3:05 pm
Would you mind to provide table def, some sample data and expected result? Please have a look at the first article in my signature on how to do it the...
January 22, 2010 at 2:13 pm
Based on your statement
i can modify the source data.
I assumed you'd be able to convert it into "real" xml format.
I tried to use the html format and...
January 22, 2010 at 1:51 pm
If you could get the source data in xml format it'll be an easy task to do...
DECLARE @t TABLE (ID INT , Conten XML)
INSERT INTO @t VALUES(1, '<a id="AB123">sometext </a><a...
January 22, 2010 at 1:11 pm
lcibert (1/22/2010)
Lutz,First of all, thanks for your reply, and sorry for not putting the creation code for the data, I didn't realize about that.
Now...
January 22, 2010 at 12:31 pm
Before trying to resolve this issue one question:
Would it be possible to store the data in xml format instead of html?
Reason:
String parsing is dangerous since it might lead to unexpected...
January 22, 2010 at 11:57 am
Maybe something like this?
Note 1: I used the tally table as described in the related link in my signature to generate the weeks
Note 2: You may notice that this year...
January 22, 2010 at 11:44 am
If you still get the same error that basically means that you the procedure "Student_InsteadOf_Del_Trg" is stilled called (maybe by another trigger?)
Just being curious (I noticed line #308 for the...
January 22, 2010 at 11:37 am
DECLARE @v VARCHAR(30)
SET @v='CA*461*NN'
SELECT LEFT(@v,LEN(@v)-3)
January 22, 2010 at 10:34 am
Viewing 15 posts - 4,441 through 4,455 (of 5,504 total)