Viewing 15 posts - 4,141 through 4,155 (of 26,490 total)
suryahanuma (1/29/2016)
We don't get to Z. At the most we can reach E or F.
There is a word about saying never, never say it. You should always consider limitations...
January 29, 2016 at 3:17 pm
suryahanuma (1/29/2016)
100025730543909587546810958754681A100025730543939587546810958754681B
100025730543999587546810958754681C
And what happens when you get to Z and need more?
January 29, 2016 at 2:45 pm
CREATE TABLE #tmpTbl1
(Casenumber int,
Edgnumber int,
ssn varchar(100))
INSERT INTO #tmpTbl1
VALUES (100025730, 54390, '958754681')
INSERT INTO #tmpTbl1
VALUES (100025730, 54393, '958754681');
INSERT INTO #tmpTbl1
VALUES (100025730, 54399, '958754681');
DECLARE @inputcasenumbers [Interface].[udttOTISCaseNumber]
INSERT INTO @INPUTCASENUMBERS (CaseNumber, SSN, EdgNumber)
SELECT
Casenumber
,SSN
,Edgnumber
FROM #tmpTbl1
EXEC [Interface].[uspGenerateOTISCaseNumbers]...
January 29, 2016 at 2:04 pm
I like your modification better than mine. I left out the check of @@TRANCOUNT in the code I reposted in my attachment. Definitely a good idea to have...
January 28, 2016 at 12:06 pm
Hey Phil, can you add a rollback in the CATCH block? I just noticed that I forgot that in the code I uploaded.
I fixed the code I had uploaded...
January 28, 2016 at 11:52 am
Thanks, Phil.
January 28, 2016 at 11:48 am
EdVassie (1/27/2016)
January 28, 2016 at 9:34 am
Tried posting how I might approach writing this update, but couldn't do it directly from work. When I got home last night, didn't even get on my computer so...
January 28, 2016 at 9:10 am
WayneS (1/22/2016)
Brandie Tarvin (1/22/2016)
New code (with datatypes fixed) works fine ....
(code snipped)
...until I remove that damn driveletter column.
(code snipped again)
Where it fails on that DBFileName...
January 22, 2016 at 3:07 pm
Brandie Tarvin (1/20/2016)
Eirikur Eiriksson (1/20/2016)
Alvin Ramard (1/20/2016)
Ed Wagner (1/20/2016)
Steve Jones - SSC Editor (1/20/2016)
January 20, 2016 at 12:49 pm
Grant Fritchey (1/20/2016)
January 20, 2016 at 9:06 am
And the same in SQL Server 2014. No indicator that the index is disabled.
January 20, 2016 at 9:00 am
datsun (1/15/2016)
for Disabled Index?
Even RightClick menu option does not...
January 15, 2016 at 4:16 pm
ilikawa (1/15/2016)
I've read the information provided by Microsoft on its website (https://msdn.microsoft.com/en-us/library/ms175991.aspx) about how to make estimations about sizing,...
January 15, 2016 at 4:01 pm
Letron Brantley (1/12/2016)
http://blogs.msdn.com/b/sqlperf/archive/2011/05/25/the-balanced-data-distributor-for-ssis.aspx
Does anyone have any insight into how SQL Server handles target table locking if you use the...
January 12, 2016 at 2:00 pm
Viewing 15 posts - 4,141 through 4,155 (of 26,490 total)