Viewing 15 posts - 16 through 30 (of 69 total)
CREATE table #AllCountryStates
(
CountryName NVARCHAR(100),
Treeid int
)
insert INTO #AllCountryStates
select N'??',1
select * from #AllCountryStates
declare @Country NVARCHAR(1000)
SELECT @Country = STUFF(
(SELECT ',' + ''
+...
May 16, 2019 at 2:07 pm
May 16, 2019 at 12:37 pm
Thank you so much. It is working fine.
April 24, 2019 at 5:29 am
thank you it is working fine.
March 19, 2019 at 8:02 am
thank you so much.
March 19, 2019 at 7:46 am
Hi Team,
Support if i take only date in this table.
is it possible to get the expected output.
please help.
create table trend1
(
keyinstn INT,
ratingdate...
March 19, 2019 at 2:35 am
Thank you so much it is working fine.
February 20, 2019 at 9:48 pm
Hi,
Looks like it will work but i am using SQL Server 2014.
we dont have this function "string_split"
can you please provide alternative to this.
July 20, 2018 at 5:18 am
Thank you so much.
October 5, 2017 at 7:28 am
please try this code it is working fine.
SELECT *
FROM (
SELECT
SOFTWAR_ID
...
October 9, 2014 at 7:05 am
Sorry still i am not clear on my question ?
My question is
1. When we will use SET XACT_ABORT ON in my procedures ?
a)if...
September 10, 2014 at 2:07 am
thanks for you reply but if possible can u please explain me with example.
September 9, 2014 at 7:58 am
need one more help.
table insert cost is 30%. how to reduce this cost.
September 3, 2014 at 7:37 am
Thank you very much.
it is working fine.
August 25, 2014 at 3:44 am
Viewing 15 posts - 16 through 30 (of 69 total)