Viewing 15 posts - 451 through 465 (of 4,820 total)
Okay, let's revisit the performance on this:--===== If the test table already exists, drop it
IF OBJECT_ID('tempdb..#mytable','U') IS NOT NULL
BEGIN
DROP TABLE #mytable;
END;
--===== Create the...
October 24, 2018 at 9:37 am
I'm guessing that the error comes from somewhere else, unless there's a security context difference between the way it runs in production and the way you are running it.
October 24, 2018 at 8:51 am
We're missing a few critical details here. When you say you ran an import of a flat file, exactly what process did you use? You then say you tried to...
October 24, 2018 at 8:34 am
I have a purchase order report that has an image in the header which is...
October 23, 2018 at 7:44 am
October 18, 2018 at 3:29 pm
Connection settings. Also look at the actual execution plan in both situations and compare them.
October 18, 2018 at 9:43 am
One easy way is to use SSRS and a matrix where Customer is the row group and the Method of Delivery is the column group. That would create a pivot...
October 18, 2018 at 9:28 am
October 18, 2018 at 9:26 am
October 18, 2018 at 8:18 am
This is not an Oracle forum. It's a SQL Server forum. There are a few folks here that ARE familiar with Oracle, but not necessarily at a level high enough...
October 18, 2018 at 8:01 am
Since there are three tables, as I...
October 18, 2018 at 7:47 am
October 18, 2018 at 7:36 am
October 18, 2018 at 6:58 am
October 18, 2018 at 6:51 am
Viewing 15 posts - 451 through 465 (of 4,820 total)