Viewing 15 posts - 181 through 195 (of 349 total)
You can use the below script to do the same. I've excluded system db's since the same can't be removed.
set nocount on
declare @dbname as varchar(80)
declare @server_name as varchar(20)
select @server_name =...
May 1, 2008 at 7:22 pm
[font="Courier New"]Can you check whether SQLAgent service account has necessary permission on the share folder??[/font]
May 1, 2008 at 5:51 pm
[font="Courier New"]I hope this details won't be stored in any of the systables.. Hope you need to run profiler or you can create some trigger to update user table for...
April 29, 2008 at 7:25 am
[font="Courier New"]Refer the link below for restoration of master category.. I hope this will help you!!!
April 25, 2008 at 11:05 pm
[font="Courier New"]Refer the below link also.
http://forums.microsoft.com/forums/ShowPost.aspx?PostID=3240524&SiteID=1[/font]
April 25, 2008 at 11:03 pm
[font="Courier New"]
jeevanr (4/23/2008)
Due to some problems i have to change my database from MS Sql Server Express Edition 2005 to Ms Sql Server 2000? Can anyone help me...
April 25, 2008 at 11:01 pm
[font="Courier New"]
pbyrum (4/21/2008)
Restore failed for Server 'pb003070\express'. (Micrsoft.SqlServer.Express.Smo)
System.Data.SQLClient.SQLError: The operating system returned the error '5(Access is denied.)' while attempting 'RestoreContainer::ValidateTargetFor Creation' on 'C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\lava...
April 25, 2008 at 10:59 pm
[font="Courier New"]Hi,
Refer the below link...
http://forums.microsoft.com/forums/ShowPost.aspx?PostID=3240524&SiteID=1
I hope this will help you!!![/font]
April 25, 2008 at 10:56 pm
[font="Courier New"]Hi,
Welcome to sqlservercentral 🙂
Make sure SQLserver port is unblocked in firewall
Make sure to create correct alias in the client machine
If possible try connecting as SERVERNAME,Portno Eg.)mymachine,1433
If you are using...
April 25, 2008 at 10:51 pm
You can make use of the below DMV's to find out which index is in use whether seek or user scan etc.
April 21, 2008 at 8:38 am
[font="Courier New"]I hope SQLService account doesn't have privilege to the shared folder. Make sure SQLService account has necessary privilege to the shared folder and make sure sqlagent is running!![/font]
April 21, 2008 at 6:40 am
Shamsul (4/17/2008)
Hi All,Could some one help me out with this question
How would one be able to identify the commit rate on a SQLServer ?
Thanks a ton
Hassan
Commit depends on the checkpoint...
April 21, 2008 at 6:39 am
You can use the below query to take the varbinary output to a file.
Exec master.dbo.xp_cmdshell 'osql -E -S. -Q"select datei from person.address where addressid=1" -o"C:\test.doc" -ddatabasename'
April 21, 2008 at 6:33 am
[font="Courier New"]In SQL 2005 you can make use catalog views or DMV's for the same. You will get more information compared to sp_who2.. Users need view server state permission. Refer...
April 21, 2008 at 6:24 am
[font="Courier New"]Kumar,
I hope you can't get information of the user who has modified the job in systables. You can create a trigger to monitor the same, hence when ever the...
April 21, 2008 at 6:21 am
Viewing 15 posts - 181 through 195 (of 349 total)