Viewing 15 posts - 5,506 through 5,520 (of 6,400 total)
then you dont have a local instance of SQL installed which is why you cannot connect
March 20, 2012 at 10:29 am
SQL SERVER (instancename) where instancename is the name of the instance you want to connect to, if its default is MSSQLSERVER, if its named it will be the name so...
March 20, 2012 at 10:20 am
can look in config manager or services.msc, looking for a state of running or started depending which you look at
March 20, 2012 at 10:10 am
that wont work either as if they are part of group1 which has been granted, then also part of group2 which has been denied, then the DENY will take preference...
March 20, 2012 at 8:59 am
the database needs to be online for it to be backed up, so you will have to backup from your primary node, not your secondary
take it this is in a...
March 20, 2012 at 8:37 am
select top 1 b2.physical_device_name from msdb.dbo.backupset b1
inner join msdb.dbo.backupmediafamily b2
on b1.media_set_id = b2.media_set_id
where b1.type = 'I' and b1.database_name = ''
order by b1.backup_finish_date desc
March 20, 2012 at 7:26 am
if you have subsequent diff backups for the databases to restore then you need to leave them in norecovery mode, other wise you need to restore the full backup and...
March 20, 2012 at 7:06 am
for point 1, take a look at the build list on msdn
2008R2 build list is at http://support.microsoft.com/kb/981356, but a google search of SQL SERVER XXXX BUILD LIST will bring in...
March 20, 2012 at 6:04 am
John is right, the second note in the licencing doc details
For SQL Server running in a physical operating system environment (POSEs), you must license all the physical processors
So goes back...
March 20, 2012 at 2:59 am
remember in 2008 you licence the CPU not the CORES, so if you have 16 cores, how is that broke down? 2cpuX8cores or 2cpuX4coresHT or 1cpuX8coresHT etc etc
(note when you...
March 20, 2012 at 2:41 am
Had a PM from this user on this, and he was using UNION inserting a dummy record but also passing in 0 for a division and also getting devide by...
March 19, 2012 at 7:29 am
Looking at it your going to have to do this in the SQL batch and then pass it into the report already aggregated, I cant see a way to do...
March 19, 2012 at 4:50 am
in short no, the issue is in your design, you will never get the right value as its a string as a base data type
March 19, 2012 at 4:13 am
Viewing 15 posts - 5,506 through 5,520 (of 6,400 total)