June 21, 2011 at 7:41 am
I have been using BCP to get an extract from our data for a vendor. They now would like field headers on the extract to ensure they are putting the data in the correct fields. Is there any way to do this with BCP or can you suggest another way of getting them the data which is pipe delimited? thanks in advance.....
October 11, 2011 at 6:43 am
I have the same problem as above please reply if any IDEA...
October 11, 2011 at 7:12 am
before i discovered CLR functionalities,
i've done this by doing a normal old BCP that pipe delimits mydata like this:
EXECUTE master.dbo.xp_cmdshell
'bcp "SELECT object_name(object_id) As TbLName,name as ColName FROM SandBox.sys.columns ORDER BY object_name(object_id), column_id" queryout C:\Data\Objects.txt -t"|" -c -T '
then using command line funcitonalities, I can create seperate files
that contain whatever headers i want...then i simply append the files together.
dim @sql varchar(8000)
--Create the Header file
SET @sql = 'ECHO "MyHeader File Created ' + CONVERT(VARCHAR(35),getdate(),109) + '" > C:\Data\MyHeader.txt'
EXEC master..xp_cmdshell @sql
--append more data to teh header file
SET @sql = 'ECHO "Additional Header Info Like RowCoutns or something" >> C:\Data\MyHeader.txt'
EXEC master..xp_cmdshell @sql
set @sql ='copy c:\MyHeader.txt + c:\Objects.txt c:\Data\MyFinalFileName.txt'
EXEC master..xp_cmdshell @sql
Lowell
August 21, 2012 at 8:03 am
Dear All,
I have figure out a solution for this please replace db name. This is an SP which will pull table with headers using bcp.
Please suggest me for improvements and interested to see if other options are available.
Regards
Mayank Mehta
IF OBJECT_ID('ExportTableData') IS NOT NULL
DROP PROCEDURE ExportTableData
GO
/****************************************************************************
Procedure Name :ExportTableData
Objective:get all repords of a table
Author:Mayank Mehta
Create Date:21st AUG 2012
Modified By:
Modified Date :
Input Parameters :
Output parameters:
--
Algorithm and other details:
Test Cases:
DECLARE @result INTEGER
EXEC @result = ExportTableData 'TITAN-163\SQLEXPRESS' , 'Settings_Customer', 'E:\Settings_Customer'
SELECT @result
*****************************************************************************/
CREATE PROCEDURE ExportTableData
(
@serverNameVARCHAR(50),
@tableNameVARCHAR(20),
@exportLocationVARCHAR(20)
)
AS
BEGIN
--$Header: $
SET NOCOUNT ON
BEGIN TRY
--------------------------------------------------------
--1. Create temp table to store data across Db switch --
--------------------------------------------------------
CREATE TABLE ##tableColumns
(
ColumnNameVARCHAR(60),
ColumnIDINT,
)
----------------------------
--2. variable declaration --
----------------------------
DECLARE@sqlVARCHAR(8000),
@columnVARCHAR(MAX),
@iDINTEGER,
@colCountINTEGER,
@columnSQLVARCHAR(MAX),
@tableColumnStringVARCHAR(MAX),
@finalSQLVARCHAR(8000)
SET@iD=1
---------------------------------------------------
--2. List all colums of required table to export --
---------------------------------------------------
INSERT INTO ##tableColumns
SELECT COLUMN_NAME, Ordinal_Position from information_schema.columns where table_name = @tableName
-------------------------------------
--3. get table count for loooping --
-------------------------------------
SELECT@colCount=COUNT(ColumnID)
FROM##tableColumns
SELECT@tableColumnString = ''
--------------------------------------
--4. Convet table values in varchar --
--------------------------------------
SELECT@tableColumnString=@tableColumnString + 'CONVERT(VARCHAR,'+ ColumnName + '),'
FROM##tableColumns
--------------------------------
--5. Remove comma from select --
--------------------------------
SELECT@tableColumnString = LEFT(@tableColumnString, LEN(@tableColumnString) -1)
--------------------------------
--6. prepare select statement --
--------------------------------
SELECT @tableColumnString = ' SELECT ' + @tableColumnString + ' FROM [dbname].dbo.' + @tableName
SELECT@columnSQL='Select '
--------------------------------------
--7. loop through to pivite columns --
--------------------------------------
WHILE(@iD <= @colCount)
BEGIN
IF(@iD != @colCount)
BEGIN
SET @columnSQL = @columnSQL + ' COL'+ CONVERT(VARCHAR,@iD) + ' =MAX(CASE WHEN ColumnID=' + CONVERT(VARCHAR,@iD) + ' THEN ColumnNameELSE NULLEND),'
END
ELSE
BEGIN
SET @columnSQL = @columnSQL + ' COL'+ CONVERT(VARCHAR,@iD) + ' =MAX(CASE WHEN ColumnID=' + CONVERT(VARCHAR,@iD) + ' THEN ColumnNameELSE NULLEND)'
END
SET @iD = @iD + 1
END
----------------------------------
--8. Prepare column table query --
----------------------------------
SELECT @columnSQL=@columnSQL + ' FROM##tableColumns '
-----------------------------------------
--9. Configure xpcmdshall if not exists--
-----------------------------------------
-- To allow advanced options to be changed.
EXEC sp_configure 'show advanced options', '1'
-- To update the currently configured value for advanced options.
RECONFIGURE
-- To enable the feature.
EXEC sp_configure 'xp_cmdshell', '1'
-- To update the currently configured value for this feature.
RECONFIGURE
--------------------
--10. perform BCP --
--------------------
SELECT @sql = 'bcp "' + @columnSQL + ' Union ALL ' + @tableColumnString + ' " queryout "' + @exportLocation + '.csv' + '" -c -b 20000 -T -S ' + @serverName
EXEC master..xp_cmdshell @sql
------------------------
--11. Drop temp table --
------------------------
DROP TABLE ##tableColumns
RETURN 0
END TRY
BEGIN CATCH
SELECT @@error
SELECT ERROR_MESSAGE() AS ErrorMessage;
DROP TABLE ##tableColumns
RETURN -1
END CATCH
END
GO
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply