Viewing 15 posts - 1,171 through 1,185 (of 13,469 total)
bdkdavid (3/24/2016)
SELECT LastName FROM DT5
WHERE CHARINDEX(CHAR(151), LastName) > 0
no results
SELECT LastName FROM DT5
WHERE CHARINDEX(CHAR(150), LastName) > 0
no results
SELECT LastName FROM DT5
...
March 24, 2016 at 1:46 pm
there's at least two other longer than normal hyphens that has a different ascii code than the "normal hyphen ASCII('-')=45,without even going into nvarchar data sets.
i'm betting it's one of...
March 24, 2016 at 1:12 pm
ok, i'm going through the same issue as well, we have two domains with two way trusts.
the network guys tell me it's not possible to change our existing group...
March 24, 2016 at 11:45 am
Jason Strates article lists missing indexes along with usecounts, costs, etc.
i'd start there and enhance as needed.
http://sqlmag.com/blog/missing-indexes-correlated-against-execution-costs-and-counts
othercolumns ...include_columns usecounts Cost AggregateCost Impact
...
March 23, 2016 at 8:12 am
you have to edit the report, and remove the parameter in the report as well. the report is still happily sending the parameters as it last knew them, it doesn't...
March 23, 2016 at 6:15 am
yeah i think you need to use sp_executesql and pass the two out parameters to get the errors that Redgates SQL Backup will return;
it will tell you the exact error...
March 22, 2016 at 1:50 pm
in that case, I'm thinking the issue is most likely that you've included a username and password in the connection, instead of letting the security be handled by the AD...
March 22, 2016 at 6:06 am
sej2008 (3/21/2016)
March 21, 2016 at 12:04 pm
it's very easy to zip through the install clicking next next next, but forgetting to add AD login as an administrator on the SQL instance.
you probably need to add yourself...
March 21, 2016 at 9:48 am
open the dropdown so it shows all your history of connections.mouse hover over an item so it is highlighted, but DO NOT mouseclick/SELECT it.
while the dropdown is still open, and...
March 21, 2016 at 9:42 am
I've also got some CLR's that i deploy to 2008R2 or 2012/2014 .
like you, i've got multiple codebases, for R2,2012 or 2014.
for the 2012/2014 stuff, I've also not been able...
March 21, 2016 at 9:32 am
mw112009 (3/21/2016)
LowellPlease see attached
when the script prompted you for the instance name, you did not type "MSSQLSERVER"
it defaults to SQLExpress if you don't type anything.
you don't have an extra isntance...
March 21, 2016 at 8:41 am
mw112009 (3/21/2016)
Good Answer, Can you help me check whether I have SQL Server installed or not ?Where do I start this ?Suggestions Please
because you got "login failed" you definitely have...
March 21, 2016 at 7:29 am
I would redesign this slightly, but a few things that jumps out at me are:
your query is hitting a view, which i try to avoid when possible. i prefer to...
March 21, 2016 at 7:21 am
All sys objects are either views, or procs or functions. The views are based on the uneditable resource database.
It is not possible to create your own obects in the sys...
March 20, 2016 at 11:12 am
Viewing 15 posts - 1,171 through 1,185 (of 13,469 total)