Viewing 15 posts - 58,786 through 58,800 (of 58,835 total)
My thoughts are that if you are trying to import data that is either delimited, fixed field, or a combo of both, you should probably take the time to use...
April 29, 2004 at 10:04 pm
Sometimes ya just gotta do with the data ya got... The REPLACE answer is a good one. Thanks.
April 29, 2004 at 9:44 pm
SELECT * FROM DBO.pt_vCheckSupport
WHERE supp_startdt>='07-MAR-2004' AND supp_startdt<'20-MAR-2004'
April 29, 2004 at 9:32 pm
/* SET NOCOUNT ON */
SELECT GEO , CustomerType,
April 27, 2004 at 9:28 pm
Got the same result... no error but no change. Thank you for trying.
April 26, 2004 at 11:10 pm
>(select count(*) from myview where ...) as field1
>(select sum(field) from my where ...) as field2
Your last post said that you used aggregate functions for each field. Looking at the code...
April 25, 2004 at 9:27 pm
First, thank you for the table and data code... always a pleasure to NOT have to write code just to do a test setup...
April 25, 2004 at 7:55 am
A.zcmSBA_V_WONO=B.zcmSBA_V_WONO AND
A.zcmSBA_N_JONO=B.zcmSBA_N_JONO AND
A.zcmSBA_V_TRXNO=B.zcmSBA_V_TRXNO
April 25, 2004 at 7:10 am
Worse than that, it's been my experience (in SQL Server 7) that a SELECT such as yours will create a separate instance of the view, in memory, for each named instance...
April 25, 2004 at 7:02 am
Kokyan is correct... temp tables are always unique per session. You can see the actual name of a temp table in the tree view (press f8) of Query Analyzer. They...
April 25, 2004 at 6:35 am
Actually, there is! It comes in the form of the PARSENAME command which was specifically developed to break apart the parts SQL object names "at the dots". Since your example...
April 24, 2004 at 9:04 pm
In that case, Bulk Insert has a MAX ERRORS setting that works just like the BCP -m parameter. Again, check BOL under Bulk Insert.
April 23, 2004 at 9:06 pm
No execution plan is formed for Dynamic SQL until Runtime regardless of method of execution.
April 23, 2004 at 5:53 am
Viewing 15 posts - 58,786 through 58,800 (of 58,835 total)