Viewing 15 posts - 121 through 135 (of 193 total)
Hi Ed,
Can you post your create script of the table, which column you want as your primary key and some sample rows that are causing the problem (just examples) so...
March 18, 2015 at 4:05 am
Are you unable to shrink because of an error or is it just not shrinking?
run this and let us know what it returned:
SELECT log_reuse_wait_desc
FROM sys.databases
WHERE name = 'HFM_Prod_Data'
looks like it...
March 18, 2015 at 3:32 am
Got it right! Playing euromillion today! (I work with 2008)
March 16, 2015 at 3:29 am
Stuart Davies (3/13/2015)
Worse one I've come across "If you need comments to understand this - you shouldn't be looking"
+1 :hehe:
March 13, 2015 at 2:46 am
The worst commenting, not comment, ever was when i found my stored procedure is not working for some reason:
CREATE PROCEDURE dbo.Procedure
AS
---BEGIN
---The whole procedure code commented
---END
Not sure if it counts...
March 13, 2015 at 2:42 am
Now when i look at it, it actually looks like one of the EDI formats. I did have a chance to work with EDIFACT files before but i remember that...
March 11, 2015 at 5:52 am
You can't use WHERE with BULK INSERT.
Your alternative may be the way to go in this case.
March 11, 2015 at 5:19 am
Not only row 2 is connected but other rows are connected in column A10 as well.
Could you attach a sample text file? I would like to have a look at...
March 11, 2015 at 2:00 am
You need these options on to use xp_cmdshell
EXEC sp_configure 'show advanced options', 1
RECONFIGURE
EXEC sp_configure 'xp_cmdshell', 1
RECONFIGURE
EXEC xp_cmdshell 'osql -E -S "SERVER.edu" -d "DBNAME" -i "E:\ACRC443\event_echo_1\event_echo_ins_1_1.sql" '
March 10, 2015 at 9:59 am
Are you sure VARCHAR(100) is long enough for this second statement?
March 10, 2015 at 7:57 am
March 10, 2015 at 5:22 am
Hi Martin,
I had to create that table within my logins tablespace, I have no idea why i couldn't grant access to that table instead of recreating it under different schema....
March 10, 2015 at 4:52 am
Finally i've got a success connection message !!
I had to play a little bit with Oracle Net Manager and now using ServerName:Port/ServiceName and SYSTEM login i'm able to connect.
Now... I...
March 9, 2015 at 9:09 am
Martin Schoombee (3/6/2015)
Kutang Pan (3/6/2015)
I'm lost, please help...To verify, are you using the Attunity Oracle connectors? Have you installed both the 32 and 64-bit versions on your SSIS machine?
HI Martin,
Yes...
March 9, 2015 at 1:54 am
Viewing 15 posts - 121 through 135 (of 193 total)