Viewing 15 posts - 6,451 through 6,465 (of 8,753 total)
peter.cox (12/11/2014)
It was just a business requirement to search a free form field. Obviously with that being the case, people have the ability to put the data in...
December 11, 2014 at 7:15 am
Try this for a size
π
declare @storedprocedure_name nvarchar(30) = 'my_proc_name';
SELECT N'USE ' + DB_NAME() + NCHAR(59) + NCHAR(13) + NCHAR(10) +
N'IF EXISTS (SELECT * FROM sysobjects...
December 10, 2014 at 3:44 pm
Luis Cazares (12/10/2014)
This isn't pretty, but it might be what you need to handle one to many relationships between managers and employees.
Has the appeal of Cusano Rojo:rolleyes:,but it works
π
December 10, 2014 at 2:38 pm
Alan.B (12/10/2014)
Wouldn't this be faster?
-- the function
CREATE FUNCTION dbo.DIGITSONLYAB(@pstring varchar(8000))
RETURNS TABLE WITH SCHEMABINDING AS
RETURN SELECT ISALLDIGITS = CASE PATINDEX('%[^0-9]%',@pstring) WHEN 0 THEN 1...
December 10, 2014 at 1:39 pm
djj (12/10/2014)
December 10, 2014 at 1:37 pm
I know itΒ΄s not perfect, the dynamic is just to contain the whole thing in a single batch, took it from an old code of mine which took the table...
December 10, 2014 at 12:38 pm
Good catch, never tested the functions for a null value:pinch:, here is a revised version
π
/* Eirikur's modification of Jeff's Modification of Erikur's Function */
GO
IF OBJECT_ID('dbo.DigitsOnlyEE') IS NOT NULL DROP FUNCTION...
December 10, 2014 at 12:33 pm
Quick solution using a calculated column
π
USE tempdb;
GO
SET NOCOUNT ON;
IF OBJECT_ID('dbo.TBL_ROWNUM') IS NOT NULL DROP TABLE dbo.TBL_ROWNUM;
IF OBJECT_ID('dbo.UDF_COUNT_ROWS') IS NOT NULL DROP FUNCTION dbo.UDF_COUNT_ROWS;
DECLARE @COUNT_FUNC NVARCHAR(MAX) = N'
CREATE FUNCTION dbo.UDF_COUNT_ROWS
(
...
December 10, 2014 at 11:04 am
Quick cross-tab solution (hard coded)
π
USE tempdb;
GO
SET NOCOUNT ON;
IF OBJECT_ID('tempdb..#BATCH') IS NOT NULL DROP TABLE #BATCH;
CREATE TABLE #BATCH
(
batch_Id VARCHAR(36)...
December 10, 2014 at 2:00 am
Quick thought, while the SSH will work it is not a perfect solution, relatively slow, increased attack surface etc.. Why not use ODBC connection from the UX? Or schedule a...
December 9, 2014 at 6:33 pm
Quick solution using the nodes method
π
USE tempdb;
GO
SET NOCOUNT ON;
DECLARE @MyXML XML
SET @MyXML = '<RS>
<R id="6330">
<WF id="71445">
<WFS id="12790"> <fname>John12790</fname> </WFS>
<WFS id="12791"> <fname>Eric12791</fname> </WFS>
</WF>
</R>
<R id="6331">
<WF id="71446">
<WFS id="12793"> <fname>John12793</fname> </WFS>
<WFS id="12794"> <fname>Eric12794</fname> </WFS>
</WF>
</R>
</RS>';
SELECT...
December 9, 2014 at 8:12 am
Quick joke, 36524 is the number of versions Jeff needs to upgrade on his old test box π
π
December 8, 2014 at 2:06 pm
Koen Verbeeck (12/8/2014)
http://www.sqlservercentral.com/Forums/Topic1636920-391-1.aspx#bm1642200
They enter a reply with the first reply of the thread copied into it (in this case, my reply) and then add a URL.
More annoying...
December 8, 2014 at 1:58 pm
Good points Steve and thank you for this editorial, brought back some nice memories! Back in the "old" days I used to make a living mountaineering and climbing, first rule...
December 8, 2014 at 1:37 pm
DonlSimpson (12/8/2014)
Are you required to store the number with the formatting? It can be easier to apply the formatting when retrieving the phone number.
Quick thought, if there are formatting...
December 8, 2014 at 1:12 pm
Viewing 15 posts - 6,451 through 6,465 (of 8,753 total)