Viewing 15 posts - 1 through 15 (of 48 total)
Thanks ScottPletcher and Chris. Understand it much better now.
Chris, I checked with IT and it is on SAN
June 1, 2018 at 7:11 am
But , would more drives on a single physical drive versus different physical drive have any adverse effect?
May 31, 2018 at 11:48 am
I only have non-clustered index on dbo.table1 and dbo.table2.
And after the update (it never did finish) I have clustered index on dbo.tbl_needs_ranking
October 31, 2017 at 11:57 am
I changed the length of the last field to 7. It helped me get in all rows that had only english characters correctly. So I increased the size of 1st...
October 16, 2017 at 2:58 am
January 24, 2017 at 6:52 am
Thanks.
But this prints only valueA from <Property Name="paramB" Value="valueA" />
and not valueY from
<Property Name="paramB" Value="valueY" />
How do I iterate through all Property elements?
Thanks
Rash
January 24, 2017 at 4:11 am
closing this post myself as I figured out the answer.
If anybody has the same issue,
There is a parameter in CONTAINSTABLE that can be set.
CONTAINSTABLE([MovieReviews].dbo.Reviews, HTMLReviews, @SearchTerm ,LANGUAGE N'English',10000))
December 4, 2016 at 4:33 am
Sorry needed to edit table columns. I had forgotten to add to columns.
So there are multiple records for same employee:
INSERT INTO dbo.Employees(EmpName ,EmpAddress1 ,EmpAddress2 ,EmpAddress2 ,
EmpCity ,EmpState ,StartDate,EndDate )
Values ('Ann','1...
September 8, 2016 at 4:27 am
Can you please elaborate on "less resources" ..not sure about log files also?
Thanks
July 12, 2016 at 6:17 pm
I am told by PM, we will not touch those cases.
June 13, 2016 at 1:21 pm
Here's the table structure,
Create table dbo.Homeaddr(HomeID INT,Address varchar(200));
INSERT INTO dbo.Homeaddr VALUES(1, 'Four Union Ave');
INSERT INTO dbo.Homeaddr VALUES(2,'Fifth Avenue ');
INSERT INTO dbo.Homeaddr VALUES(3,'Twenty First and Main Street ');
INSERT INTO dbo.Homeaddr VALUES(4,'Seventeenth...
June 13, 2016 at 12:21 pm
Luis,
I haven't thought of spelling mistakes in the word like 'Secnod', but for 'thirty-five' I remove all punctuations, so that it's easier to apply rules.
June 13, 2016 at 11:28 am
Yes, I do really need a solution. This is not a student assignment but a company project.
Thx
June 13, 2016 at 11:25 am
Yes, to remove certain unwanted strings from FirstName and Lastname columns.
Here's why I thought I should have a function...there are many such unwanted strings for example: a) Former b)Legal c)IRS...
June 7, 2016 at 6:53 am
I am trying to insert the 'cleaned' values into the table called Name
June 7, 2016 at 4:44 am
Viewing 15 posts - 1 through 15 (of 48 total)