Viewing 15 posts - 376 through 390 (of 469 total)
SanDroid (4/25/2011)
April 25, 2011 at 8:19 am
Jason,
It's crucial to test those backups. Without that, there's no way to know whether or not they're actually good. We've been battling some drive issues where I work...
April 22, 2011 at 9:34 am
I'm pretty sure I'm doing better but I'm in week two of a new job so I may be wrong. I did get a significant increase coming here as...
April 15, 2011 at 9:21 am
palotaiarpad (4/12/2011)
And yes, they choose the easy way. Edited the question from nvarchar to nchar.A very sad thing.
Sad indeed but I have to say I would be very tempted to...
April 12, 2011 at 9:56 am
pmcwhorter (4/8/2011)
Where is the quality control on this forum for verifying correct answers?
From what I've seen, big part of the quality control is in the people that answer the question....
April 8, 2011 at 11:15 am
I think this is probably along the lines of what you're looking for. You don't need to reseed to 0, it can be any value you want:
SET ANSI_NULLS ON
GO
SET...
March 29, 2011 at 2:38 pm
sada235 (3/28/2011)
There's something to be said for process, even when it slows us down.
Amen to that.
March 28, 2011 at 1:20 pm
lancebeacroft (3/28/2011)
Ahh, now we are in a different scenario. What or who would stop you adopting best practice?
Time (yes, it's a time savings to do it right but no time...
March 28, 2011 at 9:59 am
lancebeacroft (3/28/2011)
March 28, 2011 at 8:07 am
paul.knibbs (3/25/2011)
March 25, 2011 at 7:24 am
TheSQLGuru (3/21/2011)
Doesn't the FOR XML method blow up when certain characters are in place in the data?
Unless there's a character other than the three big ones I know that could...
March 21, 2011 at 12:22 pm
Since the example doesn't do any concatenation I wouldn't assume that it's referring to the situation that the article is discussing.
USE AdventureWorks2008R2;
GO
DECLARE @EmpIDVariable int;
SELECT @EmpIDVariable = BusinessEntityID
FROM HumanResources.Employee
ORDER BY BusinessEntityID...
March 21, 2011 at 8:40 am
One of the things the shop I work in has missed is staying ahead of clients in testing different load levels. We made an architectural decision with a recent...
March 21, 2011 at 6:57 am
One of the threads where a method like this was discussed someone from MS came on and said that it relied on an undocumented feature in the query optimizer that...
March 21, 2011 at 6:51 am
I work on an Electric Health Record so HIPPA has a huge affect on how we do things. Not just in coding the application but in supporting it as...
March 18, 2011 at 11:46 am
Viewing 15 posts - 376 through 390 (of 469 total)