Viewing 15 posts - 3,736 through 3,750 (of 8,731 total)
If you're working on Access, the syntax might be slightly wrong. However, the logic is there so you can correct it.
If you're working on SQL Server, you should change your...
November 24, 2015 at 8:15 am
sknox (11/24/2015)
Hugo Kornelis (11/24/2015)
From the answer options I deduced that I...
November 24, 2015 at 8:10 am
ben.brugman (11/24/2015)
So I create a stored procedure starting with a sp_ in the name.In general the advise is not to do this.
In general, the advise is to avoid naming stored...
November 24, 2015 at 7:54 am
Maybe "What's wrong with this table?" should be change to something like "What's wrong with the syntax of this statement to create a table"?
November 24, 2015 at 7:35 am
The problem in here is the query. Other than adding hardware, there's no other viable solution.
If they're labeling the file name with an underscore, it's fine, but they don't need...
November 23, 2015 at 12:43 pm
You could use RANK instead of ROW_NUMBER. That might lead to a different problem when you have duplicate rows in patientref.
If you have an additional column that deduplicates the row,...
November 23, 2015 at 12:10 pm
Brandie Tarvin (11/23/2015)
Luis Cazares (11/23/2015)
Is it me or many people don't really understand error handling or why and how to use try...catch...?
It's not just you. Though, to be fair, Try...Catch...
November 23, 2015 at 9:16 am
Is it me or many people don't really understand error handling or why and how to use try...catch...?
November 23, 2015 at 9:01 am
If it gets into the CATCH, and the CATCH doesn't have a RAISERROR. Then, the agent won't consider the error.
Either you use RAISERROR or you use THROW. Otherwise, when you...
November 23, 2015 at 8:59 am
Brandie Tarvin (11/23/2015)
November 23, 2015 at 8:55 am
My guess is that you can't have the proper indexes for the query to run correctly. The query needs to sort the patientref each time, which is what might be...
November 23, 2015 at 8:50 am
From what I understood from your problem, it seems that you were really close to the solution. You need to use the APPLY approach because you need to correlate your...
November 23, 2015 at 7:55 am
Does it really throws an error? Or does it just displays a message as configured in the TRY...CATCH...?
Are you using THROW?
November 23, 2015 at 7:21 am
Brandie Tarvin (11/23/2015)
Hey, guys, we have a language conversion question over here. Can anyone assist with this?
I'm sure this is just a typical PEBKAC. 😀
November 23, 2015 at 6:47 am
Viewing 15 posts - 3,736 through 3,750 (of 8,731 total)