SQLcommitted

Committed with SQL

SQL Server Questions and Answers

1. Difference between replace and Stuff function.

Answer: Replace function  replaces all occurrences of a specified string value with another string value.

The STUFF function inserts a string into another string. It deletes a specified length of characters in the first string at the start position and then inserts the second string into the first string at the start position.

Replace function returns nvarchar if one of the input arguments is of the nvarchar data type; otherwise, REPLACE returns varchar and it returns NULL if any one of the arguments is NULL.

Stuff function returns character data if character_expression is one of the supported character data types and  it returns binary data if character_expression is one of the supported binary data types.

Ex: Select Replace (‘ABC123DEF123’,’123’,’—‘)

The above code will replace all occurrence of 123 with — and output will be ABC—DEF—

Select Stuff(‘ABCDE’,2,3,’000’) will return A000E

2. Can I create Foreign Key with defining a Primary Key?

Answer:  Yes, It is possible to create a Foreign Key without having  a primary key.

Foreign key can be created by referring a Unique Key.

About these ads

3 Comments »

  1. From data perspective, what is the significance of usage of DBCC DROPCLEANBUFFERS, is this good practice to use this ? Objective is trying to read data from disk and memory.

    Comment by Damodar Baliga.B | June 15, 2012 | Reply

  2. Would like to know more about DBCC FREEPROCCACHE command from performance perspective

    Comment by Damodar Baliga.B | June 15, 2012 | Reply


Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Follow

Get every new post delivered to your Inbox.

Join 60 other followers

%d bloggers like this: