Viewing 15 posts - 121 through 135 (of 583 total)
DBA From The Cold (9/16/2014)
September 17, 2014 at 2:54 pm
I am hardly an expert on SSIS but for the first part of your question: will traffic go from a to c to b. yes it will. The work that...
September 12, 2014 at 2:58 pm
GBeezy (9/12/2014)
So it does seem to be easy it sounds?
it's as easy as
USE master;
GO
ALTER DATABASE tempdb
MODIFY FILE (NAME = tempdev, FILENAME = 'C:\MSSQL\Data\tempdb.mdf');
GO
ALTER DATABASE tempdb
MODIFY FILE (NAME =...
September 12, 2014 at 1:52 pm
from the what's new in SQL Server, it is possible you just need to make sure that the same path is on all nodes of the cluster.
Local Disk is now...
September 11, 2014 at 11:08 am
did you install sql server with this account or did you change it after the fact? if it was after, did you use SQL Server Configuration manager or the services...
September 9, 2014 at 1:44 pm
Check if the SQL Browser service is running on the server.
September 4, 2014 at 1:17 pm
unless there is another reason for loading the results into a sql database, to accomplish what you want you could just use powershell.
$path = "c:\temp\directory"
$nodays = "-1"
$excludes = "*.csv, *.doc"
get-childitem...
September 4, 2014 at 11:28 am
Including the error you are receiving might help.
that being said, can you telnet to the sql server from your workstation?
telnet test-sql port
Replace port with what ever port your MSSQL...
September 4, 2014 at 11:03 am
I dont believe SQL server automatically checks the validity of backups. There would have to be additional steps performed.
You can partially validate the backup without restoring by using restore...
September 4, 2014 at 10:51 am
Steve Jones - SSC Editor (8/29/2014)
select cpu_count from sys.dm_os_sys_info
That's what SQL Server sees. Should be in the error log. SQL should use all available.
It probably doesnt matter in this case...
August 29, 2014 at 1:41 pm
sys.dm_os_schedulers should show you how many CPUs are being used.
August 29, 2014 at 1:32 pm
You are joining on "No" between your two CTEs and since all rows have the same No value all items in SumSalesQtyCommit are joined to SumQtyOnHand. add a join condition...
August 25, 2014 at 12:37 pm
dan-572483 (8/18/2014)
August 18, 2014 at 12:11 pm
You will have downtime when applying a service pack.
August 8, 2014 at 8:32 am
TheSQLGuru (8/7/2014)
I was definitely NOT espousing the use of OPTIMIZE FOR as a SOLUTION for this issue - just to expose it. I DESPISE that "feature", because it GUARANTEES...
August 8, 2014 at 7:52 am
Viewing 15 posts - 121 through 135 (of 583 total)