Viewing 13 posts - 16 through 28 (of 28 total)
James, there is a code tag you can use when posting code to make it more readable...
February 10, 2011 at 3:37 am
natedogg_0923 (2/10/2011)
when i execute the function
Msg 537, Level 16, State 5, Procedure createInsertSP, Line 78
Invalid length parameter passed to the LEFT or SUBSTRING function.
Msg 537, Level 16,...
February 10, 2011 at 3:01 am
It'll only create stored procedures for tables that looks like this:
CREATE TABLE [tablename] (
identitycolumn INT IDENTITY(1,1)
...
)
February 10, 2011 at 3:00 am
It's only handling identity PKS and that's quite limiting for my taste. Maybe you should evolve it some more and it could be useful for more people.
February 10, 2011 at 12:57 am
Geoff A (11/15/2010)
Kristian Ask (11/15/2010)
hugo-939487 (11/15/2010)
SELECT [Month] = DATENAME(mm,SomeDateTime),
Amount = SUM(SomeAmount)
FROM #MyHead
...
November 15, 2010 at 7:08 am
hugo-939487 (11/15/2010)
SELECT [Month] = DATENAME(mm,SomeDateTime),
Amount = SUM(SomeAmount)
FROM #MyHead
WHERE SomeDateTime >=...
November 15, 2010 at 5:03 am
scoia (10/6/2010)
Just curious, but for the sake of...
October 7, 2010 at 5:13 am
chrisn-585491 (5/17/2010)
May 17, 2010 at 1:19 pm
Only one thing wrong here... decrypting SPs or views is not very complicated and would be a scriptable task to perform on any database (I wouldn't recommend decrypting a live...
May 17, 2010 at 6:09 am
If it was really encrypted it would be fine to keep it but as it isn't I can live without it.
Installing it at a customer site won't prevent them from...
May 17, 2010 at 1:49 am
Here is a revised script...
CREATE PROCEDURE [dbo].[sp_who3]
@SPID INT = NULL,
@DBName ...
April 28, 2010 at 12:04 am
Roman Vinnik (4/27/2010)
April 28, 2010 at 12:01 am
Viewing 13 posts - 16 through 28 (of 28 total)