Viewing 15 posts - 31 through 45 (of 104 total)
Yes, it's definitely possible - I wrote a function in FoxPro to do this for printing onto cheques - I suggest a function in SQL would be possible
October 22, 2002 at 8:14 am
I have a similar arrangement on a few key tables and then a selection of columns that my client wanted audited. I added 2 columns to the table, one...
October 21, 2002 at 10:42 am
I think the problem is that data in table variables is always the subject of a Table Scan in the query parser - is it not possible to convert your...
October 16, 2002 at 3:32 pm
Or you could of course use Visual Foxpro which would be far easier to control than say a VB application as it is a database itself....
October 9, 2002 at 11:39 am
OK float question, try this:
declare @x float,
@y numeric(16,10)
set @x=1.3333
set @y=1.3333
select @x
select @y
The answers speak for themselves...
table datatypes - you cannot force the query optimiser to do anything but a table...
October 8, 2002 at 4:21 pm
Actually, I've just noticed you're using the float datatype - I hope you know this is not accurate - in fact it can be very inaccurate depending on what you...
October 8, 2002 at 11:09 am
I would be careful using the table variable type - for one thing I don't believe it supports INSERT...EXEC, but more to the point, it is not optimisable within the...
October 8, 2002 at 11:07 am
Forgive me if I'm missing the point, but I think you're talking about two different things at least...in my application, all client adjustments have a unique serial number which also...
October 8, 2002 at 7:19 am
It may be useful to see your table structure, but out of interest is mytable a table or a view?
October 8, 2002 at 7:12 am
I have seen a few postings here where people have put DBs on SANs and got mixed results. I think you need to have a very good infra-structure in...
October 7, 2002 at 9:51 am
I would add a word of caution - using the table data type may actually cause you more problems. I would actually recommend that you create a permanent table...
October 4, 2002 at 4:34 pm
Rather than using xp_sendmail, perhaps you should look at using CDO - Collaboration Data Objects. These offer a much richer interface, which I believe includes X400 addressing.
October 2, 2002 at 7:26 am
Well without seeing the code it is difficult to say much. When you specify the ORDER BY clause, are you qualifying the column names with the correct aliases?
I have...
September 20, 2002 at 10:44 am
If your SELECT statement is non-critical, for example a web page that refreshes regularly so bad data won't matter, use the WITH (NOLOCK) hint after your table object name:
SELECT name...
September 18, 2002 at 1:44 am
I'm not sure about quick, but put this in your UPDATEs WHERE clause:
...AND CHARINDEX(' ',<<colname>>) > 0
Simon
September 12, 2002 at 3:57 pm
Viewing 15 posts - 31 through 45 (of 104 total)