Viewing 15 posts - 3,481 through 3,495 (of 8,761 total)
Quick though, possibly the most straight forward thing to do is to run the Profiler and catch the actual statements being run.
😎
July 11, 2016 at 7:30 am
olibbhq (7/11/2016)
July 11, 2016 at 3:45 am
olibbhq (7/11/2016)
July 11, 2016 at 3:34 am
VastSQL (7/11/2016)
Eirikur Eiriksson (7/11/2016)
VastSQL (7/11/2016)
The BatchRequest\Sec value for our OLTP system is showing 150 for the most critical time. I felt this as very low , can you guide...
July 11, 2016 at 3:07 am
Quick suggestion, simply use OPENJSON with the path name, no need to use JSON_QUERY
😎
USE TEEST;
GO
SET NOCOUNT ON;
--
DECLARE @returnedCitation NVARCHAR(MAX) = N'{
"kind": "books#volumes",
"totalItems": 1,
"items": [
{
...
July 11, 2016 at 2:55 am
Quick suggestion that looks first for 3 digits and then 6 digits in the remainder of the string
😎
USE TEEST;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'tempdb..#TestString') IS NOT NULL DROP TABLE #TestString;
create table #TestString(OldString...
July 11, 2016 at 2:25 am
VastSQL (7/11/2016)
The BatchRequest\Sec value for our OLTP system is showing 150 for the most critical time. I felt this as very low , can you guide me on what...
July 11, 2016 at 2:00 am
durga.palepu (7/10/2016)
Thank you, that's what exactly I am looking for and its helped me a lot.I will focus on XML schredding further and learn about it deeper.
You are very welcome.
😎
July 10, 2016 at 10:45 am
ulisseslourenco (7/7/2016)
I have a tsql code with for XML explicit and when there are empty value the code must be <tag><tag/> instead of
<tag/>, but I didn't know...
July 10, 2016 at 5:55 am
Quick thought, only one modification can be done with modify at the time, therefore it may be simpler to use either a query or FLWOR (For, Let, Where, Order by,...
July 10, 2016 at 4:42 am
Here is a quick solution that starts by selecting the DataArea node and then remove the Sync node from the selection, should be enough to get you passed this hurdle.
😎
DECLARE...
July 9, 2016 at 9:40 pm
ffarouqi (7/9/2016)
I am stuck in a situation where the sliding window job is throwing me an error as such. I am not really sure on how to deal with...
July 9, 2016 at 3:21 am
Missed the three hours earlier, here is an improved query
😎
;WITH SAMPLE_DATA(ID,datetime,rain) AS
(SELECT ID,CONVERT(DATETIME,datetime,112),rain FROM (VALUES
(1,'20160101 01:00:00', 0)
,(1,'20160101 03:00:00', 8)
,(1,'20160101 05:00:00', 6)
,(1,'20160101 06:00:00', 0)
,(2,'20160101 08:00:00', 6)
,(2,'20160101 10:00:00', 0)
,(2,'20160101 15:00:00', 0)
,(3,'20160101...
July 5, 2016 at 10:52 pm
Quick suggestion, look up the SIGN function
😎
;WITH SAMPLE_DATA(ID,datetime,rain) AS
(SELECT ID,CONVERT(DATETIME,datetime,112),rain FROM (VALUES
(1,'20160101 01:00:00', 0)
,(1,'20160101 03:00:00', 8)
,(1,'20160101 05:00:00', 6)
,(1,'20160101 06:00:00', 0)
,(2,'20160101 08:00:00', 6)
,(2,'20160101 10:00:00', 0)
,(2,'20160101 15:00:00', 0)
,(3,'20160101 16:00:00', 0)
,(3,'20160101 20:00:00',10)
,(3,'20160101...
July 5, 2016 at 9:27 pm
Jeff Moden (7/3/2016)
Eirikur Eiriksson (7/2/2016)
Spam, spam and again spam 🙁 Why on earth is it so hard to tackle this problem on sqlservercentral.com???😎
From what I've heard, it's because they don't...
July 5, 2016 at 9:49 am
Viewing 15 posts - 3,481 through 3,495 (of 8,761 total)