Viewing 15 posts - 106 through 120 (of 583 total)
you can use powershell to backup the SSAS database.
import-module sqlps
Backup-ASDatabase -BackupFile "c:\backup\ssasdb.adf" -Server MyServer -Name MyDatabase -AllowCompression
you could then just schedule the powershell script with windows task scheduler.
October 30, 2014 at 12:51 pm
Does the file c:\test.csv exist on the sql server or is this file on your local computer? Bulk insert is looking on the SQL Server's C: drive.
October 30, 2014 at 12:39 pm
Robert klimes (10/29/2014)
imfairozkhan (10/29/2014)
using calendar table is the only way???
you could dynamically create calendar table with recursive cte but I am not sure it would scale well on a large...
October 30, 2014 at 10:13 am
imfairozkhan (10/29/2014)
using calendar table is the only way???
you could dynamically create calendar table with recursive cte but I am not sure it would scale well on a large data set.
...
October 29, 2014 at 8:48 am
It makes it very difficult to help without schema info, sample data, and expected results. read the link in my signature and post more info if the following does not...
October 28, 2014 at 1:40 pm
The message states you need at least SP1 for windows 7 and your system config screen shot shows that you do not have SP1 installed.
http://windows.microsoft.com/en-CA/windows7/install-windows-7-service-pack-1
October 28, 2014 at 12:41 pm
Awesome!:-) Thanks alot, this definitely gives me something to work with.
October 20, 2014 at 10:30 am
the xml you posted is from the lock_deadlock event. you need the xml from the xml_deadlock_report event.
October 8, 2014 at 7:31 am
That may be a good thing that it is enterprise as there are some Sharepoint features require it.
As for what s creating these snapshots, i don't believe this is something...
October 7, 2014 at 3:30 pm
do you want to double check your edition
select SERVERPROPERTY('edition')
October 7, 2014 at 2:58 pm
You are correct that database snapshots are enterprise only.
DBCC checkdb does take a database snapshot but the file is hidden (not hidden in 2014, but does not have .snap extension)
you...
October 7, 2014 at 2:21 pm
At the top of the xml there are tags <victim-list>. here is an example
<victim-list>
<victimProcess id="process207c1d468"...
October 7, 2014 at 8:01 am
You could view it in the GUI. Go to management->extended events->session->Deadlock. right-click on package0.event_file and choose "View Target Data"
here is a basic query. I am sure someone will add something...
October 6, 2014 at 3:24 pm
I think where you are getting a difference is when you are loading the CTE for your source.
run the following on both servers and check if you get the...
October 6, 2014 at 1:49 pm
First, Hardware is not identical, server 1 has twice as much memory as server two.
Second, the plans you provided use different values for the parameters.
good plan: [@dtImportOrder]= '2014-10-01 14:56:58.380'
...
October 6, 2014 at 1:20 pm
Viewing 15 posts - 106 through 120 (of 583 total)