Viewing 15 posts - 19,861 through 19,875 (of 26,490 total)
The points showing in forum posts is accurate where as the points on the Member scores and standings page are inaccurate. Will these be properly synced?
July 9, 2009 at 10:38 am
Unless you have a field that tracks the order that records are inserted )and is used to help order) and the columns you are sorting on are duplicates, there is...
July 9, 2009 at 10:28 am
Being based on SharePoint should actually make it browser independent, at least that is one of the things I got out of our training a couple of weeks ago.
I'll check...
July 9, 2009 at 10:25 am
I'd look at building a view over the code table in SQL Server 2008 that casts the dates from a datetime2 value to a datetime value, then use that view...
July 9, 2009 at 10:18 am
Try running this command where is the path (without the angle brackets but possibly double quoutes if there are spaces in any of the directory names) to your backup...
July 9, 2009 at 6:49 am
There are books written on this subject, there is no real way for us to provide you with all the information you are requesting.
I would start by searching the Microsoft...
July 9, 2009 at 6:42 am
You get points not only for posting questions and answers on the forums but also for correctly answering the Question of the Day. You can see the top leaders...
July 9, 2009 at 6:31 am
The DELETE button was disabled after an incident in one of the threads where posts had been deleted.
July 8, 2009 at 10:18 pm
Jan Van der Eecken (7/8/2009)
Lynn Pettis (7/8/2009)
Jan Van der Eecken (7/8/2009)
You guys just darn post too quickly, even if the likes of Barry and Steve are off on holiday, and...
July 8, 2009 at 10:09 pm
Jan Van der Eecken (7/8/2009)
You guys just darn post too quickly, even if the likes of Barry and Steve are off on holiday, and Lynn has headed off throwing yellow...
July 8, 2009 at 5:14 pm
Your code:
update invoices
set invoices.net = (select sum(trans.ipay)
from trans join invoices on trans.invno=invoices.invno
where invoices.invno = trans.invno)
What you want:
update invoices set
net = sum(t.ipay)
from
invoices i
...
July 8, 2009 at 4:15 pm
Multiple post, please post replies here.
July 8, 2009 at 4:11 pm
Viewing 15 posts - 19,861 through 19,875 (of 26,490 total)