Viewing 15 posts - 13,396 through 13,410 (of 13,876 total)
Yes - I would advise you to amend the other procedures to deal with this.
The only reason I can think of as to why they seem to work already is...
August 12, 2005 at 5:14 am
Have a look here:
http://www.sqlservercentral.com/scripts/contributions/1545.asp
August 12, 2005 at 4:33 am
You just need to add an additional WHERE condition to your queries.
Query 1 - >
SELECT DrawID,DrawDate,WinningNumbers FROM [Result Table] WHERE
DrawID IN (SELECT Max(DRAWID) From [Result Table] where...
August 12, 2005 at 2:35 am
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
Viewing 15 posts - 13,396 through 13,410 (of 13,876 total)