Viewing 15 posts - 136 through 150 (of 476 total)
Hi
Sorry about the late post, but parallel is always a tricky one. First decision to make is which side of the line do you want to parallel to? ...
April 6, 2014 at 2:42 pm
Luis Cazares (4/3/2014)
I wish that SQL Server could include a "pattern replace" to get something like
SELECT...
April 3, 2014 at 1:13 pm
Hi
If the OP requirements are as simple as remove all digits from the string, I would tend to just use a nested replace within a LTRIM to tidy up the...
April 3, 2014 at 12:49 pm
I looked at the topic and thought wahoo they've do some enhancements to spatial ... but of course the spatial stuff hasn't changed in 2014:( Made me look though:-)
April 2, 2014 at 12:18 pm
lmnorms (4/2/2014)
April 2, 2014 at 11:47 am
Hi
Because I've had to study up on this lately:w00t:, you could also try
SELECT EmployeeID AS 'Employeeid',
CellPhone AS 'mobile_Phone/Number'
FROM Db_Utils.dbo.tb_tst_Employees_upd p
WHERE p.EmployeeID IN ('000001', '019999')
FOR XML Path('Row'), ROOT('Employee_List');
April 1, 2014 at 4:40 pm
sqlservercentral 18091 (4/1/2014)
I have...
April 1, 2014 at 3:12 pm
Hi
I'm not sure that I have your requirements right, but this may help you with your problem. Basically I am unpivoting your data so I can reorder the tyres...
March 31, 2014 at 6:21 pm
Hi
I am failing to see why you would need to do a sum of a sum. Surely only a single sum is required?
As an example, the two following queries...
March 30, 2014 at 7:22 pm
Hi
I don't think the result you have posted can result from the data you have posted. Also have a read of this article[/url] to assist with getting the best...
March 26, 2014 at 12:48 pm
SQLRNNR (3/26/2014)
Thanks Andy. I enjoy this style of questions you have been doing.
+1, I have really enjoyed these questions as well.
March 26, 2014 at 11:59 am
triynko22 (3/19/2014)
March 19, 2014 at 2:51 pm
Hi
As pietlinden asked is there a key to group the data rows. Looking at the sample data you provided, I'm guessing that it is the MSGID column. If...
March 19, 2014 at 12:57 pm
The plans are actual.
And here is Paul's blog that Gail referred to.
March 18, 2014 at 3:09 pm
Hi
Have added the various query options now and we have a new winner 😀 with a query that makes sense-- Statement 1
SELECT COUNT(*)
FROM Table1 c
WHERE NOT EXISTS ( SELECT...
March 18, 2014 at 2:19 pm
Viewing 15 posts - 136 through 150 (of 476 total)