Viewing 15 posts - 1,621 through 1,635 (of 1,999 total)
I'm lucky in that i'm both developer and DBA as well. (primarilly DBA tho)
i think the problem lies in the mentality difference between developers and DBA's
if you think of the...
May 26, 2006 at 3:44 am
what account run the replication on the subscriber (if it's pull) or publisher (if it's push) - does this account have permission to use this.
i'm guessing that your account...
May 26, 2006 at 3:30 am
SalesLineItem: (itemCode, quantity)
where is the reference to saleID
perhaps
SalesLineItem: (ID(PK),saleid(FK),itemCode(FK), quantity,)
May 26, 2006 at 3:26 am
just a thought
customers are an entity
Sales: (saleId,, customerID, amount, storied, saleBalance,
Customer: (customerID,mobileNo,CustomerName)
May 26, 2006 at 3:23 am
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
Viewing 15 posts - 1,621 through 1,635 (of 1,999 total)