Viewing 15 posts - 4,171 through 4,185 (of 8,761 total)
arnierowland (12/25/2015)
SELECT geometry::Parse('POLYGON((
4 0, 0 0, 3 2, 1 2, 3 4, 1 4, 3 6, 2 6,
4 8, 6 6, 5 6, 7 4, 5 4, 7...
December 25, 2015 at 1:32 pm
My suggestion is to rewrite this query, quite certain that there is no need for neither dynamic sql nor the nested replace. The syntax is correct but the methods are...
December 25, 2015 at 3:24 am
December 24, 2015 at 12:42 pm
Brandie Tarvin (12/24/2015)
Eirikur Eiriksson (12/24/2015)
Steve Jones - SSC Editor (12/24/2015)
Eirikur Eiriksson (12/24/2015)
Banks seem to be capable of doing date math, I've for instance seen interests paid early😎
I'm not sure that's...
December 24, 2015 at 12:40 pm
Quick question, are you storing passwords in plain text?
😎
December 24, 2015 at 9:49 am
Steve Jones - SSC Editor (12/24/2015)
Eirikur Eiriksson (12/24/2015)
Banks seem to be capable of doing date math, I've for instance seen interests paid early😎
I'm not sure that's capable. More just "able".
Or...
December 24, 2015 at 9:39 am
Steve Jones - SSC Editor (12/24/2015)
Date math is hardhttp://www.seattletimes.com/seattle-news/politics/inslee-error-releases-inmates-early-since-2002/
Banks seem to be capable of doing date math, I've for instance seen interests paid early
😎
December 24, 2015 at 9:18 am
jasona.work (12/24/2015)
December 24, 2015 at 7:38 am
For fun, here is an alternative method
😎
USE tempdb;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'dbo.TBL_TESTDUPE_05') IS NOT NULL DROP TABLE dbo.TBL_TESTDUPE_05;
CREATE TABLE dbo.TBL_TESTDUPE_05
(
set_id CHAR(3)
,col1 ...
December 24, 2015 at 7:28 am
I second Jeff's suggestion in most cases but there are times when an additional table might be an overkill such as y/N for YES / NO etc. In those cases...
December 24, 2015 at 2:45 am
Quick suggestion
😎
DDL and Sample data
USE tempdb;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'dbo.Main') IS NOT NULL DROP TABLE dbo.Main;
IF OBJECT_ID(N'dbo.Tags') IS NOT NULL DROP TABLE dbo.Tags;
IF OBJECT_ID(N'dbo.Docs') IS NOT NULL DROP TABLE dbo.Docs;
CREATE TABLE...
December 23, 2015 at 4:07 am
Sergiy (12/22/2015)
What is the difference how fast your query returns a result if you cannot be sure if it's correct?
😉
faster the better...........oops
😎
December 22, 2015 at 4:58 pm
Viewing 15 posts - 4,171 through 4,185 (of 8,761 total)