Viewing 15 posts - 31 through 45 (of 88 total)
Duplicated post.
See : http://www.sqlservercentral.com/Forums/Topic1234678-391-1.aspx
January 12, 2012 at 6:32 am
Check this :
http://msdn.microsoft.com/en-us/library/ms191250.aspx
A computed column is computed from an expression that can use other columns in the same table. The expression can be a noncomputed column name, constant,...
January 12, 2012 at 6:29 am
1. What kind of backup do you have today ?
Do you use :
- differential backups
- compressed backup (if your SQL Server is Enterprise Edition on sql 2008 or Standard...
January 12, 2012 at 6:18 am
Sometimes page split can lead to duplicate rows.
Have a look at this article :
http://sqlblogcasts.com/blogs/tonyrogerson/archive/2006/11/10/1280.aspx
January 12, 2012 at 4:42 am
I'm not sure this is possible.
Why don't you just apply an xsl transformation ?
Here is an article to do it inside SQL Server :
January 12, 2012 at 2:13 am
Here it is :
param ( [string]$ComputerName = "." )
Get-WmiObject -computername "$ComputerName" Win32_LogicalDisk -filter "DriveType=3" | foreach {
add-member -in $_ -membertype noteproperty UsageDT $((Get-Date).ToString("yyyy-MM-dd"))
add-member -in $_ -membertype noteproperty...
January 12, 2012 at 1:49 am
Sure you can, but you have a little work to do.
This query lists users per database :
sp_MSForeachdb '
USE ?
select
db_name() as dbname
, sp.name as login
, dp.name as
from sys.database_principals...
January 11, 2012 at 9:56 am
GilaMonster (1/11/2012)
azdzn (1/11/2012)
none of those ๐I would use the 3rd one (EXISTS) at the beginning and get the ID with SCOPE_IDENTITY at the end !
In that case, how would you...
January 11, 2012 at 9:46 am
none of those ๐
I would use the 3rd one (EXISTS) at the beginning and get the ID with SCOPE_IDENTITY at the end !
January 11, 2012 at 9:36 am
Dev (1/11/2012)
January 11, 2012 at 9:23 am
Storage Top 10 Best Practices :
http://technet.microsoft.com/en-us/library/cc966534.aspx
Maybe there are no sensitive data in tempdb but you don't want your instance to shut down !
January 11, 2012 at 9:16 am
Querying the plan cache will do the trick ! Good idea !
Thanks a lot Grant and Gail.
January 11, 2012 at 8:08 am
What kind of replication do you want to use ?
January 10, 2012 at 11:09 pm
Viewing 15 posts - 31 through 45 (of 88 total)