you have an entire table for what is essentially 1 column?
Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks
you have an entire table for what is essentially 1 column?
Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks
not if its a StringBuilder
Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks
it will stop, but only beacuse your email is gone.... because you are gone.
Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks
my favorite aspect of MSDN is the way google is the best method for searching it :)
Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks
ahhh stupid me, forgot about fetch
DECLARE SalesYearCursor CURSOR FOR
SELECT * FROM #tmpSalesYear
OPEN SalesYearCursor
FETCH NEXT FROM SalesYearCursor
INTO @Percent,@xxxxx,@xxxxx,@xxx
WHILE @@FETCH\_STATUS = 0
BEGIN
SET @Current = @percent + @previous
SET @previous = @Current
UPDATE #tmpSales SET Roll = @Current
WHERE Percentage = @percent
AND SalesYear = @year
FETCH NEXT FROM SalesYearCursor
INTO @Percent,@xxxxx,@xxxxxx,@xxxxxx
END
CLOSE SalesYearCursor
DEALLOCATE SalesYearCursor
EDIT: removed names that identify business :)
Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks
I have a table that looks like this:
11
28
18
.
.
.
i'm trying to roll up the values so it would take the value and add it to the previous sum of all the rows above it
11
39
57
.
.
.
I am having the hardest time, any ideas?
Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks
is this guy judging the performance of the OS based on how many threads its using?
Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks
ITIL is a way for large corporations to keep MBA's in business.
Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks
I'd suggest Miller or Red stripe then :)
Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks
Hey i never knew about that, really cool!
Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks
From my experience OpenGL has always been the quickest to get something up and working, however that is C++ so it may not fit your purposes. Though its been several years since i've touched Direct X, and I Know they've made quite a few significant changes so it might be something worth wild to look into.
Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks
VMWare will have the better performance most likely, but as john mentioned your hardware is quite lacking, and i say this as a guy who spent the last year working on a virtualization platform based off virtual server (which is based off virtual pc) on a side note, some of my testing with the new Hyper V, really impresses me :) i'm very excited for the direction it is going. Although i will rant about the fact that they took away my interop dll for the COM interface, and replaced with WMI (which makes C# programming super difficult in comparison) but they made up for it when i saw what the new Hyper Call library is capable of!!
Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks
Is there a LISP.NET yet? if so i choose that
Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks
i use letters all the time for couters in a for loop, do you hate that?
for(int i = 0; i < this.k; i++){
MarcClifton.Anger++;
}
Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks
In my opinion Autism is the new popular diagnosis, much like ADD was in the 90's (Its almost impossible to know for sure, but there were countless kids who were prescribed riddlin that most likely did not need it)
Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks
It's really not an issue until it becomes maladaptive. If you were late to work because you needed to go home because you can only remember checking your house lock twice.. then it might be an issue.
Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks
looks like code that at one time did something, but then got changed but never cleaned up
Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks
I saw the title, and thought oh yay a post about Beer!! but alas i was wrong :(
Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks
How could people have missed SQL 2008... It has Upsert!!
Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks