Viewing 15 posts - 526 through 540 (of 596 total)
I want to delete it because I was experimenting with adding a DTS package on a production server and using my local sever as a destination. The package was added,...
January 23, 2004 at 10:13 am
Thanks to ThomasH as well. Your suggestion is a simple change that cuts down network chatter.
January 22, 2004 at 1:21 pm
Thanks kknudson. I put the offending server in its own group and collapsed the group and no more network traffic. I also upped the time between polling the servers to...
January 22, 2004 at 12:39 pm
Can you confirm if the dates are stored correctly in the table or not. That is when you SELECT BatchNum, FromDate FROM BillingSummary do the dates match properly?
If not I assume...
January 21, 2004 at 2:35 pm
I assume Utility.Buildlistbox just gets the data from SQL Server and populates the listbox. Is this method already written and you are trying to use it?
January 20, 2004 at 3:10 pm
You missed:
INSERT Lookup_User_StateProvince(StateProvinceText) VALUES('Alberta')
Also
INSERT Lookup_User_StateProvince(StateProvinceText) VALUES('Newfoundland')
should be
INSERT Lookup_User_StateProvince(StateProvinceText) VALUES
January 20, 2004 at 2:29 pm
I hadn't connected to this server since starting EM so I didn't even have a green arrow (just an empty circle) yet EM sees fit to transmit periodic TCP/IP polls. ...
January 20, 2004 at 2:08 pm
Trigger happen when you change a record (INSERTS or UPDATES) so if I Update a table I can take some kind of action. If you are running SQL Server 2000...
January 14, 2004 at 3:17 pm
Trigger happen when you change a record (INSERTS or UPDATES) so if I Update a table I can take some kind of action. If you are running SQL Server 2000...
January 14, 2004 at 3:17 pm
You need to decide how you intend to read/update the data. If you are doing this is VB.net see a tool like LLBLGEN (http://www.sd.nl/software/) If you are using VB 6...
January 14, 2004 at 2:59 pm
Try http://www.sqlservercentral.com/scripts/contributions/153.asp for an automated triggering solution. This could be the basis of what you need.
January 9, 2004 at 11:41 am
You may not have the latest service pack for Access. See http://support.microsoft.com/default.aspx?scid=kb;EN-US;272384 Overflow errors are documented here.
Bonne Chance.
January 9, 2004 at 11:36 am
With respect to your first question. It is very likely that repeated queries to the same table may be faster if you "do a single query first to return the record...
January 6, 2004 at 12:12 pm
Try a slight modification of brendthess's suggestion:
Declare @mySQL nvarchar(500)
Declare @myParms nvarchar(100)
SET @mySQL = N'SELECT @sz = sum...
January 6, 2004 at 9:46 am
Server administration was blocking the port. Thanks
December 24, 2003 at 9:19 am
Viewing 15 posts - 526 through 540 (of 596 total)