Viewing 15 posts - 17,056 through 17,070 (of 59,067 total)
jssashank (8/11/2016)
--Jeff Moden
Change is inevitable... Change for the better is not.
August 11, 2016 at 8:50 pm
Steven.Grzybowski (8/11/2016)
--Jeff Moden
Change is inevitable... Change for the better is not.
August 11, 2016 at 8:40 pm
Snargables (8/11/2016)
What would be the best way to do this? The db is in simple mode. i need a copy format that doesnt write to trans log.Ideas?
Where do you want...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 11, 2016 at 8:36 pm
Luis Cazares (8/11/2016)
You might have some options to copy the table, but answer Eirikur's questions so we can have more...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 11, 2016 at 8:29 pm
TomThomson (8/11/2016)
crookj (8/11/2016)
Manic Star (8/11/2016)
djj (8/11/2016)
Ed Wagner (8/11/2016)
Revenant (8/11/2016)
whereisSQL? (8/11/2016)
djj (8/11/2016)
Ed Wagner (8/11/2016)
Grumpy DBA (8/11/2016)
Ed Wagner (8/11/2016)
Ray K (8/10/2016)
Ed Wagner (8/10/2016)
Ray K (8/10/2016)
Luis Cazares (8/10/2016)
Emmet BrownBiff Tannen
Butthead
Beavis
Mr. Anderson
Agent Smith
Neo
Nemo
Dory
Fishy
Fried
Chicken
Wings
Paul
Damascus
Road
--Jeff Moden
Change is inevitable... Change for the better is not.
August 11, 2016 at 8:24 pm
You don't need Powershell for this. Google for Brent Ozar's "sp_Blitz" and Adam Machanic's "sp_WhoIsActive".
Just remember... if you can't write it, you might not be able to maintain it.
--Jeff Moden
Change is inevitable... Change for the better is not.
August 11, 2016 at 5:55 pm
Clint-525719 (8/11/2016)
--Jeff Moden
Change is inevitable... Change for the better is not.
August 11, 2016 at 5:52 pm
ben.brugman (8/11/2016)
Eric M Russell (8/11/2016)
"If you break a few eggs, then make an omelet."
Christopher Columbus,... challenges his critics to make an egg stand on its tip. After his challengers...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 11, 2016 at 8:11 am
sjimmo (8/11/2016)
Thanks Jeff. I was simply offering an alternative. Should have looked more closely at the dates. :hehe:
Absolutely understood and alternatives are great. I appreciate your post even if...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 11, 2016 at 8:05 am
sjimmo (8/10/2016)
DECLARE @valVARCHAR(30)SELECT @val = '9.0.0832.1032'
SELECT @val
SELECT SUBSTRING(@val, LEN(@val) - 6, 2)
That will work but only if you only ever need the right 2 of the 3rd element and...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 10, 2016 at 6:52 pm
You'd have none of these problems if you stored the data as normalized data instead of XML. 😉
--Jeff Moden
Change is inevitable... Change for the better is not.
August 10, 2016 at 6:14 pm
fafful (8/10/2016)
Table_A (InsuranceNo, JobNo,Processed) values('Anton1',NULL),('Jason1', NULL),('Citirus2',NULL)
Table_B (InsuranceNo, XmlResponse)
values ('Anton1','<Boot><Jobs><Job_entered jobno="2122" logged_info="Job number 2122">2122</Job_entered></Jobs></Boot>'),
('Citirus2','<Boot><ErrorDetails> a problem occured with data </ErrorDetails></Boot>')
Question:
I want to update Table_A Jobno column with the...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 10, 2016 at 8:24 am
For more information and a better understanding of the method that Orlando is using, please see the following article.
http://www.sqlservercentral.com/articles/T-SQL/63681/
--Jeff Moden
Change is inevitable... Change for the better is not.
August 10, 2016 at 8:11 am
naren.ece2012 (8/10/2016)
I need a power-shell script to obtain the following information Name of the database , LastBackupDate of the database and this information should be sent via an email...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 10, 2016 at 8:06 am
Ed Wagner (8/10/2016)
The CONVERT function supports the format you want to use. Just apply it to a column instead.
SELECT CONVERT(Varchar(10), GETDATE(), 110);
Do T-SQL functions actually work inn SSIS, Ed?...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 10, 2016 at 7:57 am
Viewing 15 posts - 17,056 through 17,070 (of 59,067 total)