Viewing 15 posts - 31 through 45 (of 70 total)
it will allow to do the addition if the data type is numeric. if column data type is char it will just contaminate.
December 19, 2011 at 8:56 am
are you seeing any blocked processes ?
December 19, 2011 at 8:42 am
Try with using pivot feature in sql server.
December 19, 2011 at 8:36 am
If you want to get it through T-sql then u can try with SQldiff() function.
December 19, 2011 at 7:56 am
Have you tried this?
use msdb
EXECUTE sp_addrolemember @rolename = 'SQLAgentOperatorRole',@membername = 'username'
December 19, 2011 at 7:47 am
Try with using INDEXPROPERTY to get the index options.
SELECT INDEXPROPERTY(OBJECT_ID('authors'), 'indexname',
'IsUnique')
for more details.
http://msdn.microsoft.com/en-us/library/aa933195(v=sql.80).aspx
December 18, 2011 at 6:51 am
awu (12/16/2011)
We can easily backup one SSAS database by using the management studio , but how to create a job to backup all SSAS databases ? Thanks.
Here is...
December 18, 2011 at 6:00 am
heck your backup history in primary server.
use msdb
select database_name, description, backup_finish_date from backupset order by backup_finish_date desc
December 18, 2011 at 5:49 am
SQL Server Audit feature can help you that you want.
http://www.mssqltips.com/sqlservertip/1954/sql-server-2008-auditing-feature/
December 17, 2011 at 1:01 am
You can use CDC feature if you are using SQL server 2008. it will provide the data changes but it won't give , who did the change.
refer below...
December 17, 2011 at 12:32 am
This may work.
If ((Get-Content "Filenam.txt") -eq $Null) {
"File is empty"
}
December 16, 2011 at 12:09 pm
December 16, 2011 at 11:45 am
You can simply generate the script the user defined function , deploy it in your database
December 16, 2011 at 11:26 am
Under properties of SQL Server Agent there's a setting under the job system
tab:"Non-sysadmin job step proxy account" and create proxy account.
December 15, 2011 at 8:50 am
Here is a very good example for computed that you want.
December 15, 2011 at 8:04 am
Viewing 15 posts - 31 through 45 (of 70 total)