Viewing 15 posts - 13,651 through 13,665 (of 13,838 total)
Rolf, it would help me to know a bit more about the current db schema. I'm guessing that you have something like:
Product(ID (PK), Description)
DistributorA(ProductID (PK), CurrentPrice)
DistributorB(as above)
DistributorC(as above)
with ProductID...
November 1, 2004 at 8:10 pm
Is there any reason why you don't have a single table for all the merchants, containing a 'MerchantID' field to identify which merchant it is from? Then you could...
November 1, 2004 at 4:05 pm
I think something like this should work. You need to read BOL for more info on how triggers work, but this one uses a notional recordset called 'inserted', which...
November 1, 2004 at 3:58 pm
Use this:
raiserror('',20,1) with log
which will terminate the client connection (severity > 19) and write to the error log.
Regards
Phil
October 31, 2004 at 8:07 pm
I reckon you need to use the isnumeric() function and treat the numeric and non-numeric codes separately. Try something like this:
SELECT ITEMNO AS Item
FROM [ITEMMAST-10-25-04]
WHERE isnumeric(itemno) = 1 and...
October 28, 2004 at 2:25 am
Check out this thread for additional info:
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=139473
On the surface, programmatically changing collation orders doesn't seem too difficult a concept, until you realise that you need to drop associated constraints/indexes etc...
October 25, 2004 at 10:07 pm
It seems to me that your code is doing exactly what you want it to do, so where is the problem?
Anyway, if you have some sort of nullophobia (
October 25, 2004 at 8:12 pm
Here's another (similar) way:
declare @time nvarchar(20)
declare @timefloat float
declare @minutes int
set @time = '211:34'
set @timefloat = replace(@time,':','.')
set @minutes = floor(@timefloat) * 60 + (@timefloat - floor(@timefloat)) * 100
Regards
Phil
October 24, 2004 at 9:10 pm
My understanding is that scheduled SQL job steps run as transactions, ie they either fail or succeed. Partial success is not a possible outcome - as it appears to...
October 20, 2004 at 6:40 pm
I agree with Osoba - have played with Round, casting to decimal etc and nothing works elegantly. If you do not change the datatype of the column in the...
October 20, 2004 at 6:33 pm
Hi Jana
If the filenames are always the same, why not just create 12 separate imports that run one after the other as part of the same DTS package and use...
October 20, 2004 at 6:20 pm
Though 'retruning' is a great-sounding word, I think you mean returning?
Great question - I'm assuming that you're performing an insert to a table...
October 20, 2004 at 12:57 am
Yuk! If no one has anything already written, I will help you out. Presume you're planning on using VBA?
Regards
Phil
October 19, 2004 at 8:30 pm
A thousand records is hardly a spike for most hardware running SQL Server. What problems are you experiencing? Do you actually mean 'terminate', or just 'freeze' and perhaps...
October 19, 2004 at 8:15 pm
Viewing 15 posts - 13,651 through 13,665 (of 13,838 total)