Viewing 15 posts - 61 through 75 (of 654 total)
my thinking is you can use the outlook programming model so you could probably use the .net runtime. create a dll which has the outlook calendar objects etc.. and add...
October 2, 2007 at 5:57 am
as an IT contractor, i find that I can keep my skills upto date by responding to peoples queries when the current contract does not use a lot of the...
October 2, 2007 at 5:50 am
oh well there is something to learn everyday
October 1, 2007 at 10:51 am
probably won't help much, but can you post a bit of the schema.
October 1, 2007 at 8:38 am
why?? I have never seen a case... being used in an Order by.
if you want to do that stuff the way you want i think you are better off...
October 1, 2007 at 8:34 am
the functionality you want is a function of the frontend controls, you might consider getting a hierachical datagrid or something along those lines like Infragistics.
but as for the sql, the...
October 1, 2007 at 8:29 am
probably a dumb question but is your DATASET a .net dataset or a set of data?
October 1, 2007 at 8:27 am
first find out why you can't override the tables. what error message are you getting etc.
to copy your tables you can either write your own sql or use of the...
October 1, 2007 at 8:23 am
Johann Montfort (10/1/2007)
Hi KennethI found my error.
...
I was repeating the same variable @HamTeamsID, when it was supposed to be @PosID!
Johann
so what worked?
October 1, 2007 at 5:01 am
never compare your column values to null because null is not necessarily equal to null
anyway try to change your code like so
IF @HamTeamsID is null SET @HamTeamsID = 0
IF...
October 1, 2007 at 3:52 am
its a good kind of bashing because it shows people want to help you . maybe we should have a status on posts to denote...
September 1, 2007 at 5:51 am
are you not using an order id, can't you use that to get the last orders?
as for your script try to alias your sub query i.e.
SELECT createdate AS ShipDate, TrackingNumber
FROM (SELECT...
August 29, 2007 at 4:12 pm
you can also have a look at your query execution path, to see were you can optimize
August 29, 2007 at 3:35 pm
SELECT TOP 2 createdate AS ShipDate, TrackingNumber
FROM shipments
WHERE a.customerid = 'dmo-con'
ORDER BY createdate desc
what errors are you getting when using the sub query?
August 29, 2007 at 3:31 pm
Viewing 15 posts - 61 through 75 (of 654 total)