Viewing 15 posts - 7,531 through 7,545 (of 18,926 total)
Geoff A (11/24/2010)
GSquared (11/24/2010)
Ninja's_RGR'us (11/24/2010)
GSquared (11/24/2010)
November 24, 2010 at 8:52 am
Kwisatz78 (11/24/2010)
How does a web front end not qualify for a device CAL when all external users will be...
November 24, 2010 at 8:41 am
GSquared (11/24/2010)
Per-processor is how most multi-user installations are done. CALs are mostly useful to very small shops with a small number of people accessing the system.
Sorry to highjack this...
November 24, 2010 at 7:01 am
Do you have any columns of this type??
text, ntext, varchar(max), varbinary(max).
Do you have other indexes besides those 2?
Why is having that table at 50MB a problem (other than being odd).
November 23, 2010 at 3:48 pm
Maybe a weird coordination bug between the list of databases and the permissions of the users looking at that list.
Of course paint seems more likely here.
November 23, 2010 at 8:58 am
I'm not a big fan of the RIGHT(output, 38), That script will break if the filename ever changes.
I know it's more complex but I preffer to figuring out the...
November 23, 2010 at 8:23 am
GilaMonster (11/23/2010)
Brandie Tarvin (11/23/2010)
November 23, 2010 at 6:02 am
Yup, good old dos. Still works better than windows in some area!!
November 23, 2010 at 5:23 am
here's a start
IF OBJECT_ID('tempdb..#Out') > 0
DROP TABLE #Out
CREATE TABLE #Out (output VARCHAR(MAX))
INSERT INTO #Out (output)
--exec xp_cmdshell 'dir \\whatever\backup'
exec xp_cmdshell 'dir z:'
--you may test if adding a leading space after the...
November 22, 2010 at 10:16 am
You're on the right track... 10% fragmentation minimum, reorg @ 29% or less rebuild at 30% and make sure to have at least 1000 pages in there.
Not much else for...
November 22, 2010 at 9:15 am
page_count.
If you have the time to learn then go for it... make sure you test on a test machine rather than prod server.
Any errors there can cause serious issues.
November 22, 2010 at 8:57 am
You're not filtering on the page count. Fragmentation is not really an issue untill you hit at least 1000 pages in the index.
So if you defrag or reorg a...
November 22, 2010 at 8:33 am
pavan_srirangam (11/12/2010)
ex: Running in higher version box with no change of compatibility mode
like 2008 box but db...
November 13, 2010 at 7:12 am
I'm guessing you are supporting 3rd pary apps which you can't access or modify the logging systems therein?
November 12, 2010 at 10:15 am
hemadribabu (11/11/2010)
In ur case sure, you will get compatibility level issues, if you want to use 200DB in 2005, u have to change from 80 to 90
no you don't
November 12, 2010 at 5:50 am
Viewing 15 posts - 7,531 through 7,545 (of 18,926 total)