Viewing 15 posts - 5,146 through 5,160 (of 13,872 total)
September 22, 2017 at 8:16 am
What are you all using for Version and Source Control? And how do you...
September 22, 2017 at 7:07 am
September 22, 2017 at 6:12 am
My SQL Prompt settings gave me this. Not perfect, but better.UPDATE a
SET
a.source = 'CP'
, a.PREVENTCOPY = CR.Landing.PREVENTCOPY
, a.PREVENTPRINT = CR.Landing.PREVENTPRINT
, a.ISAMOVAR = CR.Landing.ISAMOVAR
, a.ID...
September 21, 2017 at 2:14 pm
September 21, 2017 at 1:05 pm
One further small request for help... If I wanted to make...
September 20, 2017 at 12:11 pm
This should do it - no CURSOR required.WITH Missed
AS
(
SELECT
t.Section
, t.Missed
, PrevMissed = LAG(t.Missed, 1) OVER (PARTITION BY t.Section
September 20, 2017 at 11:52 am
September 20, 2017 at 11:43 am
I get the below error from this sqlselect (serno * 100) / ...
September 20, 2017 at 11:03 am
Looks like there is a C# way of doing this, if you're happy doing some scripting. A quick Google turned this up:
private void CreateDummyFile(string...
September 20, 2017 at 11:01 am
September 20, 2017 at 10:55 am
The 53248 is the size of the text file I want. Basically it's telling the process to create a minimal text file of 56 KB in size.
Just a...
September 20, 2017 at 9:02 am
September 20, 2017 at 5:41 am
I have been working for a database consulting company for the last 3.5 years and...
September 19, 2017 at 5:45 am
September 18, 2017 at 12:43 pm
Viewing 15 posts - 5,146 through 5,160 (of 13,872 total)