Viewing 9 posts - 31 through 39 (of 39 total)
I was looking for solution which gives me the details of the table and column which contains respective data,
Just go through the code
SET NOCOUNT ON;
DECLARE @indexRow INT,
@rowCount int,...
August 19, 2011 at 6:43 am
Thanks for your Reply...
i found other way, please check it
DECLARE @sqlquery VARCHAR(1000)
SELECT @sqlquery= N'IF EXISTS (SELECT ' + CHAR(39) + 'AC_Cancellation_Master' + CHAR(39) + '...
August 19, 2011 at 5:55 am
this is the normal query
through this we will come to know whiether the records exists or not in the table
if EXISTS(SELECT Sr_No FROM #Temp_Table_Col WHERE Sr_No = @iIndexCol)
BEGIN
SELECT Sr_No...
February 18, 2011 at 3:59 am
the following code illustrate you in breif actual i want the table name, respective column data from over all Tables of the Database
DECLARE @iIndexRow INT ,@RowsCount_Row int ,
February 15, 2011 at 2:04 am
Server: Msg 170, Level 15, State 1, Line 34
Line 34: Incorrect syntax near 'SP_EXECUTESQL'.
February 15, 2011 at 1:45 am
Try this
Use Northwind
SELECT * FROM [Product Sales for 1997]
WHERE ProductName LIKE '%_im%'
result set
CategoryName ProductName ...
November 27, 2010 at 12:35 am
Thanks subbusa2050
it works and implemented in my project.
Regards
November 26, 2010 at 3:09 am
HI,
Avoid Cursor , Using While loop
Just go through it
----- Solution ----- 1
If Identity Column Does not exist in the table
...
November 26, 2010 at 12:16 am
Try with this add underscore in your search
Name like '_ohn%'
Patel Mohamad
November 26, 2010 at 12:11 am
Viewing 9 posts - 31 through 39 (of 39 total)