Viewing 15 posts - 136 through 150 (of 363 total)
[font="Verdana"]
SELECT
ACCT.CUST_ACCT_ID,
('SHAW') AS SOURCE_SYS ,
(CASE WHEN (SUBSTRING(ACCT.OPR_ACCT_NR,14,3) =...
MH-09-AM-8694
June 26, 2008 at 10:41 am
[font="Verdana"]
Try this...
declare @i varchar(100)
set @i = '''as400'',''cps'''
select * from t_system where systemcode in (@i)
Mahesh
[/font]
MH-09-AM-8694
June 26, 2008 at 10:30 am
[font="Verdana"]I got the answer. At 1st occurance Temp Table does not have data, so it obviously going to Scan the table.
Mahesh[/font]
MH-09-AM-8694
June 23, 2008 at 6:39 am
[font="Verdana"]Solution given by Michael is correct. You must be missing something. Check it out.
Mahesh[/font]
MH-09-AM-8694
June 19, 2008 at 8:07 am
[font="Verdana"]
sachinthamke (6/18/2008)
I m using the stored procedure for storing usp_InsertMaster,usp_InsertDetail. the detail sp used to store the items for sending the XML parameters there is...
MH-09-AM-8694
June 19, 2008 at 2:29 am
[font="Verdana"]Such temporary objects gets stored into TempDB database. you will get it from there.
Select * From sysobjects where Name = '{temp table name}'
Mahesh[/font]
MH-09-AM-8694
June 19, 2008 at 2:24 am
[font="Verdana"]OPENXML will help you in such case.[/font]
MH-09-AM-8694
June 17, 2008 at 10:30 am
[font="Verdana"]
stacya (6/12/2008)
MH-09-AM-8694
June 17, 2008 at 10:20 am
Jeff Moden (6/12/2008)
Michael Earl (6/12/2008)
OpenQuery will allow you to do this.Do you have example code of how to use OpenQuery to export to a CSV File?
Jeff, Michael might have intent...
MH-09-AM-8694
June 17, 2008 at 10:15 am
[font="Verdana"]Have you tried nText datatype, I am not sure but it might help you.
Mahesh[/font]
MH-09-AM-8694
June 17, 2008 at 10:02 am
Mahesh Bote (6/9/2008)
[font="Verdana"]fyi...Editor's Note: Link removed.
Mahesh[/font]
ll take care in future
MH-09-AM-8694
June 16, 2008 at 6:43 am
[font="Verdana"]fyi...
Editor's Note: Link removed.
Mahesh[/font]
MH-09-AM-8694
June 9, 2008 at 8:40 am
[font="Verdana"]Search for PIVOT in BOL.
Mahesh[/font]
MH-09-AM-8694
May 27, 2008 at 10:19 am
[font="Verdana"]Run SQL Profiler, through which you can get all the information you desired.
Mahesh[/font]
MH-09-AM-8694
May 27, 2008 at 10:17 am
[font="Verdana"]I doubt, this is possible through TSQL. Better you go and check the File object (I am not sure, under which Namespace it comes) in ASP .Net. You will surely...
MH-09-AM-8694
May 27, 2008 at 6:48 am
Viewing 15 posts - 136 through 150 (of 363 total)