Viewing 15 posts - 4,306 through 4,320 (of 8,761 total)
Brandie Tarvin (11/4/2015)
djj (11/4/2015)
I also interview really badly.
Bridge Guardian: What is your name?
DJJ: Umm. I don't know?
DJJ: AGGGGHHHHH!
Bridge Guardian: Sigh. Usually they get to the swallow question before they go...
November 4, 2015 at 2:03 pm
Piling on further, now 23 posts into this thread and yet there are nowhere near enough information to even begin to guess let alone advice on the problem. Few facts...
November 4, 2015 at 9:32 am
Junglee_George (11/4/2015)
Thank You Eirikur.. Loved it..One more help. Is it feasible for this value to be shown
INSERT INTO #ActivityComments VALUES('S14-04932-01 + S15-04931-01 + S14-04932-02')
Output
----------
S14-04932-01, S15-04931-01, S14-04932-02'
That's an entirely different...
November 4, 2015 at 1:03 am
Quick fix
😎
CREATE TABLE #ActivityComments(Comments NVARCHAR(MAX))
INSERT INTO #ActivityComments VALUES('This is the study code for Field Phase S14-04932-01')
INSERT INTO #ActivityComments VALUES('Phase reporting has the study S15-04931-01 which is obselete')
INSERT INTO #ActivityComments VALUES('Phase...
November 4, 2015 at 12:38 am
Quick solution
😎
USE tempdb;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'dbo.customer_payment') IS NOT NULL DROP TABLE dbo.customer_payment;
IF OBJECT_ID(N'dbo.customer_info') IS NOT NULL DROP TABLE dbo.customer_info;
CREATE TABLE dbo.customer_payment
(
Customer_Nbr_TxtVARCHAR(255),
Loan_NbrBIGINT,
Trans_Amt decimal(22,2),
Payment_tp VARCHAR(255)
);
INSERT INTO dbo.customer_payment (Customer_Nbr_Txt,Loan_Nbr,Trans_Amt,Payment_tp)
VALUES
('007849', '11613577', '1000','ACH'),
('007849', '11613578', '200',...
November 3, 2015 at 10:27 pm
Further on Gail's excellent answer, can you post the actual execution plan and preferably the DDL (create scripts) for all tables, functions and indices?
😎
First glance at the code suggests that...
November 3, 2015 at 2:01 pm
Further on Jacob's excellent suggestion, check for the existence of the pattern before the substring, as you could have false positives when the pattern is not found.
😎
November 3, 2015 at 1:15 pm
GilaMonster (11/3/2015)
ChrisM@Work (11/3/2015)
Any folks out there with a little time to spare with this thread - it's just exceeded my comfort zone. Thanks.
No spare time this week, but given the...
November 3, 2015 at 11:54 am
Resender (11/3/2015)
ChrisM@Work (11/3/2015)
Resender (11/3/2015)
89,372,968,620
ChrisM@Work (11/3/2015)and how is this lot typically interrogated?
I wish I knew but I'm...
November 3, 2015 at 11:54 am
sraghunandana.6 (11/2/2015)
I have taken a compressed online backup of one database. The database size came from 360GB to 190GB.
Now i want to restore the compressed backup which should replace...
November 2, 2015 at 10:04 am
Lynn Pettis (11/2/2015)
SQLRNNR (10/31/2015)
For thread posterity:
It was awesome to get to meet some of the denizens of The Thread last week. Too bad Jeff Moden wasn't able to be...
November 2, 2015 at 9:50 am
rohan1424 (11/1/2015)
I have a prod server running SQL 2012 Standard which host our DB which is about 50 GB . We have enabled logshipping on a secondary sever which...
November 1, 2015 at 3:51 pm
IIRC I did this in the passed with a start-up macro, which fired a code that added the protection when the spreadsheet was opened.
😎
November 1, 2015 at 3:46 pm
coolchaitu (11/1/2015)
I have 4 instances on a box. How can i find which instance is causing memory pressure? Also, how to find which instance is consuming more memory?...
November 1, 2015 at 2:39 am
Brandie Tarvin (10/30/2015)
October 30, 2015 at 1:35 pm
Viewing 15 posts - 4,306 through 4,320 (of 8,761 total)