Viewing 15 posts - 61 through 75 (of 160 total)
John Rowan (9/2/2009)
September 2, 2009 at 10:11 am
Clive Strong (9/1/2009)
As for moving data from certain tables from production to development, you can use SSIS/DTS, BCP,...
September 2, 2009 at 5:53 am
Clive Strong (8/29/2009)
What Version of SQL?
1. Depends - table and index. It would be best to do it during maintenance in many cases.
3. There is downside to...
August 29, 2009 at 11:52 am
CirquedeSQLeil (8/28/2009)
meichner (8/28/2009)
August 29, 2009 at 8:09 am
Mansfield (7/16/2009)
SELECT 1 FROM SaleOrderDetails
Then it will just return a single column with 1 in it,...
July 17, 2009 at 6:35 am
manish.singh (7/16/2009)
You can use the following querry for better performance
SELECT h.SOID, h.CustomerNumber, h.PoNumber
FROM SalesOrderHeader h
WHERE EXISTS
(Select top 1 1
...
July 16, 2009 at 1:35 pm
Tim Mitchell (7/13/2009)
SELECT DISTINCT h.SOID, h.CustomerNumber, h.PoNumber
FROM SalesOrderHeader h
INNER JOIN SalesOrderDetails d ON h.SOID = d.SOID and d.ItemToSell = 'CAR'
This...
July 14, 2009 at 6:27 am
Tim Mitchell (7/13/2009)
July 13, 2009 at 12:58 pm
Lynn Pettis (6/1/2009)
meichner (6/1/2009)
... It seems...
June 1, 2009 at 1:18 pm
FelixG (5/15/2009)
Insert last_table...
May 18, 2009 at 6:53 am
RBarryYoung (5/15/2009)
Florian Reischl (5/15/2009)
RBarryYoung (5/15/2009)
FelixG (5/15/2009)
Vrachar type removes trailing spaces... you must use the CHAR type
It doesn't seem to be doing that on my system:
--========
declare @s-2 varchar(30)
declare @t...
May 18, 2009 at 6:24 am
Ken Simmons (5/15/2009)
I was thinking the same thing as Florian.Something like...
MainTable
MainTableID
OtherFieilds
MainTableDscr
MainTableID
DscrID
DscrTable
DscrID
That's a similar approach to the one I wanted to take. Unfortunately I have no choice in the matter.
DscrSequence
Dscr
May 18, 2009 at 6:12 am
Florian Reischl (5/15/2009)
May 15, 2009 at 6:46 pm
The reason behind this is hard to explain. Let me try.
I am interfacing to a table in a legacy system that has 10 description fields defined as Desc_1, Desc_2, Desc_3,...
May 15, 2009 at 2:14 pm
Thanks. I had a feeling that I would have to change the datatype from VarChar to Char. I was hoping that there was something else that I could have...
May 15, 2009 at 1:34 pm
Viewing 15 posts - 61 through 75 (of 160 total)