Viewing 15 posts - 1,621 through 1,635 (of 1,995 total)
the following is the section from books online:
basically the system that worked in 2000 should work in 2005 as it's implemented by e-mail - the problem we're having is that...
May 26, 2006 at 3:19 am
so the pager alerts in 2005 aren't the same as the email pager alerts in 2000?
May 26, 2006 at 3:12 am
i've just had the same problems on a new install - i think it relates to the priveleges of the SERVICE ACCOUNT - not your login account.
May 25, 2006 at 9:43 am
I usually resort to one of the following
pig headed stubborness
obfuscating database code
boring them to death (ok - that's not hard)
or my favourite so far has been in sql 2005 -...
May 25, 2006 at 7:51 am
run the following
select name from sysobjects where name like '%mytable%'
you should see a list of all the constraints in there somewhere. the create statement will have defaulted it to...
May 22, 2006 at 3:54 am
select table1.*,table2.* from table1 inner join table2 on table1.site_ref=table2.site_ref
May 22, 2006 at 3:33 am
the problem we're seeing with 2003 is not a network issue, it's a casae of outlook 2003 jsut not behaving the way 2000 used to.
the problem is really evident when...
May 22, 2006 at 2:47 am
i've seen this behaviour on betweens before.
try using where Ticks.Tick_Price = @Triggered_Price AND
Ticks.Tick_DateTime >= @Triggered_Datetime AND
Ticks.Tick_DateTime<=(dateadd......
no idea why it fixed the problem but it did - possibley something to do...
May 19, 2006 at 9:34 am
we have a similar problem in that a few of our outlook 2003 installations take a long time to initialise. this causes sql agent to hang.
interestingly enough - these 2003...
May 19, 2006 at 9:26 am
this really depends on your table structure
if you have an id column in the table (as primary key) then it's pretty easy
basically your first query returns the top 1 record
the...
May 12, 2006 at 10:18 am
just one i made up to demo the principal
you need to order the results in some sort of order to be able to effectively say this is the 101st record...
May 12, 2006 at 8:41 am
just a though. you're using labels to show this data - not text boxes?
but i'm guessing since you're getting #name thats not the problem.
looking at it though - you're using...
May 12, 2006 at 8:39 am
use a union query
select cutomer_id,max(orderdate) from mytable group by customer_id
UNION
select customer_id,max(orderdate) from mytable where custorders.id not in
(select id from custorders where ..........
May 12, 2006 at 8:01 am
i always use convert(varchar(11),getdate()) to put the value out in a real date format.
then convert it back to datetime
hence
select convert(datetime(convert(nvarchar(11),getdate()))
returns '12-may-2006 00:00:00'
May 12, 2006 at 7:56 am
not sure if this is right - but you might have to use
dim param1 as NEW adodb.parameter
although after a beer at lunch i'm not sure
May 12, 2006 at 7:51 am
Viewing 15 posts - 1,621 through 1,635 (of 1,995 total)