Viewing 15 posts - 13,366 through 13,380 (of 13,838 total)
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
I think that table variables might give you what you need - they can be passed as parameters to/from stored procedures - try reading the on-line help and see how...
August 10, 2005 at 4:35 am
What do you mean by 'linked table'? Are you talking about a table residing in a linked server? Or perhaps you're using Access and have linked to a SQL Server...
August 10, 2005 at 4:12 am
I still think that the error is happening before processing gets to the
Set Excel_WorkBook = Excel_Application.Workbooks.Open(sFilename)
line. To prove it one way or the other, try changing sFilename to...
August 9, 2005 at 9:04 am
Viewing 15 posts - 13,366 through 13,380 (of 13,838 total)