Viewing 15 posts - 4,651 through 4,665 (of 8,761 total)
mar.ko (9/2/2015)
Is there a way to -include mysql.sql or something like that ?
How does everyone handle...
September 2, 2015 at 10:50 pm
Ed Wagner (9/2/2015)
DonlSimpson (9/2/2015)
Luis Cazares (9/2/2015)
whereisSQL? (9/2/2015)
Ed Wagner (9/2/2015)
crookj (9/2/2015)
BL0B_EATER (9/2/2015)
Ed Wagner (9/2/2015)
BL0B_EATER (9/2/2015)
SQLRNNR (9/1/2015)
spinelessbackbone
Accountability
responsible
liable
Law
Lawyer
Judge
Jury
Executioner
Capital Punishment
September 2, 2015 at 12:07 pm
Steve Cornwell-278514 (9/2/2015)
September 2, 2015 at 5:56 am
What else is running on this server apart from the SQL Server? Why such a meagre memory configuration if the server has 512Gb of RAM? Are you RDP'ing on to...
September 2, 2015 at 12:33 am
Munabhai (9/1/2015)
CREATE TABLE #TEMP
(
date1 DATE,
date2 DATE
)
insert into #TEMP values
('2011-06-18','2011-06-29'),('2010-12-09','2010-12-15'),('2011-03-04','2011-03-16'),('2010-02-09','2010-07-08'),('2010-03-10','2010-03-31'),
('2010-03-31',null),('2014-08-01',null),(null,'2010-07-08'),('2010-07-08',null),(null,'2014-05-23'),
('2011-02-09','2011-02-02'),('2011-06-22','2011-06-14'),(null,null),(null,null)
SELECT date1, date2,
CASE
WHEN (ISNULL(date1, '1900-01-01') = '1900-01-01' AND ISNULL(date2, '1900-01-01') = '1900-01-01') THEN 0
WHEN ISNULL(date2, '1900-01-01')...
September 1, 2015 at 10:06 am
jharvey6 76850 (8/31/2015)
August 31, 2015 at 12:14 pm
Ed Wagner (8/31/2015)
SQLRNNR (8/31/2015)
Brandie Tarvin (8/31/2015)
Ed Wagner (8/31/2015)
Sean Lange (8/31/2015)
Grant Fritchey (8/31/2015)
August 31, 2015 at 12:04 pm
For fun, here is an alternative
😎
USE tempdb;
GO
SET NOCOUNT ON;
DECLARE @STR_DATE VARCHAR(6) = '083115';
SELECT CONVERT(DATETIME,STUFF(STUFF(@STR_DATE,3,0,'/'),6,0,'/'),1);
Output
2015-08-31 00:00:00.000
August 31, 2015 at 4:10 am
sunnyepgc (8/31/2015)
August 31, 2015 at 1:53 am
balasach82 (8/30/2015)
August 30, 2015 at 2:52 am
balasach82 (8/30/2015)
Inside the proc, an cursor is created and 300K...
August 30, 2015 at 12:41 am
alessandro.feltrin (8/29/2015)
Hello. I need to implement a Lab environment and in order to do this i have installed a new Virtual Machine with the same configuration and Software releases.
I've performed...
August 29, 2015 at 5:23 am
Spent several days once debugging a system and the bug turned out tobe caused by nolock hints.
😎
August 27, 2015 at 5:51 pm
Thank you for this interesting question Hugo.
😎
Slightly taken aback seeing the overall results though
Correct answers:6%
Incorrect answers:94%
August 27, 2015 at 1:43 am
The site is once again very slow, up to 90sec between clicks :sick: and images particularly slow!
😎
August 27, 2015 at 1:10 am
Viewing 15 posts - 4,651 through 4,665 (of 8,761 total)