PDA

View Full Version : thread in sql1 = thread in sql2


MrOnline
04-24-2006, 10:08 AM
just wondering if theres a way to check thread name vs thread name in a different sql...

And if they are different update it to the other unless yours thread date is newer than the other...

well i kinda figure it is possible using something like

if (sql1 thread.threaname WHERE thread.threadid = '197') != (sql2 thread.threadname WHERE thread.threadid = '298')

if sql1 thread.threaddate > sql2 thread.threaddate

//do nothing

else

set sql1 thread.threadname = sql2 thread.threadname

else

// do nothing

well thats the "outline" and i belive i've given away that i have no clue whatsover when it comes to coding/programming...

And ofcourse i have full access to both SQL's they are on same server..

filburt1
04-24-2006, 02:36 PM
What is your higher objective?

MrOnline
04-24-2006, 06:15 PM
we have 2 forums where most or well minimus 15forum's only have 1 thread, that thread are beeing edited like 20 times each day...

And say forum 12 on site 1 = forum 15 on site 2
both only has 1 thread and thoose are named the same..

But every now and then theres a change on site 2 that shouldnt be replicated back to site 1.. But if a change is done on site 1 it should be replicated to site 2...