Viewing 15 posts - 76 through 90 (of 486 total)
I have implemented pretty much the same solution as Grant mentions with my current employer. To help with your bandwidth issue do you have the option of creating a...
MCITP SQL 2005, MCSA SQL 2012
March 9, 2016 at 9:20 am
Is your database 37GB in size or the drive its currently hosted on only 37GB?
You can take your database offline, move the physical files and bring the database back online...
MCITP SQL 2005, MCSA SQL 2012
March 9, 2016 at 9:13 am
As i quoted already from the official AWS documentation you cannot utilise SSIS in RDS SQL Server instances currently as its not supported.
One option you have is to...
MCITP SQL 2005, MCSA SQL 2012
March 9, 2016 at 9:07 am
Not sure which of your posts on this i should reply on however, this is covered in the AWS documentation:
http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html
While Amazon RDS doesn't support some features of SQL Server, you...
MCITP SQL 2005, MCSA SQL 2012
March 9, 2016 at 5:03 am
Personally I'd start with the basics, do you know what stored procedures \ sql code is being executed by the application that is timing out? Most applications have...
MCITP SQL 2005, MCSA SQL 2012
March 9, 2016 at 3:21 am
As GilaMonster has already answered no its not possible, what is possible though and whilst its not true load balancing is to mirror \ log ship \ replicate from...
MCITP SQL 2005, MCSA SQL 2012
January 8, 2016 at 8:09 am
Grant Fritchey (1/6/2016)
In addition to what's already mentioned, I'll add Itzik Ben Gan's book, Inside T-SQL Querying.
I'd very much 2nd this, Itzik really does write some excellent material when...
MCITP SQL 2005, MCSA SQL 2012
January 8, 2016 at 8:01 am
One way is via a script task or process task, before trying to use the file test if it is locked and only proceed if it isn't. ...
MCITP SQL 2005, MCSA SQL 2012
January 8, 2016 at 7:57 am
Thanks, I checked MSTSC on all servers involved was running but not the config, wil post back if this is the answer.
MCITP SQL 2005, MCSA SQL 2012
December 22, 2015 at 5:36 am
Unfortunately that doesn't happen with ours, we tried leaving one package for over 10 hours and it never moved on. The particular package we tested with has not...
MCITP SQL 2005, MCSA SQL 2012
December 22, 2015 at 5:07 am
Jeff Moden (12/17/2015)
Johnny B (12/17/2015)
I've been asked to check the jobs and sql logs for 6 production servers. Two of them are SQL2000 the rest 2008 R2. I don't mind...
MCITP SQL 2005, MCSA SQL 2012
December 22, 2015 at 5:05 am
Commenting so I can follow the responses, we are getting the same intermittently on a server for the last 2 weeks.
Package starts, validates then does nothing on the first...
MCITP SQL 2005, MCSA SQL 2012
December 22, 2015 at 4:56 am
Using only Powershell you can do this:
[System.Data.Sql.SqlDataSourceEnumerator]::Instance.GetDataSources() | SELECT ServerName | Format-Table -HideTableHeaders
MCITP SQL 2005, MCSA SQL 2012
November 23, 2015 at 4:55 am
One thing I have noticed is that your procedure that inserts into the in memory table is reading from a disk based table to do the insert.
Having not used in...
MCITP SQL 2005, MCSA SQL 2012
November 17, 2015 at 9:39 am
This is how we have done it.
Export from MySQL to CSV File
Import from CSV File to SQL Server.
All done via SSIS with the export being controlled by a process task...
MCITP SQL 2005, MCSA SQL 2012
October 12, 2015 at 9:10 am
Viewing 15 posts - 76 through 90 (of 486 total)