Viewing 15 posts - 76 through 90 (of 104 total)
Hi
I got the mistake,
In another execution of package I got error in
ADate Column,
I changed the datatype from datetime to nvarchar(100) and imported the tabel to SQL
and in SQL I came...
February 11, 2009 at 3:24 am
It all sounds a bit like hard work; there might be a simpler way,
Yes I too think there is a much simpler way
for example using extended attributes of the...
February 9, 2009 at 4:50 am
AndyD (2/9/2009)
In MSSQL...
February 9, 2009 at 4:21 am
AndyD (2/9/2009)
Always a possibility!!! All I can suggest is that you run some tests.Andy
Hi Andy, this is what I needed.
Some tests in the sense which kind of test?
How can...
February 9, 2009 at 3:36 am
AndyD (2/9/2009)
February 9, 2009 at 1:52 am
AndyD (2/6/2009)
February 8, 2009 at 10:34 pm
AndyD (2/6/2009)
I think you'll have to write some CASE logic around the information held in:select TABLE_NAME, COLUMN_NAME from INFORMATION_SCHEMA.COLUMNS where DATA_TYPE = 'ntext'
Andy
Yes Andy,
I am doing the same...
Can you tell...
February 6, 2009 at 4:08 am
hkphooey (2/5/2009)
HiWould this give what you need?:
selectcol1,
col2,
cast(col3 as nvarchar(max)) as col3,
col4
intodbo.TableB
fromdbo.TableA
Alun
yes this will do for the table given.
but what if the ntext column is in different position?
I am trying to...
February 5, 2009 at 9:51 pm
Michael Earl (1/30/2009)
SSIS and MSSQL will verify that your data matches the data types in your desintation table and error if the...
February 1, 2009 at 10:07 pm
Hi,
I just linked the access table to SQL Server 2005
exec sp_addlinkedserver @server='AccessDb',
@srvproduct='Access',
@provider='Microsoft.Jet.OLEDB.4.0',
@datasrc='C:\TEMP\csd.mdb'
exec sp_addlinkedsrvlogin @rmtsrvname='AccessDb',
@useself='false',
@rmtuser='Admin',
@rmtpassword=''
I can see the tables and views in the access using
sp_tables_ex...
January 30, 2009 at 1:50 am
I think the link is
http://msdn.microsoft.com/en-us/library/ms143761(SQL.90).aspx
All the features are listed here for all editions
Thanks
January 20, 2009 at 3:43 am
Ramesh (1/16/2009)
Not working this query ...are you sure does it works!?
Actually, something has ate-up my code....:D:D, missed the table in LEFT JOIN....
its wrking used the same query olny retrived distinct...
January 16, 2009 at 7:37 am
Abhijit More (1/16/2009)
SELECT tmp.PojID, tmp.Cat,
...
January 16, 2009 at 3:41 am
Abhijit More (1/16/2009)
DROP TABLE tmpPoj
DROP TABLE tmpCat
CREATE TABLE tmpPoj
( PojID INT, Cat VARCHAR(10), Total INT )
CREATE TABLE tmpCat
( CatIDINT, Cat VARCHAR(10) )
INSERTtmpPoj
SELECT1, 'A', 1 UNION
SELECT1, 'B', 2 UNION
SELECT2,...
January 16, 2009 at 2:08 am
Chirag (12/23/2008)
Iam afraid you will have to write your own storedproc/ trigger. I cant do that for you. If you know oracle then doing it in SQL should not be...
December 23, 2008 at 11:29 pm
Viewing 15 posts - 76 through 90 (of 104 total)