Viewing 15 posts - 646 through 660 (of 1,193 total)
Not through the GUI, no. But there are various T-SQL statements for interrogating permissions too, e.g.
select *
from sys.database_permissions dp
inner join sys.database_principals p on p.principal_id = dp.grantee_principal_id
where class_desc =...
December 12, 2012 at 5:26 am
Hi,
database user properties > securables tab > Search... > All Object of the types... > Databases > Voila!
Although I'd look at using the db_datareader database role instead if possible, it's...
December 11, 2012 at 5:03 am
Not 100%, but some sys views only refresh on a SQL restart - could be that the extraneous counter will vanish then.
December 11, 2012 at 4:44 am
Hi,
Sounds like more a problem with the insert into Match_Reports table than replication per se.
Have a look at the definition of dbo.p_MatchMaker_PrepHistReports (it looks truncated in the error message/your post)...
December 11, 2012 at 3:47 am
Well, if you can get the information out of the file, registered servers are stored in
C:\Users\username\AppData\Roaming\Microsoft\Microsoft SQL Server\100\Tools\Shell\RegSrvr.xml
But I'd be much more tempted to set up my own text file...
December 7, 2012 at 9:02 am
Dropping NC indexes can obviously reduce space used, and rebuilds of clustered indexes or heaps can also reclaim space.
Are either of these likely to have happened?
Also I notice the query...
December 7, 2012 at 7:44 am
Thanks Grant, looking forward to reading this.
December 7, 2012 at 5:14 am
No problem!
December 7, 2012 at 2:55 am
If you've got SQL Express with Advanced Services it's included.
To check you have this version - your install file should be called SQLEXPRADV_x64_ENU.exe or SQLEXPRADV_x86_ENU.exe
In the SQL installer, it's listed...
December 7, 2012 at 2:54 am
Not a bad question, but I might have answered S,S,F if it had been an option - no mention of default schema or rights on dbo schema.
December 7, 2012 at 2:45 am
No, it's a standalone product. If it's installed it will be in the SQL Server 2008 (or 2008 R2 if you're using that) folder on your start menu as "SQL...
December 6, 2012 at 12:10 pm
Hi, for report development you need BIDS (Business Intelligence Development Studio) which is based on Visual Studio Shell.
It can be installed as part of the SQL Server installation if you...
December 6, 2012 at 11:28 am
No worries! 🙂
December 6, 2012 at 7:45 am
Hi,
Multi-valued parameters can't be NULL as far as I know, no value supplied gives a parameter value of blank rather than NULL.
Try this expression:
=iif(Join(Parameters!uidIncidentTypeId.Value) = "", Fields!vchParentIncidentType.Value, Fields!vchIncidentType.Value)
Cheers
Gaz
December 6, 2012 at 7:42 am
Hi Markus,
Does SQL Agent have the Mail profile enabled & the correct profile selected (Alert System page)?
Think you need to restart SQL Agent service for any changes to take too.
Cheers
Gaz
December 6, 2012 at 7:21 am
Viewing 15 posts - 646 through 660 (of 1,193 total)