Viewing 15 posts - 16 through 30 (of 39 total)
Koen Verbeeck (4/13/2012)
patelmohamad (4/13/2012)
Agree with you koen but the column indexing will be lost in it and in my next step i have used the same statement but with where...
April 13, 2012 at 5:30 am
Koen Verbeeck (4/13/2012)
patelmohamad (4/13/2012)
Please read my question then suggest some better solution,
I did read the question. Do you think I randomly type stuff in forum topics?
I did have to guess...
April 13, 2012 at 5:15 am
Koen Verbeeck (4/13/2012)
Drop the identity column and add a simple integer column with the same name.
Hi Koen,
Please read my question then suggest some better solution,
before posting My question on Sqlservercenteral.com...
April 13, 2012 at 4:04 am
Hi Sean,
this the Actual function which has been used in many procedures and in functions,
the use of the "GetDeviceLogData_SpecifiedTime" is depend upon procedures
i need Latitude,Longitude. and in some...
February 27, 2012 at 11:11 pm
Hi sean,
the UDF which i have created is
Table1 is the Clone copy of Table2 for fast process we are transfering the data from table2 to table1
hope you understand the...
February 22, 2012 at 5:46 am
Hi,
I have done some calculation internally which is required... but that calculation has to been done each and every time i calls the procedures or write any other..
is it good...
February 20, 2012 at 9:49 pm
BEGIN
SET NOCOUNT ON
DECLARE
@RowIndex INT
,@RowCount INT
,@Name VARCHAR(300)
,@SQLQuery VARCHAR(MAX)
IF NOT OBJECT_ID('tempdb..#tempCheckDatabase') IS NULL
BEGIN
DROP TABLE #tempCheckDatabase
END
SELECT
Identity(INT ,1 ,1) AS RowID
,NAME AS DBName INTO #tempCheckDatabase
FROM sys.databases WITH (NOLOCK)
SELECT
@RowCount...
November 2, 2011 at 12:59 am
Hi guys,
I found the solution
it's in Options "Results in TEXT" Just uncheck the "Include column headers in result set"
Thanks
October 12, 2011 at 3:49 am
Thanks guys
and Gianluca thank you once again for posting a article of Kalen Delaney
it gives the details of the Temptable
October 12, 2011 at 12:21 am
Thanks Gianluca Sartori
September 30, 2011 at 11:16 pm
Thanks guys for your precious suggestion
September 28, 2011 at 12:19 am
Hi Sean,
Agree with you but in Asp.Net application we holds the data in DataTable,List or Dataset Basically the Data holder and then display in grid, my question is same for...
August 30, 2011 at 12:50 am
Hi Sean,
Thanks for your valuable suggestion, and i have implemented and search other things and discovered
Please have a look and suggest if i am missing something...
SET NOCOUNT ON;
DECLARE...
August 24, 2011 at 12:58 am
Thanks sean,
Agree with you,
my solution is little bit slow... but my question is to search a respective data in any of the column of the database tables.
Hope i...
August 19, 2011 at 11:44 pm
Viewing 15 posts - 16 through 30 (of 39 total)