Viewing 15 posts - 4,936 through 4,950 (of 8,416 total)
March 23, 2010 at 7:32 am
It is normally best to grant the SQL Server process the 'lock pages in memory' right, so SQL Server can use non-paged memory.
If this is Standard Edition, please read the...
March 23, 2010 at 7:29 am
Wayne,
Nice idea, but I have to say that is the least efficient in-line tally table I have ever seen!
Compare:
CREATE FUNCTION [dbo].[GetNumbers]
...
March 23, 2010 at 7:24 am
Confusing. As posted, the CREATE TABLE statement will not compile since column PKey, referenced in the PRIMARY KEY definition, does not exist. Errors like this cannot be caught...
March 23, 2010 at 7:20 am
There are a number of examples here:
http://www.regular-expressions.info/examples.html
http://regexlib.com/DisplayPatterns.aspx?cattabindex=2&categoryId=3
March 23, 2010 at 7:12 am
Not directly, you have to write some code 🙂
Lots of examples and performance comparisons here.
The best way is to avoid loading data in that format to begin with, of course....
March 23, 2010 at 7:10 am
Use CLR integration.
See this MSDN magazine article: http://msdn.microsoft.com/en-us/magazine/cc163473.aspx
March 23, 2010 at 6:57 am
Thiyagu-343189 (3/23/2010)
Following Shows my table stucture.I need to find who is eligible for grand children.
That is not a table structure, it is just a bunch of text. If you...
March 23, 2010 at 6:55 am
Didn't realize anyone was still using VB for this, now that we have the choice to use C# 😛 😉 😀
March 23, 2010 at 6:51 am
Since this is SQL Server 2008 x64 Standard Edition, it seems you are suffering from paging of SQL Server memory.
See http://support.microsoft.com/kb/970070 for the fix that allows x64 Standard Edition to...
March 23, 2010 at 6:50 am
Just posting to confirm that
DBCC FREESYSTEMCACHE('TokenAndPermUserStore')
...works correctly in SQL Server 2008 Enterprise version 10.0.2757
March 23, 2010 at 6:37 am
adnan.fast (3/22/2010)
March 23, 2010 at 6:29 am
There is no direct way to do exactly what you want, since TRUNCATEONLY never shrinks the file below its creation size, as you said.
Your best choice depends on the data....
March 23, 2010 at 6:24 am
SwePeso (3/21/2010)
david.c.holley (3/19/2010)
March 23, 2010 at 6:08 am
Viewing 15 posts - 4,936 through 4,950 (of 8,416 total)