Viewing 15 posts - 13,606 through 13,620 (of 13,838 total)
Rather than using straight DTS, have you thought about adding the Oracle server as a 'linked server' and using straight T-SQL to accomplish the data transfer?
November 15, 2004 at 6:40 pm
What is the relationship between tables a and b - is it on event?
So, in English terms, table a is an 'Account Events' table and table b is an 'Event...
November 15, 2004 at 5:00 pm
"Also you may want to consider an extra field on the row to say completed."
Expanding on Eric's idea, why not create an extra calculated field on the table = number...
November 15, 2004 at 3:52 pm
Try unregistering the DLL, type:
regsvr32 '[enter full dll file path and name]' /u
from a DOS prompt and then reboot and try deleting it again.
Phil
November 14, 2004 at 8:34 pm
I use a Cisco VPN connection over the internet fairly frequently and have no problems with EM/QA over that (except that it trashes my local network connections).
Phil
November 14, 2004 at 8:27 pm
Yuk. I'm assuming that you have tried (or perhaps you do not want to try!) performing a SELECT of all the fields into local variables and then checking them...
November 14, 2004 at 6:52 pm
This sounds a bit suspect to me. Can you provide a bit more detail about what you are going to do with the number? If I was filling...
November 14, 2004 at 4:26 pm
If you are able to reproduce this error in Query Analyser, the message text will be more helpful (the meaningless variable placeholders will be replaced by the actual constraint and...
November 11, 2004 at 8:35 pm
The alternative to
where field like '%word' is
where RIGHT(field,4) = 'word'
LEFT(field,4) gets the first four characters of field, not the final four.
Regards
Phil
November 11, 2004 at 8:06 pm
Is this the sort of thing?
declare @col varchar(10), @SQLText varchar(255)
select @col = col
from t1
where id = 2
set @SQLText = 'select ' + @col + ' from f1'
exec (@SQLText)
November 11, 2004 at 5:15 pm
It's possible to use xp_cmdshell to run commands outside of SQL Server - so this may be of help. I'm not quite sure what you mean by automating a...
November 11, 2004 at 5:03 pm
So can you reproduce the error - I'm guessing not? But if you can, try stepping through the stored proc in debug mode and see whether that gets you...
November 11, 2004 at 4:27 pm
Hi Karen
Not sure if this can be achieved directly through a view.
Here's an example of how you can get file info into SQL Server though:
declare @SQLText char(21), @app char(1)
set @app...
November 11, 2004 at 4:20 pm
Check this out:
declare @str varchar(255), @enc varchar(255), @i int
set @str = 'have a banana'
set @enc = ''
set @i = 1
while @i <= len(@str)
begin
if @i / 4.0 -...
November 10, 2004 at 11:46 pm
If you right-click/properties on a picture in an Access report (design mode), you can change the 'Picture Type' to 'linked' (default is 'embedded'). So the pictures can be stored...
November 10, 2004 at 8:45 pm
Viewing 15 posts - 13,606 through 13,620 (of 13,838 total)