Viewing 15 posts - 151 through 165 (of 243 total)
I haven't worked with SS2005, but it does make sense that SS2K will not be as capable of linking up with SS2005 as vice versa, so I'm glad you've managed...
October 27, 2007 at 1:14 am
Where is the reference to Transactions coming from in the error message? Are you by any chance using Transactions?
October 26, 2007 at 6:20 am
Thanks Jacob, works like a charm!
October 23, 2007 at 7:14 am
Ramesh, thanks for grasping the idea so fast, I am grateful.
The idea is a Hall Reservation will be JOINed with "<=" and a Room Reservation with "<" only.
I adapted your...
October 23, 2007 at 6:52 am
I have indicated the line where I want the dynamic join, unfortunately the colour coding is not coming out correctly. It is at the first JOIN on D to RT.
October 23, 2007 at 6:22 am
VAIYDEYANATHAN.V.S (10/23/2007)
Thanks, I took a look at it; it is good but not of immediate use for me for this issue.
October 23, 2007 at 3:08 am
Kenneth Wilhelmsson (10/23/2007)
Why not use the and and only unambigous, language and datesetting independent format we have?'SSYYMMDD'
..should work with any SQL Server anywhere in the world.
/Kenneth
I tried all possible date...
October 23, 2007 at 2:35 am
I fixed it somehow; I don't know why CR was displaying the parameters in an order different from the one required by sproc, so I reordered them.
Thanks to all.
October 22, 2007 at 8:27 am
Hi, guys, sorry to bother you again but I need help from any Crystal Reports pros here. What is the proper format to pass date values to DateTime variables in...
October 22, 2007 at 5:49 am
Thanks, Luebbers, you've all been a great help.
I don't think I need to use the perm tables to hold my temp data anymore if I can pass the whole recordset...
October 22, 2007 at 12:58 am
As easy as that? Thanks, I'll give it a shot.
Now, to the slightly tougher part:
I need to open this sproc's output as a data source for Crystal Reports' how can...
October 21, 2007 at 6:37 am
One of my sprocs that populates a DB table:
CREATE PROCEDURE [dbo].[sp_DAILYMOVEMENTS] @MyDate DateTime AS
DELETE MOVEMENT
INSERT INTO MOVEMENT(TODAY, ROOMNAME, ROLLOVER, ARRIVAL, DEPARTURE)
SELECT @MyDate, Description,
...
October 20, 2007 at 12:58 am
Thanks to each of you; now, if I use this in VB6 simply as it is, will it work?:
Cnn.Execute "If @@trancount > 0 RollBack"
(where 'cnn' is my ADO Connection)
October 20, 2007 at 12:51 am
[Quote]Set RS=Server.CreateObject("Adodb.Recprdset")
RS.ActiveConnection="Some connection to a database"
Sql = "Select Id, Name From Users Where Name like '%Smi%'
Set RS=RS.Open SQL
If Not RS.Eof Then
While Not Rs.Eof
Response.Write("Id =" & RS("Id") & " - ")
Response.Write("Name...
October 19, 2007 at 8:39 am
Thanks, pal, but what I meant was how do I retrieve the temp table returned by the sproc into my vb code? How do I get a handle on it...
October 19, 2007 at 8:16 am
Viewing 15 posts - 151 through 165 (of 243 total)