Viewing 15 posts - 13,366 through 13,380 (of 13,841 total)
That is somewhat clearer, though I am still a bit puzzled about how you are prepared to wipe all of the data that exists in some of the tables in...
August 11, 2005 at 6:07 am
To get those results, what did you put in @StartDate and @EndDate? Was it 1/8/2005?
August 11, 2005 at 5:49 am
I presume that you are not capturing the changes themselves - you just know what tables are affected and want to send those to your 'live' server? This sounds a...
August 11, 2005 at 3:49 am
OK - we're going to have to go into a bit more detail then. Can you please post examples of the query that you are using, the source data, the expected...
August 11, 2005 at 3:36 am
But the left() function returns a varchar, not a datetime, so there's something strange going on here ![]()
Perhaps your problem is linked to the...
August 11, 2005 at 2:59 am
It seems that you are not sure of the root of the problem - is it VB, or is it SQL Server? I suggest that you run Profiler to see...
August 11, 2005 at 2:15 am
So can you write the SELECT query for the unrelated table separately? Eg something like this:
select CMclientName
from SCHOOLNET.dbo.clientmaster
WHERE CMclientName = 'whatever'
If you can,...
August 10, 2005 at 9:50 am
In Enterprise Manager, expand Management, right click on SQL Server Agent and select properties. You'll be able to change the logon properties for the SQL Server Agent service there.
August 10, 2005 at 8:21 am
Have you run the stored proc with the debugger? It might shed some light on things.
Regards
August 10, 2005 at 8:18 am
Or this
declare @m as money
set @m = 200.2365
select round(@m,2,1)
It does the rounding that you want, but leaves the 4 dps.
August 10, 2005 at 8:13 am
This link might be relevant:
http://support.microsoft.com/default.aspx?scid=kb;en-us;275847&sd=tech
August 10, 2005 at 5:59 am
Viewing 15 posts - 13,366 through 13,380 (of 13,841 total)