Viewing 15 posts - 91 through 105 (of 137 total)
I think AJ is right, EM is not a good place a view all rows of a table especially a large one. It consumes alot of mem.
That is why there...
July 12, 2005 at 4:49 pm
I think you need to turn off your parellism because it's causing a deadlock.
July 12, 2005 at 4:23 pm
Room for another?
update table set column = select substring(column, 1, len(column) - 4)
July 12, 2005 at 2:43 am
when you exec the proc, the proc executes itself (looping/nesting) 32 times.
It's only 32 iterations because a stored proce can only nested proc up to 32 times.
Cheers.
July 12, 2005 at 2:22 am
I thought, import data into staging database first(which I call staging load) and then trasformations take place from there into DW layers.
Anyway, my preference is to use SPs wherever I can because I will have...
July 11, 2005 at 5:02 pm
I had the same problem last year. When using DTS data pump truncation occured in destination without raising any error. Until now I still don't know why.
if you set ANSI_WARNINGS...
July 11, 2005 at 4:44 pm
With the 'go' statement you create the proc first then execute proc.
Without the 'go' statement you create the proc with a nested proc within. In this case you're self looping...
July 11, 2005 at 12:13 am
select getdate() --current date
select dateadd(mm,-6,getdate()) -- last 6 months
July 10, 2005 at 10:05 pm
Phil, just wondering, it is possible to create a xp_proc and call a batch file that contains all your command lines?
July 10, 2005 at 8:59 pm
Not sure what you mean by "linked table".
Can you give a example??
July 10, 2005 at 8:51 pm
There is nothing you can do but find the most current backup and restore asap.
I'm just being psychotic here...
"if I drop a database can I rollback ???????"
July 10, 2005 at 8:07 pm
where 1=1 + @addfilter
2 problems in this clause:
1. it will not return any results as long as there is a value in @addfilter. It will always return FALSE condition.
2. @addfilter...
July 10, 2005 at 5:58 pm
not sure what you mean by no owner?
As far as I know owner can not be null.
July 10, 2005 at 5:37 pm
typo....
Sufian, You cannot rollback a restore because it is NOT a transaction.
July 10, 2005 at 5:00 pm
Viewing 15 posts - 91 through 105 (of 137 total)