Viewing 15 posts - 1 through 15 (of 40 total)
All cool stuff! Thanks!
So far what I did : I got ODBC to oracle
I was able to truncate table in Oracle from SQL DTS
it worked!
but then I am trying to...
February 4, 2009 at 9:56 am
for DTS - there should be some connection to Oracle server and database...using...? ODBC? don't know that part , I am not "very much" Oracle person
SSIS - it is in...
February 2, 2009 at 12:03 pm
or is there another way exist? to copy the data from SQL 2000 to Oracle:hehe:
February 2, 2009 at 11:37 am
we found - the GUEST account was deleted from one of the system tables (I think tempdb) - we put it back = everything works now!
June 18, 2007 at 11:27 am
I selected EVENT for the object : Object:opened . It says it will work when the object will be in use as in SELECT, INSERT or other statements (but it's...
June 6, 2007 at 9:31 am
Ryan, thanks! I will try this way, I have already something, I will drop it here also |
July 13, 2006 at 4:59 pm
SQLZ - it helped A LOT!!!! THANKS!!! Ward - yes, but the "client" wants it that way.... what we can do?... |
July 13, 2006 at 4:56 pm
OH! I FOUND SOMETHING!!!
from Internet :
I have come across what seems to be a bug in SQL 2K SP3.
When I have a job with multiple job steps and...
April 28, 2006 at 11:54 am
Only in the output script. In the Jobs - all steps are in the order. Like I said, later we were able to get successfull script.
I am just wondering...
April 28, 2006 at 10:52 am
or check this :
create table MyTime (mytime datetime)
insert into mytime
values('12:25:35') ---and couple more values in the same format
select * from MyTime
declare @X int
set @x = (select sum(datediff(ss,'0:0:0',mytime)) from mytime)
select...
March 3, 2006 at 1:22 pm
I tried this:
create table MyTime (mytime varchar(8))
insert into mytime
values('11:15:42')
select sum(datediff(ss,'0:0:0',mytime.mytime)) as seconds
from mytime
and that did not work. I found problems to convert to datetime from char or varchar, can...
March 3, 2006 at 12:34 pm
Is the transaction backup coming from the maintenance plan job? there is the option "Backup file extension", I have TRN, maybe you have IDF, check there.
March 3, 2006 at 11:32 am
Hi,
try to play with output, when you are running from QA this
create table Output(text varchar (100))
insert into Output
exec xp_cmdshell 'osql -S -dTEST_dev -i"D:\Data_load\TestScript.txt" -E'
if exists(select * from Output where...
March 3, 2006 at 11:26 am
Hi,
I have in our maintenance plan :
Check integrity first and it says "perform these tests before making backup", so I am thinking this plan is checking everything first.
You can do...
March 2, 2006 at 1:59 pm
one more - before back to FULL I am shrinking db, just to save some space
March 2, 2006 at 1:51 pm
Viewing 15 posts - 1 through 15 (of 40 total)