Viewing 15 posts - 16 through 30 (of 88 total)
Try this one :
select sys.schemas.name 'Schema'
, sys.objects.name Object
, sys.database_principals.name username
, sys.database_permissions.type permissions_type
, sys.database_permissions.permission_name
, sys.database_permissions.state permission_state
, sys.database_permissions.state_desc
, ...
January 13, 2012 at 11:38 am
If this is a free mobile application, creating a replication per user is not viable.
How many tables do you have to sync ?
How many data ?
A quick search...
January 13, 2012 at 10:07 am
Nice.
Easy to use and query much more readable !
January 13, 2012 at 9:42 am
IF @offline = 'Y'
BEGIN
EXECUTE sp_dboption 'Test','offline','true'
END
January 13, 2012 at 9:32 am
You found your reason !
log_reuse_wait = 5 ; DATABASE_MIRRORING
Database mirroring is paused, or under high-performance mode, the mirror database is significantly behind the principal database (full recovery model only).
For...
January 13, 2012 at 9:28 am
or one of the cause listed here :
Factors That Can Delay Log Truncation
January 13, 2012 at 9:23 am
Hi
It should be something like this :
select
substring(pagename, 1,charindex('/',pagename)-1) as sitename, -- or LEFT(pagename, charindex('/',pagename)-1)
count(*) as cachecount
from systempagecache
group by substring((pagename), 1,charindex('/',pagename)-1)
order by count(*) desc
If not, please post your...
January 13, 2012 at 5:47 am
Kwisatz78 (1/13/2012)
January 13, 2012 at 2:15 am
Are we talking about a Reporting Services report ?
January 13, 2012 at 2:11 am
What is the fill_factor of your index ?
See this post : http://www.sqlservercentral.com/Forums/Topic230400-5-1.aspx
January 13, 2012 at 2:01 am
- your primary key hasn't to be your clustered index
- only one clustered index per table.
January 13, 2012 at 1:45 am
In your Job step definition, what database is set up ? MyDb ?
If not, can you modify it and try again.
January 12, 2012 at 4:11 pm
Indexation has to be improved :
- No primary key on your table
- An index has to be added on createdDateTS + [DimCustomerKey] + Type (maybe it is your primary key...
January 12, 2012 at 3:56 pm
Can you post your table definition (create table, indexes, ???).
Thanks
January 12, 2012 at 3:39 pm
Marios Philippopoulos (1/12/2012)
(1) Restore database from fb with norecovery(2) Restore log from lb2 with recovery
Does it matter that lb2 had started while the full backup was still running?
You have to...
January 12, 2012 at 3:28 pm
Viewing 15 posts - 16 through 30 (of 88 total)