Viewing 9 posts - 421 through 429 (of 429 total)
Lynn Pettis (4/3/2013)
erikd (4/3/2013)
Lynn Pettis (4/3/2013)
From your post I can't tell if you are using '\ n' (no space between the \ and n) as your row terminator.
There is no...
April 3, 2013 at 2:59 pm
Lynn Pettis (4/3/2013)
From your post I can't tell if you are using '\ n' (no space between the \ and n) as your row terminator.
There is no space.
April 3, 2013 at 2:54 pm
USE [blah]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROC [dbo].[DeDupe]
@projectID int,
@dupVar1 varchar(20) ='',
@dupVar2 varchar(20) ='',
@dupVar3 varchar(20) =''
as
DECLARE @ProcessTable varchar(64)
select @ProcessTable=ds_ProcessTable from...
April 3, 2013 at 2:45 pm
Sean Lange (4/3/2013)
erikd (4/3/2013)
Sean Lange (4/3/2013)
April 3, 2013 at 10:32 am
Sean Lange (4/3/2013)
declare @thing nvarchar(max),...
April 3, 2013 at 10:23 am
ScottPletcher (4/2/2013)
You can do a MAX(LEN(column_name)) for all columns in one SELECT statement, and hopefully thus...
April 3, 2013 at 8:45 am
i run into truncation issues a lot. i've been using this to check the max length of raw table column values when they won't load to my processing table:
declare @thing...
April 2, 2013 at 9:41 am
heh. no. i had a monumental brainfart.
i was looking at the 'diff' column like it was a count, not like it was showing the difference between the two dates.
sorry...
March 13, 2013 at 12:49 pm
bitbucket-25253 (2/20/2013)
[sys].[sp_MSforeachtable].
Review the T-SQL to determine if it will perform as you want it to, or if it...
February 20, 2013 at 9:19 am
Viewing 9 posts - 421 through 429 (of 429 total)