Viewing 15 posts - 1 through 15 (of 57 total)
Thanks Koen and Sqlnavie,
CTE way is simple. thanks for updating
July 31, 2012 at 1:21 am
Hi Koen,
Your CTE query gives incorrect result for 1001 value.
July 31, 2012 at 1:11 am
Hi SQLNavie,
I achived the solution using Cursor query. Please find below query
Declare @tempTable as table(id int, value Int)
Declare @value as int
DECLARE @CUR AS CURSOR
SET @CUR = CURSOR...
July 31, 2012 at 12:59 am
Supurb Article, I was looking for such article.
Do you have SQL Server 2000 scripts for the same
Regards
Shashi Kant Chauhan
October 13, 2009 at 6:03 am
Thanks Bill,
For sharing such a good Upgrade plan Specially the Excel sheet you have uploaded.
May 8, 2009 at 1:10 am
How i do this ?.. Can you give me an example or some step by step sort of thing....
March 5, 2009 at 9:04 am
Thanks Mate,
This is really a good suggestion to use the EXEC option for dbcc commands
I used this command in this manner
SELECT 'shashi', a.* FROM OPENROWSET('SQLOLEDB',
'DRIVER={SQL Server};SERVER=.;Trusted_Connection=yes;',
'SET NOCOUNT ON;SET FMTONLY OFF;...
November 14, 2008 at 12:16 pm
Thanks Mate,
This query solves my problem.....
Regards
Shashi kant Chauhan:)
September 10, 2008 at 6:38 am
Thanks Patrick Schneider
Nice solution for this problem and your Provide solution
ALTER INDEX index_name ON table_name SET (ALLOW_PAGE_LOCKS = ON)
is working fine in my case.
Thanks & Regards
Shashi Kant chauhan
July 9, 2008 at 1:47 pm
HI,
There is other alternative available for this header option
You can get this option by selecting these options
Query -> Query Options ->Results -> and then select the option of Include column...
June 13, 2008 at 8:50 am
Hi, So far i have not recived any expert suggestion of my problem.
what should i do when my computed column have some relation with other tables column
Regards
shashi kant chauhan
April 28, 2008 at 10:05 pm
Try....
Sp_helpdb
and
sp_msforeachdb 'sp_helpdb [?]'
Regards
shashi kant chauhan 🙂
April 20, 2008 at 3:02 am
Hi to all,
I got the solution of this problem in my case.
As mentioned above in this post First i check the Trigger on my table
using sp_helptrigger 'table_name'
and found there...
March 5, 2008 at 7:14 am
Hi chirag,
I am using a single server which have the access to all 500 servers.
If you have any script for doing this either by vb script code or some batch...
February 22, 2008 at 3:30 am
I agree with Matt Whitfield
while loop concept is more eassy then using cursor
and this method is good in conceptually but not feasible practically when you are dealing with...
January 2, 2008 at 6:06 am
Viewing 15 posts - 1 through 15 (of 57 total)