Viewing 15 posts - 136 through 150 (of 717 total)
Obviously something that is running requires using a lot of tempdb space, maybe from a large sort, or something. Why would you want to shrink the tempdb back down? If...
April 1, 2011 at 12:43 am
It looks to me like they are talking about moving data from a .NET application back into the SQL Server not from one SQL Server to another. For example, you...
March 31, 2011 at 11:51 pm
The other option would be to upgrade your 2008 server to 2008 R2. Of course that would require a license purchase unless you have SA, as well as testing.
March 31, 2011 at 11:27 pm
In your article you say:
Since this article is focusing on practical uses of PatIndex, I will only be checking to see if the string value contains digits only with the...
March 31, 2011 at 5:25 pm
CELKO (3/31/2011)
('123', 0.00, 0.10, 90, ('123- 1))
('124', 0.01, 0.11, 92, ('124- 2))
('125', 0.02, 0.12, 95, ('125- 3))
('127', 0.04, 0.14, 95, ('127- 4))
('128',...
March 31, 2011 at 4:18 pm
Here is an UPDATE version of what Howard provided:
UPDATE Target
SET ChargedYN = 'N'
FROM tmpCustomers AS Target
INNER JOIN rowstoupdate AS Source
ON Target.CustomerNo =...
March 31, 2011 at 12:52 am
That link to request the CU looks correct but it looks like Microsoft has pulled the main CU1 update.
The CU2 update is still available here: http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=2072493&kbln=en-us
And CU6 (the latest) is...
March 31, 2011 at 12:37 am
My guess is that you are using the SELECT .. INTO method, and that will keep a schema lock on the DB that prevents a lot of things but not...
March 31, 2011 at 12:25 am
I agree with Wayne, iTVFs are nice because you can actually SELECT from and JOIN (CROSS APPLY) to them, which you can't do with SPs.
March 31, 2011 at 12:15 am
Nicole Garris (3/30/2011)
March 31, 2011 at 12:08 am
Thanks for the question, it is always good to research and learn something new!
March 31, 2011 at 12:00 am
Richard Warr (3/30/2011)
"Your approach to SQL is wrong. BIT flags are things we left behind in assembly language. "...
March 30, 2011 at 2:16 pm
Essentially what you need is a running total. You can read about that in an article from Jeff Moden here: http://www.sqlservercentral.com/articles/T-SQL/68467/
So something along this should for for you:
--Determine where each...
March 30, 2011 at 12:37 am
Thanks for the question, however technically none of the answers are correct, as that view can not be indexed because all the objects aren't referenced by two-part names:
FROM...
March 29, 2011 at 10:25 pm
Viewing 15 posts - 136 through 150 (of 717 total)