Viewing 15 posts - 7,636 through 7,650 (of 8,416 total)
homebrew01 (6/24/2009)
Mani Singh (6/24/2009)
paul is correct, i completely forgot about that.. i should stop thinking about my girlfriends all the time. 😀
How many do you have ? (To...
June 24, 2009 at 8:17 am
winston Smith (6/24/2009)
Im running the query and it works for the most part.when i query groups like BUILTIN\Administrators it tells me all the groups in that.
Are you logged in with...
June 24, 2009 at 8:12 am
liuwilli (6/24/2009)
Any SQL 2005 behavior changes caused this issue?
William,
The answer is yes, or no - depending on what is in your code 😀
Paul
June 24, 2009 at 8:02 am
Dynamic tally:
;WITHNumbers (N) AS
(
SELECTTOP (25000)
ROW_NUMBER() OVER (ORDER BY (SELECT NULL))
FROMmaster.sys.columns
CROSS
JOINmaster.sys.columns C2
)
SELECT'A' + RIGHT((10000000000 + N), 9)
FROMNumbers;
Paul
June 24, 2009 at 8:00 am
The pipe character you are using as a terminator is also a batch script operator - you are effectively piping the result of the command to the statement after the...
June 24, 2009 at 7:55 am
Try setting the MAXERRORS parameter to the BULK INSERT statement - the default is 10 which means that the process only stops and reports after the tenth error.
Paul
June 24, 2009 at 7:52 am
Jacob Pressures (6/24/2009)
CTEs are still a bit new to me and looks like a lot of work when all i want are a few simply query statements.
I would encourage you...
June 24, 2009 at 7:45 am
Mike (6/24/2009)
This feature will be removed in the next...
June 24, 2009 at 7:36 am
Mani,
You can move a table from one file-group to another by rebuilding the clustered index with the ON clause.
Non-clustered indexes work the same way but would have to be done...
June 24, 2009 at 7:31 am
Yeah I saw that 😉
A quick Google turned up this: http://sqlserverpedia.com/wiki/Stored_Procedures_-_Output_Parameters_&_Return_Values
The guarantee on the zero return value for success is in Books Online.
Paul
June 24, 2009 at 7:28 am
[font="Tahoma"]There are (currently) 99 different index maintenance scripts on this site already:
http://www.sqlservercentral.com/Scripts/Index+Management/[/font]
June 24, 2009 at 7:02 am
only4mithunc (6/24/2009)
And I think except Express edition others can be 32 or 64 , so only...
June 24, 2009 at 6:58 am
Andy Hughes (6/24/2009)
Undoubtedly I would eventually have had cause to experiment with this approach myself, but hadn't considered this limitation with the partitioned...
June 24, 2009 at 6:55 am
EdVassie (6/24/2009)
To some extent it does not matter how the OP was interpreted.
That's an interesting point of view 🙂
EdVassie (6/24/2009)
June 24, 2009 at 6:51 am
Fastest possible implementation:
SELECT 1 UNION ALL
SELECT 2 UNION ALL
SELECT 3 UNION ALL
SELECT 4 UNION ALL
SELECT 5 UNION ALL
SELECT 6 UNION ALL
SELECT 7 UNION ALL...
June 24, 2009 at 6:44 am
Viewing 15 posts - 7,636 through 7,650 (of 8,416 total)