Viewing 15 posts - 136 through 150 (of 206 total)
Use the LOGINPROPERTY method to find all the infos you need (http://msdn.microsoft.com/en-us/library/ms345412.aspx).
October 5, 2010 at 8:32 am
The replicate command truncate to 8000 characters if you are not using varchar(max) or nvarchar(max).
If you use varchar(max) it works fine though:
select len(replicate(convert(varchar(max),1),8005))
Output: 8005
October 5, 2010 at 6:12 am
You need an Enterprise Edition (or Developper), partitioning and data compression are not available in Standard.
October 5, 2010 at 1:58 am
Paul White NZ (10/4/2010)
Oliiii (10/4/2010)[hrIt looks like it knows that even though the record is held by an exclusive lock, it hasn't been modified yet so is not yet dirty...
October 5, 2010 at 1:53 am
Doing a REBUILD (or recreate) of a clustered index always uses up a lot of space.
One way around this is to REORGANIZE it instead, this does not increase the data...
October 5, 2010 at 1:36 am
If all you need are enough data to know how/if you need to virtualize it, you can setup a perfmon trace and either save it to a file and then...
October 5, 2010 at 12:44 am
I've read a bit more about it on BOL and here is what it says :
READ COMMITTED is the default isolation level for SQL Server. It prevents dirty reads by...
October 4, 2010 at 6:43 am
vinothr 33504 (10/3/2010)
I am having a table with columns say A to F. A being the primary key, B unique key. I am creating clustered index on...
October 4, 2010 at 6:26 am
Try with exclusive lock (xlock) as an updlock can still be selected (but not updated).
October 4, 2010 at 6:20 am
If you want your log to shrink after the backup you can add a step to shrink it, but if it's going to grow again during the day you'll just...
October 1, 2010 at 5:19 am
Try this on each dbs:USE [Datasae1]
GO
EXEC sp_addrolemember N'db_ddladmin', N'testuser'
EXEC sp_droprolemember N'db_owner', N'testuser'
GRANT EXECUTE TO testuser
You have to do it on each DB since you handle the DB security at the...
October 1, 2010 at 5:15 am
It doesn't change the schema to dbo, it changes the owner of the schema to dbo, you'll still have both your schemas and your user will be free to be...
October 1, 2010 at 5:12 am
Add step to the backup job to compress the backup and a step to the restore job to decompress it.
Log backup are very easy to compress so you'll make everyone...
October 1, 2010 at 5:07 am
It looks like a good sata drive, good stable overall performance.
But you have to compare it with other drive to have some kind of baseline.
No need to run so many...
October 1, 2010 at 2:02 am
I'm definately not an expert on reading stack dump, but it looks like your server ran out of memory.
Not enough memory can keep the server from accepting new connections of...
October 1, 2010 at 1:13 am
Viewing 15 posts - 136 through 150 (of 206 total)