Viewing 15 posts - 1 through 15 (of 16 total)
Thanks for the reply.
This query give result as:
Yr, Qtr, Sales, Difference
2009,4, $$, $$
I would like to see:
Y09Q4 Sales, Y08Q4Sales, Difference
February 10, 2010 at 11:15 am
Did you figure out how SSIC can be use to import email attachment data ? I get email everyday with xls attachment which needs to be imported into SQL table.
Thanks
June 25, 2008 at 12:15 pm
DateAdd(hh,1,GetDate()) work fine
Thanks for all your help
June 19, 2007 at 10:57 am
Jeff,
I used GetUtcDate() function but it did not return the correct date/time. I need to retrive Eastern Time.
Thanks
June 18, 2007 at 12:17 pm
Jeff,
I'm only storing $ symbol in field (varchar) for reporting. There will not be any calculation.
Thanks
June 18, 2007 at 6:53 am
David,
Part of my stored procedure inserts data from staging table to main table. When entering data into main table is it possible to add "$" symbol for one of the...
June 14, 2007 at 8:11 am
David,
I did added the "Delete From Staging_CSVDump" line at the end of procedure.
I will look into online help for job creation.
Thanks
June 8, 2007 at 7:28 am
David,
Here is my storedProcedure.
CREATE PROCEDURE CSVDump
AS
--Bulk Insert Into staging table
Bulk Insert Staging_CSVDump
From "C:\CSV.txt"
With
(
FIELDTERMINATOR = ',',
ROWTERMINATOR = '\N'
 
--Update main table
UPDATE tblMain
SET Prize = Staging_CSVDump.Prize,
...
June 7, 2007 at 12:40 pm
1-OrderNo from the text file will join with OrderNo field in table
2-If the text file does't have a corresponding row in table, we will just ignore it. Text file will...
June 7, 2007 at 11:25 am
David,
I have table "tblCSVDataUpdate" which needs to be update twice a day from "C:\CSV\CSVUpdate.txt" file
tblCSVDataUpdate has following fields:
OrderNo
Prize
Quantity
CustNo
ProductID
From CSV file i only need to update:
Prize and Quantity
This is what i...
June 7, 2007 at 11:04 am
David,
What is staging table ? Can you give me an example ?
Thanks
June 7, 2007 at 10:21 am
David,
I did not try seeting the column sort order. Since the requirment change.
Now i need to update value in table from CSV file data...insted of inserting data as new value.
June 7, 2007 at 10:14 am
Prasad,
Thanks for the response.
I actully need to update my table with CSV data...twice a day.
I don't think there is a Bulk Update....any other way to work around this ?...
June 7, 2007 at 7:30 am
Viewing 15 posts - 1 through 15 (of 16 total)