Viewing 15 posts - 1 through 15 (of 27 total)
Place your code in an activeX script if it isn't already. Check the return value of the proc call either by using recordset, or parameter. If the error is returned...
May 5, 2005 at 7:45 am
I have experienced behavior like this when tryin to execute queries via the dts steps/tasks. I only use activeX scripts in DTS now because they are more reliable and don't...
May 5, 2005 at 7:33 am
Another, more simple factor could just be your aggregations. If You do not have the necessary aggregations on your partition(s)/cube then raw data will have to be queried to return...
May 5, 2005 at 7:26 am
Moving the querylog table to the sql server is a two part process. First you must migrate the actual jet file over to the sql server you want it...
April 6, 2005 at 7:15 am
Ahh, now that's a possibility. The TempDB is on another file, and I know it is sustaining much activity in this process, but I haven't checked it's size or really...
April 5, 2005 at 1:01 pm
Thank you for the suggestions so far. It is in simple mode, and the log file is 5 GB - it never needs to grow. I have a solution that...
April 5, 2005 at 12:41 pm
I have experienced weird behavior from sending queries with the nonemptycrossjoin and the non empty functions. I prefer the non empty function over the nonemptycrossjoin, but either way i have...
April 5, 2005 at 10:22 am
From what I can gather by your situation the best way to accomplish this task is with MDX. It doesn't sound so much like a schema issue to me.
"SELECT...
April 5, 2005 at 10:06 am
uhm, yes you can use the ado objects and methods via extended stored procs in Sql.
I have provided a specific real life example, but it is not well documented. Let...
March 31, 2004 at 9:18 am
I am inclined to agree with you. Besides, it can't be easy to come up with a new question every single day. I am satisfied with taking my bad mark...
March 29, 2004 at 4:12 pm
That would probably be to difficult to administrate. I am thinking more in conceptual terms. By thinking of it in these terms questions could be tailored (made easier or harder)....
March 29, 2004 at 1:11 pm
As a matter of fact that 80% idea of yours is pretty good. You can't base the legitimacy of a question on whether it made you think, or if you...
March 29, 2004 at 9:25 am
This was a bad quesion. Questions that yield a single wrong answer of over 50%, or where the right answer has under 30% are bad questions. These questions should not...
March 29, 2004 at 8:23 am
select a.department,a.mgr_id,b.mgr,a.emp1_id,c.emp1,a.emp2_id,d.emp2
from dept_table a
join employees b
on a.mgr_id = b.emp_id
join employees c
on a.emp1_id = c.emp_id
join employees d
on a.emp2_id = d.emp_id
order by a.department
Just replace emp_id with whatever the column name is in employees that represents the...
March 9, 2004 at 9:08 am
I REALLY didn't want to have to edit the registry, but your first link looked pretty solid, so I just went with it. I was, btw, working on SQL 7,...
March 5, 2004 at 5:08 pm
Viewing 15 posts - 1 through 15 (of 27 total)