Viewing 15 posts - 1,741 through 1,755 (of 6,395 total)
Ed Wagner (11/12/2015)
DonlSimpson (11/12/2015)
anthony.green (11/12/2015)
Ed Wagner (11/12/2015)
BillSadler
Sandler
Pixels
November 13, 2015 at 7:57 am
set @sql = 'datepart(year,''' + convert(varchar(10),@BaseYrBegin,103) + '''' + ')'
Your converting the @sql into a smalldatetime, you need to convert the @BaseYrBegin to a string so that your concatenating strings,...
November 13, 2015 at 1:33 am
Members of sysadmin get their default schema overridden by whatever is set at the user mapping level to DBO.
The value of DEFAULT_SCHEMA is ignored if the user is a member...
November 13, 2015 at 1:24 am
Probably best asking that on a share point forum.
But from what I can tell as long as you have SQL 2014 with the May CU or above installed you should...
November 12, 2015 at 10:59 am
Whats the page_count value for the table in question.
Generally MS recommends only rebuilding indexes on tables with a page_count > 1000
November 12, 2015 at 6:48 am
While I agree with you that it should be seamless to the apps, as we are unfortunately not the custodians of the product we can't we just go and change...
November 12, 2015 at 4:24 am
There are 38920 unique units, with 16117910 rows in total in the cache table.
The schema is a 3rd party schema so changing it is going to be months of work...
November 11, 2015 at 8:59 am
You have 22GB to play with, generally I now leave around 10% for the OS, so that eats 7GB out of your allowance, so you have 15GB to play with.
I...
November 11, 2015 at 7:59 am
You could go very specific to the byte level
Values <=100 are defined as percentages
Values > 100 are defined as a fixed amounts in bytes
So if you ideally wanted to limit...
November 11, 2015 at 7:50 am
Yeah but they want it via the GUI not via script.
The only way I know to get the SQL Agent to show up in SSMS is to be part of...
November 11, 2015 at 7:44 am
They already have that, the problem is that the roles allow you to create jobs, this goes against the auditing practises the client has in place where only sysadmins should...
November 11, 2015 at 7:23 am
Something like this http://www.sqlservercentral.com/scripts/String/89388/
November 11, 2015 at 5:16 am
Do they have to go into the same DB?
Could you not use union and 3 part naming convention
eg
select ... from ProdDB.ProdSchema.ProdTable
union
select ... from ArchiveDB.ArchiveSchema.ArchiveTable
Other methods would be to SSIS the...
November 11, 2015 at 5:09 am
Take a look at Perry's stairway for always on, it goes from the OS cluster setup upwards and will detail steps needed to create the WSFC and enable AlwaysOn
November 11, 2015 at 4:48 am
Viewing 15 posts - 1,741 through 1,755 (of 6,395 total)