Viewing 15 posts - 46 through 60 (of 125 total)
Try using this,
SELECT DISTINCT object.name
FROM OPENQUERY(MOJAVEZA, 'SELECT name FROM Operator.dbo.sysobjects WHERE xtype != ''S''' ) as object
WHERE NOT EXISTS
(SELECT *
FROM ListOfSystemObjects
WHERE object.name COLLATE DATABASE_DEFAULT = ListOfSystemObjects.ObjectsName)
Normally...
January 10, 2005 at 8:01 am
create table ##mytable(name varchar(25))
insert ##mytable
select 'Manisha'''
insert ##mytable
select 'Man''isha'
select * from ##mytable
Thanks,
Ganesh
January 7, 2005 at 3:27 pm
If you have a db2 instance on your box, it should have a Microsoft OLE DB Provider for DB2.
Else follow this link
http://www-306.ibm.com/software/data/db2/udb/ad/v7/oledb.html
Thanks,
Ganesh
January 7, 2005 at 3:16 pm
use this function in the place of temp: IDENTITY(int, 1,1)
insert into a temporary table and select the temporary table.
I hope that will solve your problem.
Cheers,
Ganesh
January 7, 2005 at 12:01 pm
Zap across the data from the temporary file to a temporary table.
From, the temporary table zap across the data to the destination table by creating transformation.
don't create a transformation for...
January 7, 2005 at 11:46 am
I would like to share few things
The data file coming out from a db2 database from a mainframe environment
1. There is no concept NULL, it is treated a s hex...
January 7, 2005 at 11:13 am
There are 2 scenarious for this.
DB2 in Mainframes
1. Create a COBOL program to out the data to a text or dat file
2. BCP in the data to SQL Server 2000
DB2...
January 7, 2005 at 11:04 am
I would suggest to loop through table, dynamically build the bcp out string and execute it for each rows.
I hope it helps.
Thanks,
Ganesh
January 5, 2005 at 10:31 am
You can use this to limit the file extension
And UCase(Right(strFIL,Len(cEXT))) = cEXT Then
January 5, 2005 at 10:28 am
Option Explicit
'*
Const cVBS = "renamer.vbs"
Const cPRE = "OK"
Const cEXT = "XML"
Const cFOL = "c:\NACHA\"
'*
Dim strFIL
Dim strGFI
Dim intMOV
intMOV = 0
'*
...
January 5, 2005 at 10:25 am
Follow this link, it might help you.
December 29, 2004 at 3:20 pm
Noeld,
Since you are online now, Iam posting this question to you. Thanks for the info. I really get a good hold on the explaination by Celko. I appreciate it.
Using a...
December 28, 2004 at 2:42 pm
Thank you.
Could you please explain me, how best the splitting of this procedure would add value in the performance.
My concerns:
Using dynamic sql:
1. Unnecessary maintenance of 5 more stored procedure is...
December 27, 2004 at 1:07 pm
Viewing 15 posts - 46 through 60 (of 125 total)