Search This Blog

Thursday, August 29, 2013

Gastronomy Delight Of Delhi

 


Delhi has been long time been known as the food Capital of India. Delhi gives you the option to choose from cuisines for a fine dining experience or the street food, latter one being more famous.

Street Food in Delhi – As I am drafting this my mouth watering with the thought of the Golgappa’s, Aloo Chaat, Tikki!!! These three items in the street food category are the 1st one that comes to one’s thought!! Though every locality in Delhi will have a famous “Chaat wallah” as they are referred here, but the best one’s located in Bengali Market near C.P.(Connaught Place in Central Delhi) Also, one can get a taste of Bengali style of golgappe at CR Park(Chittranjan Park) in South Delhi. Golgappe or Pani Puri, as they are popularly called, are small water balls filled with boiled diced potatoes and chickpeas and topped with sweet n spicy water made with tamarind pulp and some spices.


Golgappe


 


Aloo Chaat is shallow fried diced potato until very crispy and mixed with spicy masala and tamarind or lemon juice. This is served very hot. Aloo chaat is also a local delicacy and can be found in every part of local market in Delhi.


 


aloo-chat


Tikki – Tikki is made of boiled and mashed potato. Its shaped into a semi flattened patty with a filling in the center made of peas mixed in spicy masala!! The patty is then shallow fried in a pan until crispy golden from both the sides! The patty is served hot with tamarind chutney, mint chutney, some sliced onion and little bit of curd!! For the tikki to taste divine, the key is the crispiness in the patty. The patty should be flattened a bit more that the regular method and shallow fried until its crispy. The best tikki is available in Noida Sec 25 market.


tikki


If you are in Delhi, do ensure that you do not leave the city without tasting these Delights of Delhi!!!


 



Gastronomy Delight Of Delhi

Search Database for Keywords or across all tables

/* Visit my blog


http://exuberantindia.com/


*/


CREATE PROC dbo.KeywordSearchDB

(

@SearchStr nvarchar(100)

)

AS

BEGIN

CREATE TABLE #Results (ColumnName nvarchar(370), ColumnValue nvarchar(3630))


SET NOCOUNT ON


DECLARE @TableName nvarchar(256), @ColumnName nvarchar(128), @SearchStr2 nvarchar(110)

SET  @TableName = ”

SET @SearchStr2 = QUOTENAME(‘%’ + @SearchStr + ‘%’,””)


WHILE @TableName IS NOT NULL

BEGIN

SET @ColumnName = ”

SET @TableName =

(

SELECT MIN(QUOTENAME(TABLE_SCHEMA) + ‘.’ + QUOTENAME(TABLE_NAME))

FROM     INFORMATION_SCHEMA.TABLES

WHERE         TABLE_TYPE = ‘BASE TABLE’

AND    QUOTENAME(TABLE_SCHEMA) + ‘.’ + QUOTENAME(TABLE_NAME) > @TableName

AND    OBJECTPROPERTY(

OBJECT_ID(

QUOTENAME(TABLE_SCHEMA) + ‘.’ + QUOTENAME(TABLE_NAME)

), ‘IsMSShipped’

) = 0

)


WHILE (@TableName IS NOT NULL) AND (@ColumnName IS NOT NULL)

BEGIN

SET @ColumnName =

(

SELECT MIN(QUOTENAME(COLUMN_NAME))

FROM     INFORMATION_SCHEMA.COLUMNS

WHERE         TABLE_SCHEMA    = PARSENAME(@TableName, 2)

AND    TABLE_NAME    = PARSENAME(@TableName, 1)

AND    DATA_TYPE IN (‘char’, ‘varchar’, ‘nchar’, ‘nvarchar’)

AND    QUOTENAME(COLUMN_NAME) > @ColumnName

)


IF @ColumnName IS NOT NULL

BEGIN

INSERT INTO #Results

EXEC

(

‘SELECT ”’ + @TableName + ‘.’ + @ColumnName + ”’, LEFT(‘ + @ColumnName + ‘, 3630)

FROM ‘ + @TableName + ‘ (NOLOCK) ‘ +

‘ WHERE ‘ + @ColumnName + ‘ LIKE ‘ + @SearchStr2

)

END

END

END


SELECT ColumnName, ColumnValue FROM #Results

END


 


Save the procedure and call it for testing


exec dbo.KeywordSearchDB @SearchStr = ‘test’



Search Database for Keywords or across all tables