Viewing 15 posts - 61 through 75 (of 97 total)
I would suggest you update your client tools to the same service pack applied to the server.
August 7, 2003 at 5:45 am
I've come across this one before. Re-installing the client tools on the offending PC resolved the issue.
August 6, 2003 at 7:56 am
I've used this configuration many times especially when upgrading SQL Server 7.0 to SQL Server 2000. You need the install 7.0 as the default instance and install 2000 as a...
August 4, 2003 at 4:57 am
If you are thinking of exporting to a text file to make a mailing label, you could do that with ActiveX scripting in your DTS package. You may need the...
August 1, 2003 at 6:42 am
There are many ways to skin a cat. Depending on your source you could select only rows that are not already in your target table (assuming there are ways to...
August 1, 2003 at 6:35 am
Personally, I think modifying a system table this way is a bad idea. First off, there is no guarantee that your trigger will persist if you upgrade or apply service...
August 1, 2003 at 6:27 am
You could create a DTS package to do that.
July 31, 2003 at 6:19 am
Could you check that the user DOMAINNAME\me has SELECT rights to your table DPEVENTD? SQLSTATE 42000 is for "syntax error or access violation"
July 29, 2003 at 6:22 am
I found that changing the @query variable to the following format helped solved a similar problem in the past.
SELECT COUNT(1) FROM database.owner.tablename
July 28, 2003 at 4:44 am
Will this do it?
<code>
SELECT employeeAccident.TrackingNumber, AccidentInfo.dateOfAccident, AccidentInfo.timeOfAccident, AccidentInfo.caller, AccidentInfo.operator,...
July 24, 2003 at 6:25 am
I solved a similar problem a while back using DTS in conjuction with ActiveX scripting. Is this an option for you?
July 24, 2003 at 5:30 am
I doubt if you could do this. But it's possible to simulate using TRIGGERS.
July 23, 2003 at 6:48 am
I'd suggest you use the return value from a procedure in this way only to indicate the success or failure of execution. Although many developers use it this way...
July 23, 2003 at 6:33 am
You could create a UDF that accepts two dates (and the day of week you want to count between the two dates) and returns the number of the count. ...
July 23, 2003 at 6:23 am
If you have Outlook as the client on your server, it is probably installed in the 'Internet Only' E-mail service option. You may need to change this to 'Corporate...
July 22, 2003 at 6:54 am
Viewing 15 posts - 61 through 75 (of 97 total)