Viewing 15 posts - 46 through 60 (of 107 total)
this worked for me
SELECT spr.name AS ProcedureName,SUBSTRING(sd.definition,
CHARINDEX('n:',sd.definition)+2, 45)AS Definition, spa.name AS
ParameterName, st.name AS ParameterType, spa.max_length, spa.is_output
...
February 5, 2012 at 4:29 am
i am adding description on SHIFT+CONTROL+M
here is sample
-- =============================================
-- Author:Myname
-- Create date: 18 oct
-- Description:Display city list
-- =============================================
ALTER PROCEDURE procName
@Error INT OUTPUT
AS
BEGIN
--select query
END
February 1, 2012 at 10:08 pm
I tried like this
select R.rolename,P.canRead,P.canWrite,P.canDelete,M.Id,M.DisplayName from role R,rolesPermissions P,tbl_be_Modules M where M.Id=P.ModuleId and R.roleID=P.roleId
January 7, 2012 at 11:30 pm
captcooldaddy (1/4/2012)
So how do i unhash it?
I suggest you to encript and decript on application side.....
here is example how to do in C#
private string EncodePassword(string password)
...
January 5, 2012 at 1:49 am
All of you are informed that my requirements have been changed and for ease and clearness i created another post here
Please visit here and help me.i want to close this...
January 5, 2012 at 1:25 am
AD7 (1/4/2012)
The following query can be used to extract hierarchical or "tree structured" data.
/** setup data **/
declare @table table (ID int, PID...
January 4, 2012 at 6:16 am
WITH tbl_be_modules (parentid)
AS
(
SELECT DISTINCT parentid FROM tbl_be_modules
)
SELECT
T.Id,
STUFF((
...
January 4, 2012 at 5:54 am
If sys.columns is table name(as i have single table)...then i do have two ids,one is Id and other is PID(parentID).so what do you mean by object_id?please differentiate PromeryKey Id which...
January 4, 2012 at 5:44 am
i know that sys.tables is Mytable name but what is sys.columns C
WHERE C.object_id =...
January 4, 2012 at 5:32 am
Ninja's_RGR'us (1/4/2012)
SELECT
T.name,
STUFF((
SELECT
...
January 4, 2012 at 5:19 am
January 4, 2012 at 5:10 am
GSquared (12/21/2011)
engrshafiq4 (12/20/2011)
i am asking SSC Eights!
He correct my code in his above post.and that worked for me.
Let me explain the issue
consider i have a table
CREATE TABLE...
December 21, 2011 at 6:26 am
Dev (12/21/2011)
Koen Verbeeck (12/21/2011)
Phil Parkin (12/21/2011)
But it will continue to cause confusion, and, for some, I suspect, annoyance.
Tsk tsk tsk, Hall Of Fame, is that the christmas spirit?...
December 21, 2011 at 2:59 am
Sorry for your confusion.
i am asking SSC Eights!
He correct my code in his above post.and that worked for me.
Let me explain the issue
consider i have a table
CREATE TABLE [dbo].[Cities](
[CITY] [nvarchar](40)...
December 20, 2011 at 10:36 pm
@SSC:
Good,this worked fine for me,now the only issue is i need checks now.
For example i want to have first column of integer data and second must not be null and...
December 17, 2011 at 10:30 pm
Viewing 15 posts - 46 through 60 (of 107 total)