Viewing 15 posts - 16 through 30 (of 47 total)
Sean Lange (2/17/2011)
[control] + [shift] + [r]This will refresh the intellisense.
Is this the point where I should facepalm my self and shout Doh! in my best Homer Simpson Impersonation?
DOH!
Since about...
February 17, 2011 at 2:50 pm
I started my career as dba, and in the mean time discovered that my true calling is in fact development.
Now if my dba disables select * from any of my...
February 11, 2011 at 2:28 pm
Lol, I know I have done this twice in my life. 1st time was on the dev box on a restore of production, so I could simply run a update...
January 25, 2011 at 1:23 am
Thanks, and to you guys as well!
as for the work-call free weekend.... yeah right!
It's Christmas eve in SA already, and every one is having dinner with families etc... and me......
December 24, 2010 at 7:15 am
The error line was Order By
Reasaon for that is that Order By is not allowed in function.
However the client requirement was only that the warehouse be listed 1st.
So what...
July 20, 2010 at 1:30 pm
Thanks for this. I nearly used this function.
April 14, 2010 at 11:46 pm
Hi,
Yes, I am in 2000.
We have started discussions for the new version of the application, and this will run on 2008, but we have not even started flowcharting yet. This...
November 11, 2009 at 11:59 pm
Exactly like that, allthough the time part is not that important.
The prices are only updated once every 6 months or so and I will most likely trim and convert...
November 10, 2009 at 10:32 pm
thanks.
I cannot reallypost the code as it does not belong to me.
Here is a modified version:
delete from ReportDetailTable
where ReportDetailTableID in (Some SubQuery, not to complex)
PS there is a cursor, but...
October 8, 2009 at 1:43 am
my 2c on why this is happening...
It became simply too easy to ask something on a forum, or search it on google.
Welcome to the New Generation of IT.
If you can...
September 22, 2009 at 11:39 pm
Gianluca Sartori (9/10/2009)
Would renaming Priotity to Priority fix the issue?
DECLARE @PriorityAmount table (
Amount Decimal(18,2)
,Priotity int) -- shouldn't be Priority??
DOH!
Do I feel like like an idiot or do...
September 10, 2009 at 6:46 am
Ok one more question.
How to i turn this if around to look from the other anlge?
Declare @RetailDateFrom datetime
Declare @RetailDateTo datetime
Set @RetailDateFrom = '2008-07-01 12:00:00'
Set @RetailDateTo = '2008-07-28 12:00:00'
if (@RetailDateFrom...
July 28, 2009 at 1:35 am
This is what I have, but it always prints success.
Declare @RetailDateFrom datetime
Declare @RetailDateTo datetime
Set @RetailDateFrom = '2008-07-01 12:00:00'
Set @RetailDateTo = '2008-07-28 12:00:00'
if ((@RetailDateFrom is null) AND (@RetailDateFrom is null))
OR ((@RetailDateFrom...
July 28, 2009 at 1:09 am
can a moderator please delete one post of the duplicates. After posting, I got an error:
The following error occurred...
Sorry the application encountered an unexpected error. Information about...
July 28, 2009 at 12:39 am
Ok So I'm sure some one will send an assasin my way for saying this, but:
Cursors are not always evil, and will certainly help in this instance!
You can then simply...
July 8, 2009 at 11:53 pm
Viewing 15 posts - 16 through 30 (of 47 total)