Viewing 15 posts - 1,681 through 1,695 (of 3,011 total)
shuzi (8/18/2009)
Management Studio provided the overall server info, we don't want anyone be able to access it. Some persons just need to know the database structure,...
August 18, 2009 at 9:52 am
This is a little simpler and will work with any date range.
select
*,
Days ...
August 18, 2009 at 9:45 am
Have you considered using developer edition on your development server?
August 14, 2009 at 7:46 am
Restore the database from the last full backup using the NORECOVRY option, and then apply the transaction logs to roll forward to the point in time that you want to...
August 13, 2009 at 6:58 pm
Political problems usually do not have technical solutions, so it sounds like your manager is just postponing a fight that is certain to happen eventually.
August 10, 2009 at 2:14 pm
Another thing to consider is that the file share server you are backing up to might not be able to handle the IO load.
I have seen cases where the backup...
August 10, 2009 at 10:22 am
Robert.Smith (8/10/2009)
August 10, 2009 at 9:43 am
It seems like a lot to send over the network for a large datacenter; we have enough issues just getting them from disk to tape every day.
I took a quick...
August 10, 2009 at 9:29 am
It is 32-bit x86, so use the x86 version of the service pack.
Might as well use sp3, unless you have a reason not to.
August 5, 2009 at 11:10 am
How to: Rename a Computer that Hosts a Stand-Alone Instance of SQL Server
August 5, 2009 at 10:24 am
uciltas (8/4/2009)
I just did it again now.
AWE is checked in SSMS
Here is the result after running your...
August 4, 2009 at 2:12 pm
Do you have AWE enabled in SQL Server?
What does this show when you run it from a query window?
exec sp_configure 'show advanced options',1
go
reconfigure
go
exec sp_configure 'awe enabled'
August 4, 2009 at 1:52 pm
The following seems to work OK just using a single derived table.
Create and load test data:
-- Create test table
create table #t
(
PKintnot null identity(1,1) primary key clustered,
field_Abigintnot null,
field_Bbigintnot null
)
--Load random test...
August 4, 2009 at 10:27 am
David Korb (8/3/2009)
This has driven the cost of developers up and lured less capable people into the field.
That's why we need to set up a gatekeeper system like the medical,...
August 3, 2009 at 10:32 am
Viewing 15 posts - 1,681 through 1,695 (of 3,011 total)