Viewing 15 posts - 3,901 through 3,915 (of 8,761 total)
ChrisM@Work (1/22/2016)
Ed Wagner (1/22/2016)
Greg Edwards-268690 (1/21/2016)
Eirikur Eiriksson (1/21/2016)
Greg Edwards-268690 (1/21/2016)
Steve Jones - SSC Editor (1/21/2016)
Greg Edwards-268690 (1/21/2016)
January 23, 2016 at 9:58 am
Ed Wagner (1/23/2016)
jasona.work (1/22/2016)
I'm checking my servers for DBs that aren't TDE enabled and I come across a DB I *KNOW* was encrypted this...
January 23, 2016 at 9:49 am
Ed Wagner (1/23/2016)
January 23, 2016 at 9:45 am
Jeff Moden (1/22/2016)
Eirikur Eiriksson (1/22/2016)
January 23, 2016 at 9:39 am
Strongly advice you not to use the format function as it performs very badly.
😎
January 23, 2016 at 5:38 am
jcachado (1/23/2016)
But i need bigger than 15 minutes!The statement is ok but the condition > '00:15:00' dont work.
🙁
Thks,
Cachado
You have 15 minutes passed midnight in your query, if you need...
January 23, 2016 at 4:55 am
jcachado (1/23/2016)
Hi, i need help please,
Why this not work:
SELECT change_dtim,create_dtim,ckpt_id,Format([change_dtim]-[create_dtim],'hh:nn:ss') as tempo FROM Back_ickpt_plz where tempo > '00:15:00'
if i remove the where tempo > '00:15:00' , run .
What is my...
January 23, 2016 at 4:30 am
Luis and Jack, you are both right in the terms of suppressing the problem, preventing it is in my mind a better approach.
😎
January 22, 2016 at 8:46 am
I'll have a look, can you get couple of data samples to work with, makes things easier as otherwise I would have to start guessing.
😎
I've done systems that to high...
January 22, 2016 at 7:29 am
Brandie Tarvin (1/22/2016)
Eirikur Eiriksson (1/22/2016)
😎
CREATE TABLE #dbsize
(
Dbname SYSNAME ...
January 22, 2016 at 7:24 am
Quick suggestion, change the #dbsize create script
😎
CREATE TABLE #dbsize
(
Dbname SYSNAME ...
January 22, 2016 at 5:20 am
er.mayankshukla (1/22/2016)
In one of the application, we have to restrict the developers from creating a table with unicode columns.
I was thinking if I can use Policy based management for...
January 22, 2016 at 1:29 am
Eric M Russell (1/21/2016)
Eirikur Eiriksson (1/20/2016)
...
Quite impressive, 28 operators in the execution plan, parallel execution, four full table scans and I'm now putting out the fire ignited by the CPU...
January 22, 2016 at 1:26 am
The quick suggestion towards a solution posted earlier was just that, less than two minutes of coding to demonstrate a method for identifying groups in sequences. Now with further 5...
January 22, 2016 at 1:22 am
Quick suggestion, a different and more efficient way of doing this
😎
USE tempdb;
GO
SET NOCOUNT ON;
DECLARE @SAMPLE_SIZE INT = 1000;
;WITH T(N) AS (SELECT N FROM ( VALUES (0),(0),(0),(0),(0),(0),(0),(0),(0),(0)) AS...
January 21, 2016 at 11:01 pm
Viewing 15 posts - 3,901 through 3,915 (of 8,761 total)