Viewing 15 posts - 1,276 through 1,290 (of 3,738 total)
Smash125 (7/15/2012)
i have used AdventureWorks database to test this scenario
Steps:
1. Imported Production.Product table from AdventureWorks database to...
July 15, 2012 at 10:01 pm
I have been working on a Data Warehouse Project since October 2011.
I believe that considering SQL Server 2012 is a viable option considering it will probably take a while before...
July 15, 2012 at 1:43 pm
I was able to setup the Linked Server to Oracle so I would consider this post closed.
Thanks for all of the input.:-)
July 15, 2012 at 11:11 am
I found a solution at the following URL:
http://stackoverflow.com/questions/307636/how-do-you-setup-a-linked-server-to-an-oracle-database-on-sql-2000-2005
EXEC sp_addlinkedserver
@server = '{Linked Server Name}'
,@srvproduct ...
July 15, 2012 at 11:05 am
I forgot to create the TNS_NAMES Environmental Variable.
I also had to reboot before I could test the DSN.
Post Closed.
July 15, 2012 at 10:37 am
The 64 bit installs the ODBC Drivers.
Post closed.
July 15, 2012 at 9:51 am
Dev (7/15/2012)
I could truncate a table and insert the count into table but that is Kinda silly.
What about an UPDATE?
UPDATE Table_Name
SET Column_Name = Column_Name -- fake update
WHERE 1 =...
July 15, 2012 at 9:15 am
Paul,
I need to do it within an SSIS Package.
I could truncate a table and insert the count into table but that is Kinda silly.
So it looks like I need to...
July 14, 2012 at 6:12 pm
I looks like I need the 64 bit Oracle Client Install to get the ODBC Driver.
I may need to use a Linked Server but I was hoping that was not...
July 14, 2012 at 4:45 pm
Thanks a lot Gail!:cool:
July 14, 2012 at 12:34 pm
GilaMonster (7/14/2012)
July 14, 2012 at 10:37 am
GilaMonster (7/14/2012)
If a backup is restored, do you want to ensure that some 3rd party can't restore the backups?
Yes.
Do you want to ensure that if...
July 14, 2012 at 3:07 am
Gift Peddie (7/13/2012)
I did not install the 64 bit version yet. Do you know if SQL Plus and ODBC are based on 64 bit?
There are known issues with the x64...
July 13, 2012 at 7:01 pm
Lynn Pettis (7/13/2012)
Okay, let's try again. You want to delete records from table1 if the same record exists in either table2 or table3, correct?
It appears that the OP wants...
July 13, 2012 at 5:13 pm
I ended up going with the following:
TO_CHAR(RCT_RDB_ENTRY_DATE,'YY-MON-DD HH24:MI:SS') AS RCT_RDB_ENTRY_DATE
July 13, 2012 at 4:33 pm
Viewing 15 posts - 1,276 through 1,290 (of 3,738 total)