Viewing 15 posts - 2,596 through 2,610 (of 8,761 total)
Here is a quick solution that should get you passed this hurdle
😎
Note that it is around 4 times more efficient than the code you posted
USE TEEST;
GO
SET NOCOUNT ON;
DECLARE @TXML TABLE...
November 29, 2016 at 10:06 am
rodjkidd (11/29/2016)
Eirikur Eiriksson (11/24/2016)
Gazareth (11/24/2016)
Eirikur Eiriksson (11/24/2016)
Gazareth (11/24/2016)
BWFC (11/24/2016)
ThomasRushton (11/24/2016)
BLOB EATER (11/24/2016)
GilaMonster (11/24/2016)
Brandie Tarvin (11/24/2016)
Much prefer chocolate or herbal tea (decaf).
The office kitchen also caters to stranger tastes, with 3...
November 29, 2016 at 9:02 am
HappyGeek (11/29/2016)
I am looking at tempdb, it has 8 data files plus the log. the mdf file has initial size of...
November 29, 2016 at 8:57 am
trhorner (11/29/2016)
I plan to do full and log backup restores of...
November 29, 2016 at 8:43 am
Quick questions, what is the IO subsystem setup? Are those tempdb files set up on different IO paths? What are the top tempdb waits (sys.dm_exec_request / sys.dm_os_waiting_task)? Are there more...
November 29, 2016 at 8:21 am
Sqlsavy (11/29/2016)
Volume of records held in the database- 18000000
Volume of updates per day thru overnight batch- 50k
Database growth expected to...
November 29, 2016 at 7:10 am
GilaMonster (11/28/2016)
Steve Jones - SSC Editor (11/28/2016)
My daughter grinds beans each morning for her french press and froths milk. She usually makes enough to give me a cup 😉
I have...
November 29, 2016 at 2:39 am
DamianC (11/28/2016)
Use these techniques for merges a lotNever used SCD 3 though and never used deleted
Very useful to have them all in one location
Thanks
What are the business / reporting requirements?...
November 28, 2016 at 9:18 am
Chad Crawford (11/28/2016)
Eirikur Eiriksson (11/24/2016)
Unfortunately, I've found the English coffee culture being almost no better than the American, totally inadequate, must say that it's not my cup of tea....
November 28, 2016 at 9:16 am
S_Kumar_S (11/28/2016)
We have a scenario, where busniess users are presented with a screen with 20+ fields. They can choose any number of fileds to build a dynamic SQL query in...
November 28, 2016 at 8:32 am
daielyko129316 (11/28/2016)
failed : 23 data error (cyclic redundancy check)
Can you please check your IO subsystems log files, Windows Event Logs and any other applicable log files for error entries!
😎
Further, run...
November 28, 2016 at 2:26 am
What do you see in the SQL Server Error Log?
😎
EXEC sp_readerrorlog;
November 28, 2016 at 2:09 am
Two examples, one using Pivot and the other using CrossTab
😎
Pivot
USE TEEST;
GO
SET NOCOUNT ON;
;WITH SAMPLE_DATA(Site_ID,Name,Address,City,Postal,Type) AS
( SELECT X.Site_ID,X.Name,X.Address,X.City,Postal,X.Type
FROM (VALUES
(12345,'John','123...
November 28, 2016 at 1:19 am
rajemessage 14195 (11/27/2016)
i use loops sparigly , but when ever i use them , i see following pionts like
1) i am reading same table mulitpule times...
November 27, 2016 at 6:26 am
Quick question, what is last_wait_type in sys.dm_exec_requests showing for the spid?
😎
November 27, 2016 at 5:40 am
Viewing 15 posts - 2,596 through 2,610 (of 8,761 total)