Viewing 14 posts - 1 through 14 (of 14 total)
select YEAR(DATEADD(m,3,RegistrationDate)) as Fyear
,MONTH(DATEADD(m,3,RegistrationDate)) as Fmonth
This seems to be cool technic. Thanks for posting.
August 7, 2012 at 9:20 am
Thanks to Jack, Grant and Paul for thier invaluable input. As I started learning Relational database, I did had all the foreign key relations defined. But over a period of...
May 11, 2009 at 7:45 am
"what is interesting is that every time I tried this, the procedure that I called later completed first and had the smaller OrderID, although when we call the same procedure...
March 18, 2009 at 11:15 am
Since you have already tried to debug and provided so much information, I am just curious to know whether you tried running the procedure which you have run on machine...
March 18, 2009 at 7:39 am
I am not sure whether I could help you with finding out the reason why it is happeing. But I would suggest to put 'If ' statement and return 'NULL'...
March 17, 2009 at 1:49 pm
As far as SP is concerned all seems good. Maybe you can tweak it a bit to improve on performance.
1) You could store the getdate() in a variable and...
March 16, 2009 at 2:44 pm
Try this
CREATE procedure proc1
@orderstatus VARCHAR(15),
@orderdate DATETIME,
@createdate...
March 16, 2009 at 2:25 pm
I was wrong in answering the question. But to me it seems that Procedure name 'GO' is not the cause of concern. If I put something like this
CREATE PROC GOT...
March 16, 2009 at 1:09 pm
correct me if I am wrong. The error which you are getting is
'Data source provider error: The conversion of a char data type to a datetime data type resulted...
November 29, 2006 at 12:07 pm
Possibly it could be the date format which is causing the issue. When the data is in table it's taking the date format correctly.
November 28, 2006 at 7:52 am
I also feel that what steve has mentioned is correct. As lot of changes has happened between AS2K and AS2K5 it may not be possible to restore directly. If you...
November 28, 2006 at 7:37 am
When you say front end log does that mean your own log, if so then I would suggest to run the profiler and try inserting from front end & then...
November 28, 2006 at 7:23 am
Although I don't have a perfect answer to this but I would certainly try out the following things
1) Try to find the first job which hangs in your new env...
November 28, 2006 at 7:09 am
Viewing 14 posts - 1 through 14 (of 14 total)