Viewing 15 posts - 61 through 75 (of 298 total)
Thanks Grant, I had not considered using TOP.
Cheers
Allen
June 28, 2009 at 7:35 am
Thanks Grant, I've seen a few of Jeff's articles on triangular joins and RBAR (and other stuff). I was using a < in the join and getting bad performance.
Essentially I...
June 27, 2009 at 9:19 am
Thanks Pradeep. Also thanks for the pointer about partitioning!
Regards
Allen
June 22, 2009 at 6:04 am
Thanks Luke - I got there. I had left some bad options set in my Execute SQL task and of course I was sure I hadn't!
June 11, 2009 at 6:38 am
Thanks Luke,
I tried the 'bulid a string and execute it in a loop' method and although I got no errors nothing was written to the MySQL table. I tried this...
June 11, 2009 at 5:23 am
Looks like the delete button has given up...
June 6, 2009 at 2:29 am
I would start by checkig the SQL and system logs. Is there anything in there?
June 6, 2009 at 2:08 am
I would first check the SQL and system logs. Anything there?
June 6, 2009 at 2:05 am
I would first check the SQL and system logs. Anything there?
June 6, 2009 at 2:00 am
Search BOL for BCP and look under command options. Edit: sorry only answered the bit about -c -t, -T (talk about not reading the question) not sure if you can...
June 5, 2009 at 9:42 am
SMALLDATETIME is fine for your data.
SELECT CAST('2009-04-11 04:00:11' AS SMALLDATETIME)
I would check your field and row terminator options. Is the data file as is in your post?
June 5, 2009 at 8:41 am
If you are only using Access to do the cross tabs then I would suggest scrapping access and reworking the crosstab SQL using CASE statements if you are on SQL2000...
June 5, 2009 at 8:26 am
No problem. CASE is hugely powerful and can be used in loads of places/problems.
June 5, 2009 at 8:10 am
Or CASE
USE tempDB
GO
CREATE TABLE
X
(ClientIdINT,
ClientNameVARCHAR(50),
VersionsourceVARCHAR(50))
INSERT X
(ClientId,
ClientName,
Versionsource)
SELECT 1, 'X', 'David' UNION
SELECT 2, 'y', 'Manual' UNION
SELECT 3, 'Z', 'Richard' UNION
SELECT 4, 'A', 'Manual' UNION
SELECT 5, 'B', 'David'
SELECT
CASE
WHEN VersionSource =...
June 5, 2009 at 7:46 am
I'm not sure on this but you could try having the excel workbook defined as a linked server then running a bit of dynamic sql like 'select * into linkedservername.oranges...
June 5, 2009 at 7:36 am
Viewing 15 posts - 61 through 75 (of 298 total)