Viewing 15 posts - 10,636 through 10,650 (of 26,489 total)
pdanes (7/19/2012)
Lynn Pettis (7/19/2012)
You could also use dynamic sql to build the query that needs to be executed based on the parameters passed to the stored procedure.
Yes, I've done that...
July 19, 2012 at 10:02 am
You could also use dynamic sql to build the query that needs to be executed based on the parameters passed to the stored procedure.
July 19, 2012 at 9:46 am
Did you use the image data type or the varbinary(max) data type? I'm asking because text, ntext, and image data types have been depreciated since the release of SQL...
July 19, 2012 at 9:42 am
Charmer (7/19/2012)
I am trying to concatenate a string and datetime....i did it....but after concatenating , i am getting date and time like Jul 19 2012...
July 19, 2012 at 7:56 am
Swetha527 (7/19/2012)
I think you are unable to provide the dynamic script for the scenario i have given.Thank you.
You can think what you like, but I'm not going to give you...
July 19, 2012 at 7:48 am
Koen Verbeeck (7/19/2012)
Don't get me wrong, I love to read (read the whole Dexter series...
July 19, 2012 at 7:36 am
raghuldrag (7/17/2012)
if u dnt mind... wr i have to chck link pls tel clearly
I am sorry, but I have absolutely no idea what you just said here. It would...
July 19, 2012 at 12:43 am
Swetha527 (7/19/2012)
I did read it. But i am unable to write dynamic script for the same. Please help me.
If you can't write dynamic sql, I'm not going to write it...
July 19, 2012 at 12:36 am
Swetha527 (7/19/2012)
I need columns and data like
[LoanNumber] B1.FirstName B1.LastName C1.FirstName C1.LastName E1.FirstName E1.LastName
-----------------------------------------------------------------------------------------
ABC12345 Swathi ...
July 19, 2012 at 12:17 am
Good question. I over thought and picked the wrong answer. Yes, you can restore the database from any of the snapshots, you just have to delete all but...
July 19, 2012 at 12:12 am
Is this what you were looking for?
select
t2.[LoanNumber],
stuff((select ', ' + t1.RPTTypeCode + '.' + t1.FirstName + ',' + t1.RPTTypeCode + '.' +...
July 19, 2012 at 12:00 am
From another thread:
Swetha527 (7/18/2012)
[RPTTypeCode] [char](2) NULL,
[Firstname] [varchar](50) NULL,
[LastName] [varchar](50) NULL,
[BarrowerID] [int] NULL,
[LoanTransID] [int] NULL
) ON [PRIMARY]
insert into [Trans1] values('B1','Swathi','B',10,1),('C1','Anu','CH',11,1),('E1','Chintu','KK',13,1)
CREATE TABLE [dbo].[Trans2](
[LoanAppID] [int] NULL,
[LoanTransID] [int] NULL,
[LoanNumber] [varchar](10) NULL
) ON...
July 18, 2012 at 11:44 pm
Post replies here.
Please do not post multiple times.
July 18, 2012 at 11:42 pm
Took me a while to accomplish this. It turned out that the hardest part was getting the select criteria correct to properly align the schedule times to the buckets.
Please...
July 18, 2012 at 11:37 pm
Viewing 15 posts - 10,636 through 10,650 (of 26,489 total)