Viewing 15 posts - 9,826 through 9,840 (of 13,874 total)
sarah.cook (6/6/2013)
I need to create an id from a nvarchar value that is repeatable, sort of like a checksum or a hash, except that it needs to be unique...
June 11, 2013 at 11:23 pm
I would add an OUTPUT clause to your DELETE query. Have a look at the examples here.
June 11, 2013 at 8:34 am
No problem and thanks for posting back.
June 11, 2013 at 7:34 am
You could try something like this:
delete a
from TableA a
where exists ( select 1
...
June 11, 2013 at 7:06 am
Here is the code for a script task to check for the existence of c:\temp1. If it does not exist, it is created.
public void Main()
{
string folderCheck...
June 11, 2013 at 6:23 am
Hello
You will find that you will get a much better response if you take the time to post your sample data and desired results in the form of readily...
June 11, 2013 at 6:09 am
How does the NULL appear in the flat file? Presumably one of
,"",
,,
,NULL,
June 11, 2013 at 5:07 am
eylenh (6/11/2013)
June 11, 2013 at 12:27 am
The StreamReader.Close() command calls the Dispose() command, passing a value of true (the Using() construct does the same thing). I have tried calling Dispose() and while it executed successfully it...
June 10, 2013 at 1:32 pm
homebrew01 (6/10/2013)
Do I need to save it as part...
June 10, 2013 at 1:25 pm
Is your package part of a solution? You need to open the solution, not just the package.
June 10, 2013 at 11:44 am
The fact that the larger files do not have the problem suggests that this is a timing issue rather than a logic/coding issue.
You could try calling .Dispose() rather than .Close()....
June 10, 2013 at 8:27 am
ChrisM@Work (6/6/2013)
ERIC CRUDELI (6/6/2013)
Jesus !!!He's gone home, there's just us geeks eating fish sandwiches and slugging Bordeaux.
--
Chris, reading this has made me feel queasy :sick: :hehe:
June 6, 2013 at 6:24 am
Something like this?
with msgTypes as (select distinct msgType from #t1)
select m.msgType, ADAM = a.MsgType, CDM = c.msgType
from msgTypes m
left join #T1 a on m.msgType = a.MsgType and a.Provider = 'ADAM'
left...
June 6, 2013 at 2:46 am
Do you know in advance what the column names will be? That is, does this have to be a dynamic query? The static version is easier to write ...
June 6, 2013 at 1:14 am
Viewing 15 posts - 9,826 through 9,840 (of 13,874 total)