Viewing 15 posts - 76 through 90 (of 90 total)
First, I don't understand why the review_date_time of your "Resuts Before" is in ascending order, when the Order by clause of your SQL statement says "SIGHTING_TABLE.review_date_time desc"
However, have you tried:
Order...
January 17, 2005 at 9:33 am
Wayne,
noeld is right, you should always specify a field list in the INSERT clause.
However, having said that, I ran your first query in Query Analyzer, substituting literal strings for your e.emp_id...
January 14, 2005 at 12:15 pm
I wasn't offended, but as a fellow professional I didn't want you to be under the impression that the solution you put forward would return the result set that I...
January 12, 2005 at 9:24 am
Chris,
Having SQL Server differentiate between different alpha characters was NOT the problem. What I wanted was for SQL Server to differentiate between identical values that differ only in the case of...
January 12, 2005 at 8:46 am
Instead of having multiple RETURNs in the trigger, why not rewrite the trigger and structure it so that if an error condition is encountered the trigger bypasses the rest of...
January 11, 2005 at 5:34 pm
Perfect, AJ! That's exactly what I was looking for.
Thanks!
January 11, 2005 at 3:34 pm
Don't expect much from me, I haven't worked with Db2 or Neon before. I'm just brainstorming as a disconnected outsider.
Are you absolutely sure you are getting completely thrown out of the stored procedure? ...
January 7, 2005 at 10:21 am
Journeyman: cant you run a profiler trace on users or certain people, whom you suspect of doing so. And if you catch them, then fire them?
The only problem is, that's after the...
January 7, 2005 at 8:40 am
Sam,
If you have DTS packages that need to run sequentially, you can use a SQL Agent Job (Management => SQL Server Agent => Jobs in the tree on the left side...
January 6, 2005 at 9:17 am
Nicholas Cain: "Would preventing access to MSDB not accompish this?"
Possibly not. A DTS packags can be executed by a SQL Agent Job, and the SQL Agent Job can be...
January 6, 2005 at 9:08 am
First, don't use "Set" to assign a value to a variable. "Set" is used to initialize an Object, which a variable is not.
Secondly, you have to assign the output of...
January 6, 2005 at 8:32 am
Maybe because I didn't know I could, which is why I was asking how to do it in the first place?
January 5, 2005 at 8:37 am
Let me be very clear, here.
I am trying to return the recordset to my DTS package. I need to process the recordset in the DTS package, not process it in a...
January 4, 2005 at 11:09 am
From reading your post it looks like you want to know guests who will be in the hotel for at least one day between 8/1/05 and 8/10/05. It also looks like...
January 4, 2005 at 11:04 am
Viewing 15 posts - 76 through 90 (of 90 total)