Viewing 12 posts - 1 through 12 (of 12 total)
Hi..
According to me the XML generates behind the package in 2008 is different from 2005.
So, the package u had made in 2005 can be used in 2008, but once it...
November 17, 2009 at 4:41 am
ifila (12/15/2008)
I used a CSV input file.
Is it possible to read multiple CSV files by referencing a folder ?
I have a bunch of text files i...
December 15, 2008 at 6:23 am
msreddyn (9/15/2008)
I have a table with two columns FromLocation and ToLocation ,these columns may contain same data or also distinct data . now i want query
data such that...
September 15, 2008 at 4:12 am
Below is a general form of a query, along with step numbers assigned according to the order in which the different clauses are logically processed:
(8) SELECT (9) DISTINCT (11)...
September 9, 2008 at 8:48 am
cdun2 (2/14/2008)
I forget. How can PATINDEX be used to find column values where the data is all numeric? I've tried, the following:
select distinct acct from tbl_CYProcessedSales
where PatIndex('%[0-9]%',Acct) > 0
order by...
August 1, 2008 at 2:45 am
Lester Policarpio (7/31/2008)
How about using the BULK INSERT command (can be viewed in BOL)?
You can refer BULK INSERT Statement in BOL:
ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/tsqlref9/html/be3984e1-5ab3-4226-a539-a9f58e1e01e2.htm
I've used the below code to import data thru BULK...
July 31, 2008 at 11:55 pm
Hello Hari...
Hari.Sharma (7/22/2008)
Thanks for reply.
I know that temp tables get created into system DB (tempdb).
Can you write a query for that?
Suppose my stored procedure looks like this:
CREATE PROC...
July 22, 2008 at 1:47 am
U can do tht by using Cursors, as like:
DECLARE @OldColumn INT
DECLARE @NewCount INT
SET @NewCount = 1
DECLARE MyCursor CURSOR
FOR
SELECT AccountNum FROM Cleansing.Customer GROUP BY AccountNum
OPEN MyCursor
FETCH...
July 21, 2008 at 4:25 am
Either re-design ur Database or jst add Identity columns in each of ur table, so tht u can easily put joins between them.
July 21, 2008 at 3:32 am
Hi...
As per my thinking, by default Trailing Spaces are not considered in strings.
So there are many ways to handle out tht... as like...
Examples below will return correct Length including Trailing...
July 17, 2008 at 8:30 am
elaine (7/17/2008)
July 17, 2008 at 6:02 am
Viewing 12 posts - 1 through 12 (of 12 total)