Viewing 15 posts - 181 through 195 (of 1,080 total)
You will need to redeploy that Instance as a Clustered instance, you can't convert it.
Failover clustering has a big massive central point of failure: shared storage.
You could...
February 23, 2017 at 9:29 am
February 23, 2017 at 6:42 am
here you go: https://docs.microsoft.com/en-us/azure/sql-database/sql-database-configure-firewall-settings
February 23, 2017 at 5:40 am
You can, but use the "Copy Only" option.
February 22, 2017 at 12:49 pm
Did you add the firewall rule to allow your IP?
February 22, 2017 at 10:01 am
February 22, 2017 at 8:32 am
P2V should do the trick with vCenter Converter.
Your issue might be that you are taking an image of a cluster, and deploying it as standalone.
You could...
February 22, 2017 at 7:40 am
Just some questions:
Is there any reference between RequestOrder.DeptCode and RequestOrder.DeptId_FK to your Department table?
Why would you include a PhoneExt in a RequestOrder table, I would imagine this would...
February 22, 2017 at 7:03 am
Some searching would have led you to some good material, but here is a good start for you.
Just be aware, your exact requirement is not to refresh your primary...
February 22, 2017 at 6:57 am
Br. Kenneth Igiri - Wednesday, February 22, 2017 6:10 AMAre there any benchmarks done yet with server-grade environments?
Am sure there are, but...
February 22, 2017 at 6:14 am
This sounds like a job for....Powershell.
February 22, 2017 at 6:06 am
February 21, 2017 at 8:01 pm
drop table #temp
create table #temp(dbname varchar(25), fileid int, used float)
exec sp_msforeachdb
'use [?]
insert into #temp
Select
db_name(),fileid,
((CAST ( (fileproperty(name, ''SpaceUsed'')*8)/1024 as...
February 16, 2017 at 10:08 am
Did you set your parameters on the report?
February 16, 2017 at 9:40 am
Viewing 15 posts - 181 through 195 (of 1,080 total)