Viewing 15 posts - 1 through 15 (of 20 total)
I am selecting from SQL server, and writing into Oracle. The performance is about 100 to 200 rows per sec. I have tried Oracle OLE db, and MSDAORA both. The...
March 26, 2009 at 1:43 pm
thanks everyone 🙂
I had posted the question in 2006, and have got three replies in the last two days!! Appreciate your help.
December 4, 2008 at 7:48 am
when you say "package" are you referring to SSIS or is there some other package in SQL server?
thanks!
September 16, 2008 at 9:07 am
The source is an Oracle database. My query is:
Insert into SQL_Table
( columns)
Select columns from openquery (Linked_server, 'Query_Oracle')
I ran multiple queries without any partitioning - I ran into deadlocks. I...
August 7, 2008 at 11:41 am
I tried the procedure sp_addextendedproperty and it does what I need. Thanks Jeff, Matt, RBarry, Noel, and Gsquared.
June 5, 2008 at 9:19 am
That SQL was helpful and gave me what i was looking for. Thanks to those who put it here. Another question:
I have column comments as Extended Properties in one database...
June 3, 2008 at 8:18 am
Yeah, exactly what i had in mind. But i need to wait until the weekend to do that.
August 6, 2007 at 8:48 am
Thanks Mark,
You solution also looks good, will try it out. Thanks
August 6, 2007 at 7:47 am
Sure Jeff...The recursive parsing function followed by the function to count and summarise the entire table based on input dates.
CREATE FUNCTION dbo.MPM_PARSE_ERROR(@error_number VARCHAR(100))
RETURNS @ERROR_TABLE TABLE (ERROR VARCHAR(5))
AS
BEGIN
/*------------------------------------------------------------
Name : MPM_PARSE_ERROR
Input :...
August 5, 2007 at 5:21 pm
Thanks Jeff, Serqiy. I really appreciate the detailed reply that Jeff gave. Also, I realise that delimited data is good in files, not in database tables. I have learnt it...
August 5, 2007 at 1:35 pm
This is excellent!!
I had attempted using that option but could never figure out how it should be used. This will really help me. Thanks!
June 8, 2007 at 7:51 am
How is the table being used? By what application?
If you are generating a report from that table, you do not want the report to spend crucial minutes in making joins...
April 24, 2007 at 11:38 pm
As i understand your problem, you execute the Stored proc, tables are updated, the results have to be seen on a website browser.
If you do not want to refresh the...
April 19, 2007 at 12:00 am
I have faced the same problem in DDQ a couple of times. The column names and parameters get mismatched on their own. DTS is haunted
May 3, 2006 at 6:49 am
Thanks Mike,
Does that mean I can not "turn off" scientific notation at the server level? And please let me know what exactly you mean by "regular expression match". The input...
February 23, 2006 at 11:29 pm
Viewing 15 posts - 1 through 15 (of 20 total)