Click here to Skip to main content
15,889,874 members

sanwar_mal_jat - Professional Profile



Summary

    Blog RSS
826
Authority
40
Debator
48
Editor
16
Enquirer
262
Organiser
920
Participant
0
Author
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Reputation

Weekly Data. Recent events may not appear immediately. For information on Reputation please see the FAQ.

Privileges

Members need to achieve at least one of the given member levels in the given reputation categories in order to perform a given action. For example, to store personal files in your account area you will need to achieve Platinum level in either the Author or Authority category. The "If Owner" column means that owners of an item automatically have the privilege. The member types column lists member types who gain the privilege regardless of their reputation level.

ActionAuthorAuthorityDebatorEditorEnquirerOrganiserParticipantIf OwnerMember Types
Have no restrictions on voting frequencysilversilversilversilver
Bypass spam checks when posting contentsilversilversilversilversilversilvergoldSubEditor, Mentor, Protector, Editor
Store personal files in your account areaplatinumplatinumSubEditor, Editor
Have live hyperlinks in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Have the ability to include a biography in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Edit a Question in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Edit an Answer in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Delete a Question in Q&AYesSubEditor, Protector, Editor
Delete an Answer in Q&AYesSubEditor, Protector, Editor
Report an ArticlesilversilversilversilverSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending ArticlegoldgoldgoldgoldSubEditor, Mentor, Protector, Editor
Edit other members' articlesSubEditor, Protector, Editor
Create an article without requiring moderationplatinumSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending QuestionProtector
Approve/Disapprove a pending AnswerProtector
Report a forum messagesilversilverbronzeProtector, Editor
Approve/Disapprove a pending Forum MessageProtector
Have the ability to send direct emails to members in the forumsProtector
Create a new tagsilversilversilversilver
Modify a tagsilversilversilversilver

Actions with a green tick can be performed by this member.


 
GeneralUse Regex.Matchin C# for a string Pin
sanwar_mal_jat16-Sep-12 21:41
sanwar_mal_jat16-Sep-12 21:41 
GeneralPrint All table name in MS SQL Server and get total rows in tables Pin
sanwar_mal_jat12-Sep-12 1:49
sanwar_mal_jat12-Sep-12 1:49 
GeneralHow to remove Foreign key constaints and Truncate tables and recreate constaints Pin
sanwar_mal_jat11-Sep-12 21:10
sanwar_mal_jat11-Sep-12 21:10 
GeneralConvert Decimal no to Binary no. Pin
sanwar_mal_jat10-Sep-12 23:30
sanwar_mal_jat10-Sep-12 23:30 
GeneralAnchor tag for send email (mailto) , CC,BCC, Subject and Mail Message fill automatically Pin
sanwar_mal_jat7-Sep-12 1:27
sanwar_mal_jat7-Sep-12 1:27 
GeneralFacebook LIke button Pin
sanwar_mal_jat3-Sep-12 19:16
sanwar_mal_jat3-Sep-12 19:16 
GeneralEncrypt and Decrypt a string in asp.net c# Pin
sanwar_mal_jat30-Aug-12 21:10
sanwar_mal_jat30-Aug-12 21:10 
GeneralSimple but fact Pin
sanwar_mal_jat28-Aug-12 23:49
sanwar_mal_jat28-Aug-12 23:49 
Select '130'+'120'+1 --> Ans-130121  	In this query the first plus sign between two strings indicates the concatenation and the second plus sign between second string and digit 1 indicates the addition the string will converted to digit at the time of addition. 

SELECT DATEADD(s,0,0) --> Ans- 1900-01-01 00:00:00.000  DATEADD function adds zero seconds to default datetime 1900-01-01 00:00:00.000 

SELECT ISNULL(1,2) -->  Ans 1	ISNULL checks the first argument, if it is NULL then it returns the second argument. Else it returns first argument. 

-- Ques Table A has 10 rows including 3 Null rows. Table B has 7 rows including 3 Null rows. 
Select Count(*) from [Table A]Select Count(Column Name) from [Table B]
--> Ans- Table A will return 10 rows and Table B will return 4 rows   (Because when we use count(*),it will return total number of rows in a table including null rows. But count(column Name) will only return NOT NULL rows.)


-- Ques-- What is the maximum number of columns that can participate in a TABLE's primary key? --> 16  

 -- Quest  	The default varchar, nvarchar datatype length is 30  NOTE->when we use it with the cast option ,Using as like
 select  CAST('aaaaaaaaaaaaaaaaaaaaabbddddddddddddFF' as nvarchar) 
 select CONVERT(nvarchar ,'aaaaaaaaaaaaaaaaaaaaabbddddddddddddFF')
 
 -- if  use this type then it will take only Default strating 1 value
 
 declare @Type nvarchar
set @Type='aaaaaaaaaaaaaaaaaaaaabbddddddddddddFF'  
print @Type  
 
 
 -- In SQL Server 2012, how many index types are available?  Answer-->10,12
 
 -- 1. A Temporary Table can have primary keys and indexes defined -Answer-->True

--2. A Table Variable can have primary keys and indexes defined -Answer-->True


--How many maximum processor cores does SQL Server 2008 R2 Datacenter edition support?  -Answer-->256

Thanks & Regards

Sanwar

GeneralGet Distinct one column From a table using multiple column different value Pin
sanwar_mal_jat24-Jul-12 2:03
sanwar_mal_jat24-Jul-12 2:03 
GeneralGet all of stored procedure name related of your table in sql server Pin
sanwar_mal_jat19-Jul-12 1:05
sanwar_mal_jat19-Jul-12 1:05 
Generaldifferance between Convert.ToString() and .Tostring() Pin
sanwar_mal_jat16-Jul-12 21:32
sanwar_mal_jat16-Jul-12 21:32 
GeneralCompare 2 string valuses ASCII valuse compare in sql server Pin
sanwar_mal_jat29-Jun-12 3:33
sanwar_mal_jat29-Jun-12 3:33 
GeneralConcatenate as Houseno, cityname , state , as like address Pin
sanwar_mal_jat29-Jun-12 2:13
sanwar_mal_jat29-Jun-12 2:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.