Viewing 15 posts - 1,441 through 1,455 (of 5,103 total)
Just Wrap the cte in a CREATE VIEW satatement and from Crystal just use the view.
hope is clear.
October 17, 2007 at 11:44 am
Note that those values are populated at will by the client application ( in the connection string )
October 17, 2007 at 11:42 am
And, can you actually put an update trigger as you state on a view in 2k5? I don't think so... but I could be wrong.
Yes you are. You can even...
October 17, 2007 at 8:35 am
joachim.verhagen (10/17/2007)
October 17, 2007 at 8:30 am
in addition setting the 'trunc. log on chkpt.' to true is almost equivalent to change recovery mode to Simple wich also can have catastrofic implications at recovery time.
-Noel
October 17, 2007 at 8:08 am
error code: '5'. implies Access Denied.
Check the File access permissions that the SQL Agent Account has on the file(s)/Folder(s) you are trying to access
October 17, 2007 at 8:04 am
I addition you should code your trigger to be "multi-row" aware always.
October 17, 2007 at 7:51 am
In your TRIGGER at the begining
do something like this:
IF @@NESTED_LEVEL > 1
BEGIN
RETURN
END
October 16, 2007 at 4:51 pm
BOOKS ONLINE is your best friend 🙂
October 16, 2007 at 4:46 pm
The correct "casting" function should be STR.
DECLARE @fl AS FLOAT
SET @fl = 789512385
SELECT str(@fl,9,0)
October 16, 2007 at 4:40 pm
you can also pass the parameters of the "function" to the stored procedure and use
CROSS APPLY operator to get the desired results
October 16, 2007 at 4:33 pm
Olga,
You should follow the syntax "EXACTLY" as was posted above if you need a different ORDER BY just supply it at the end of the CTE.
EX:
create table steps (from_step_id int,...
October 16, 2007 at 4:30 pm
Brandon Forest (10/16/2007)
October 16, 2007 at 4:16 pm
In addition you should talk to your "clients" and find out what "percent" increase are they expecting in their business and factor that in!
I also go for the double rule...
October 16, 2007 at 3:56 pm
rhat (10/16/2007)
In six years, I've used them twice, and both times I had time (a minute or two) to look them up first and make sure I was using...
October 16, 2007 at 3:46 pm
Viewing 15 posts - 1,441 through 1,455 (of 5,103 total)