Viewing 15 posts - 1,846 through 1,860 (of 6,486 total)
Right-click on the database name, Tasks, Generate Scripts. If you look at the scripting options, you can set it to script out the permissions.
July 21, 2009 at 11:36 am
Ahmed Yarub Hani (7/21/2009)
The code that he gave to me thankfully will not do the job
The following steps should take place,...
July 21, 2009 at 10:13 am
gage.trader (7/20/2009)
Jack Corbett (7/20/2009)
July 20, 2009 at 3:43 pm
Lynn Pettis (7/20/2009)
July 20, 2009 at 3:38 pm
GilaMonster (7/20/2009)
Gianluca Sartori (7/20/2009)
I don't think this means something like "Are the posted questions getting BETTER?"
Should I...
July 20, 2009 at 3:36 pm
Try this on as the guts for your proc:
SELECT @wk = DATEPART(WEEK,MIN(TD)) FROM EDS_TD GROUP BY strEmpID
SET @bIsEven = CASE WHEN (@WK % 2)=0 THEN 1 ELSE 0 END...
July 20, 2009 at 2:57 pm
You're not going to be able to use a function for this.
Functions:
- cannot run EXEC statements
- cannot run stored procedures unless they're system extended stored procs...
July 20, 2009 at 2:45 pm
Honestly - if you are not sure what this might hit, making an assumption might be dangerous.
Start easy. Use something like the freely downloadable SQL Health and History utility,...
July 20, 2009 at 1:11 pm
Grant Fritchey (7/14/2009)
July 14, 2009 at 11:34 am
Jeff Moden (7/14/2009)
Matt Miller (7/13/2009)
Jeff Moden (7/13/2009)
Dave Ballantyne (7/13/2009)
You can lead a horse to water but you cant force him to drink
Heh... well... you can if you don't mind getting...
July 14, 2009 at 11:24 am
Steve Jones - Editor (7/11/2009)
July 14, 2009 at 11:18 am
Your CASE can only return only data type. So - your ELSE statement is likely screwing things up, since it's the only one that definitely gives a type (numeric...
July 14, 2009 at 11:03 am
You need to define an output parameter to pass the identifier back out. Something like:
CREATE PROCEDURE [insert_Bejovok_1]
(@BejovoTipus_1 [int],
@BejovoSorSzam_2 [varchar](50),
@BejovoDatum_3 [datetime],
@BejovoSzallito_4 [int],
@BejovoFizmod_5 [varchar](50),
@BejovoFizHat_6 [datetime],
@BejovoKiegyenlites_7 [datetime],
@BejovoDeviza_8 [int],
@BejovoBelsoSorszam_9 [varchar](50),
@ReturnID integer OUTPUT)
AS
BEGIN
INSERT...
July 14, 2009 at 7:32 am
David Brusowankin (7/13/2009)
Thanks for your informative post. I saddens me that 10 years after Informix bought Illustra and merged their solution into that database platform, Microsoft still hasn't caught up....
July 13, 2009 at 2:02 pm
Did "the Thread" just eat itself? It disappeared from the recent posts query....
July 13, 2009 at 10:45 am
Viewing 15 posts - 1,846 through 1,860 (of 6,486 total)