Viewing 15 posts - 166 through 180 (of 224 total)
I thought about that, but it just doesn't seem right. This is an isolated case, most Entry rows won't be inserted as scheduled transfers. Entry will be the largest table...
June 13, 2008 at 10:40 am
I've been trying to get around this problem too. I tried using the OUTPUT clause of the INSERT statement, but it didn't help me. The OUTPUT clause can only output...
June 13, 2008 at 9:10 am
It would be interesting to know if you can spawn threads in SQL CLR. SQL Server already has its own multi-threading load distribution in place for query processing.
It sounds like...
June 12, 2008 at 8:50 am
I've attached two files. Change their extensions to .cs (which is not a permitted attachment type). Add these to a C# class library project. (I always find it helpful to...
June 11, 2008 at 9:21 am
Well, I haven't tried to do what you're doing, but I have used Oracle via CLR (C# app, not from within SQL Server) and Service Broker, though not in the...
June 10, 2008 at 3:35 pm
You can use a calendar or tally table to provide all relevant dates then left join each view to that.
June 4, 2008 at 8:07 am
Excellent! This works:
SELECT C.transactionDate, S.entryId
FROM Schedule S, Calendar C
WHERE S.intervalId = 4
AND C.transactionDate >= S.nextDate AND (S.endDate IS NULL OR C.transactionDate <= S.endDate)
...
June 3, 2008 at 4:25 pm
The issue with the milliseconds would be an excellent Question of the Day!
May 23, 2008 at 9:13 am
You could use Service Broker to indirectly call the DLL. I've used Service Broker before for similar purposes (accessing serial ports), it works as advertised but has a steep learning...
May 22, 2008 at 9:50 am
I am feeling very charitable toward SQL Server right now. It's a great product!
Yesterday, I had to assist another developer in writing queries for MS Access, interpreting its useless error...
May 20, 2008 at 7:45 am
I'm going to vote for quality first.
Consistency is a form of quality. If a convention or practice is good enough to be enforced consistently, then it must be a quality...
May 16, 2008 at 7:57 am
Yes! Somebody, please kill Hungarian notation! There is no appropriate place for it, IMO.
Modern development environments have made Hungarian outdated.
First, there are too many types and scopes available. Developers...
May 9, 2008 at 1:27 pm
I didn't think I knew this, but I got it right! When I saw the possible answers, I realized I'd seen this symptom before and was able to deduce the...
May 1, 2008 at 7:51 am
I support giving users as much freedom to manage their own machines as they demonstrate they can handle. In my company, most of the employees are engineers, so they are,...
April 21, 2008 at 8:04 am
I think you have to escape the less than and greater than signs (angle brackets) as < and > or else everything in brackets is stripped out, thus the connection...
April 17, 2008 at 8:04 am
Viewing 15 posts - 166 through 180 (of 224 total)