Viewing 15 posts - 4,876 through 4,890 (of 7,636 total)
ajaykini (11/8/2008)
Please advise what needs...
November 8, 2008 at 11:46 am
Ramu Reddy (11/7/2008)
There is a function fn_split().Make use of it.
There are many such functions, but none of them are built into SQL Server.
November 8, 2008 at 10:06 am
ajaykini (11/7/2008)
Barry:What would you suggest instead?
An inline function that uses a recursive CTE instead. Like this:
CREATE FUNCTION dbo.BSGGetReports3( @IncludeParent bit, @user-id int )
RETURNS TABLE AS -- inline table-valued...
November 8, 2008 at 9:45 am
Question: Your function is referencing a "Status" column that is not in your table definition?
November 8, 2008 at 8:32 am
You need a GROUP BY, and as this isn't MS-Access, I don't think that the #..#'s are going to work:
SELECT Booking.Lesson_Date, Lesson_Type.Lesson_Desc, COUNT (Booking.Lesson_CatId) AS TotalTestAndSessions
FROM Session_Information
INNER...
November 7, 2008 at 8:33 pm
Please show us what you already have for your stored procedure.
November 7, 2008 at 8:16 pm
Jeff Moden (11/7/2008)
rbarryyoung (11/7/2008)
November 7, 2008 at 7:59 pm
As I recall, the next tip in my presentation is #5: "Master Key is NOT Optional", and I did not see you creating master keys for your databases, so you...
November 7, 2008 at 4:44 pm
Did you check all three error message locations?
1) sys.transmission_queue (source and target)
2) Initiator's Reply Queue
3) SQL Server Error Logs
November 7, 2008 at 4:41 pm
mcginn (11/7/2008)
Sorry about that.The error code is: -8425
The error text is:
The service contract 'RecordSalesContract' is not found.
Right, I was just getting...
November 7, 2008 at 4:25 pm
We cannot see the error message. If it is in XML then either post it as a txt attachment or just cut and paste out the text message portion...
November 7, 2008 at 4:13 pm
A Cursor-based recursive function? Wow. That is going to be slow.
November 7, 2008 at 4:03 pm
OK, so is anything showing up in [RecordSalesQueue] on [actiondb] (the Initiator Queue)?
November 7, 2008 at 3:50 pm
Jason Hanson (11/7/2008)
Thge thing is....You do not know which variables can be created, because they can be different per project.
Then they should not be in variables in the first place,...
November 7, 2008 at 1:06 pm
Viewing 15 posts - 4,876 through 4,890 (of 7,636 total)