Viewing 15 posts - 61 through 75 (of 93 total)
Basically i was unable to undertsand why the condition
Scenarioname='[Change6]-[Existing Customer]-[FE / FDV + Video SPL FL DCT with VTP = NO]' is failing?
June 1, 2009 at 1:42 pm
Experts..
I am struggling to fix...can any one please help....?
April 10, 2009 at 10:32 am
It works. I just checked. just copy from here and paste in your code.
EXEC('Insert into temptable1'+ @sp_id + ' values (10,''XXXXX'')')
Try and let me know.
--Prasad
August 17, 2007 at 5:00 am
Hi,
It's a minor mistake. you might overlooked at it.
change the code to
EXEC('Insert into temptable1'+ @sp_id + 'values (10,''XXXXX'')')
It works. by mistake, you have removed 1 in the insert...
August 17, 2007 at 4:35 am
As per the recent experience i had with one of projects, After loading to production one procedure started taking more than 9 minutes to return result set. when i checked...
June 15, 2007 at 3:21 pm
--Sorry..the Script provided by me is to find out the spaces of Databases..hence am rolling back my posting.. ---
June 13, 2007 at 4:08 pm
Nope tomm..The query can do much more than just getting max..
By replacing 1 with 2 in that query will fetch second maximum,
By replacing 1 with 3 in that query will fetch...
June 8, 2007 at 1:11 pm
I got the solution...Its started working after i altered the DB
ALTER DATABASE Deals
SET ARITHABORT ON
GO
June 6, 2007 at 1:19 pm
One more point to be added...
Recently i have added a column in the main table and that column was derived column and wil concatenate the two columns values to popualte....
June 6, 2007 at 12:28 pm
Try using this from QA.
Declare @vchrBulkCmd varchar(500)
SET @vchrBulkCmd = 'BULK INSERT TblCsv
FROM ''c:\Testcsv.txt''
WITH ( DATAFILETYPE=...
June 6, 2007 at 11:05 am
YOu can use the following sample code:
SET @vchrBulkCmd = 'BULK INSERT #ALLFILES
FROM ''c:\AllFiles.txt''
WITH ( DATAFILETYPE= ''char'', ROWTERMINATOR = '''+CHAR(10)+''' ) '
EXEC(@vchrBulkCmd)
This code is dumping from allfiles.txt...
May 25, 2007 at 3:59 pm
am not sure about the query you are using, but when navigations required from one page to another, have another column in the table with auto increment, then when you...
May 23, 2007 at 3:14 pm
This way we are explicitly dropping FK constaraint before dropping the column..This is always possible. but if you see th example i have quoted in my first post, In oracle,...
May 23, 2007 at 3:08 pm
Viewing 15 posts - 61 through 75 (of 93 total)