Viewing 15 posts - 3,841 through 3,855 (of 8,753 total)
Quick suggestion, use the .nodes function
😎
USE tempdb;
GO
SET NOCOUNT ON;
DECLARE @TXML XML = '<xml-response>
<clear-fraud>
<clear-fraud-stabilities>
<clear-fraud-stability>
...
March 7, 2016 at 4:07 am
mrjae (3/6/2016)
I am new to sql server and i am practicing on SQL Express. I have created a table and in error I have duplicated rows. My first...
March 6, 2016 at 4:58 am
ganapathy.arvindan (3/6/2016)
Please Help me Query/Performance Tuning Steps with out help of profiler
Quick suggestion, get Grant's book on execution plans[/url]
😎
March 6, 2016 at 3:04 am
Quick and simple solution with LEAD()
😎
USE tempdb;
GO
SET NOCOUNT ON;
declare @overlap table
(
ID int identity,
infoname char(10),
code char(10),
mods char(30),
type varchar(30),
effective date ,
termination date
)
insert into @overlap
select 'DUMMY','99205','C','*','01/01/2008','12/31/2100'
insert into @overlap
select 'DUMMY','99205','C','*','01/01/2009','12/31/2100'
insert into @overlap
select...
March 4, 2016 at 9:41 pm
Quick suggestion, similar to Luis's
😎
DECLARE @LOG_STRING VARCHAR(200) = 'Login failed for user ''User1''. Reason: Failed to open the explicitly specified database. [CLIENT: 11.11.11.11]';
SELECT
SUBSTRING
...
March 4, 2016 at 1:18 pm
MotivateMan1394 (2/28/2016)
Ask help from old-hands
We have a server : win 2008 R2 enterprise (virtual machine) - Sql server 2014 - sp1
we had 22 cpu core which...
February 28, 2016 at 7:54 am
farax_x (2/19/2016)
BEGIN TRY
IF '1' COLLATE Arabic_CI_AI = '1' COLLATE Arabic_100_CI_AI
...
February 20, 2016 at 3:44 am
Sean Lange (2/15/2016)
Grant Fritchey (2/15/2016)
Hugo Kornelis (2/15/2016)
jasona.work (2/15/2016)
How do you feel if someone comes back and tells you that they tested a solution you provided before...
February 15, 2016 at 2:28 pm
Lynn Pettis (2/15/2016)
Eirikur Eiriksson (2/15/2016)
Luis Cazares (2/15/2016)
Eirikur Eiriksson (2/15/2016)
Luis Cazares (2/15/2016)
Eirikur,Any reason for using FLOOR on an integer division?
Old oracle habit
😎
:sick:Oracle:sick:
yup, the difference between \ and / :pinch:
😎
We got you...
February 15, 2016 at 2:20 pm
Luis Cazares (2/15/2016)
Eirikur Eiriksson (2/15/2016)
Luis Cazares (2/15/2016)
Eirikur,Any reason for using FLOOR on an integer division?
Old oracle habit
😎
:sick:Oracle:sick:
yup, the difference between \ and / :pinch:
😎
February 15, 2016 at 1:27 pm
Luis Cazares (2/15/2016)
Eirikur,Any reason for using FLOOR on an integer division?
Old oracle habit
😎
February 15, 2016 at 9:44 am
koti.raavi (2/15/2016)
I have got a one column in table containing different Client ID's. There are 3000 rows in a table ...I need a data with comma separated(each row...
February 15, 2016 at 1:25 am
Phil Parkin (2/12/2016)
Grumpy DBA (2/12/2016)
I believe Brandie...
February 12, 2016 at 9:24 am
Quick and simple suggestion, encapsulate the SMO in a CLR.
😎
February 12, 2016 at 9:09 am
Viewing 15 posts - 3,841 through 3,855 (of 8,753 total)