Viewing 15 posts - 9,826 through 9,840 (of 13,880 total)
mahavidhya24 (6/11/2013)
Cross apply is very difficult than join ...i think there is no data available depends upon your requirement give the table of contents connected with this query.
Please explain what...
June 11, 2013 at 11:49 pm
There is an alternative way of doing this - you might like to check to see whether it performs any better:
with maxJournal
as (
select ClientId
,JournalId = MIN(JournalId)
from Journal
group by ClientId
)
select *
from...
June 11, 2013 at 11:47 pm
mrtrich99 (6/11/2013)
Lidou123 (6/6/2013)
Hi,I have the same problem.
Did you found the solution ?
How to prevent the creation of a folder which already exists
I have not. I just manually rename the...
June 11, 2013 at 11:29 pm
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
Viewing 15 posts - 9,826 through 9,840 (of 13,880 total)