Viewing 15 posts - 1,561 through 1,575 (of 13,447 total)
based on Lynn's fine advice, this is how i'd look at it:
SELECT *
INTO #tmp
FROM OPENQUERY([DBServer1], 'SELECT
...
August 10, 2015 at 2:40 pm
without more details, i'm just throwing an example out there;
shouldn't you calculate the cost of all projects, and only filter on the criteria?
maybe something more along the lines of this?
SELECT
...
August 10, 2015 at 7:55 am
Luis Cazares (8/10/2015)
Any reason not use LIKE?
yes, there's a reason!
i built this a while ago , and i have a bunch of variations of it for specific purtposes.
but i remember...
August 10, 2015 at 7:42 am
if you step back from the dual-three letter matching criteria, whit is it you a REALLY trying to do?
identify misspelled drug names? create full text equivalent so that you...
August 10, 2015 at 7:08 am
levaif (8/10/2015)
So, SQL server is running under Local system account, on an terminal server.
I use my domain account to log into the server,...
August 10, 2015 at 6:48 am
levaif (8/10/2015)
Example :
SET @ExecCommand ="SELECT *...
August 10, 2015 at 6:31 am
to prevent drop and recreate, but allow alter, I don't believe normal permissions don't go that granular, so you'd have to create a DDL trigger to rollback the commands...
August 10, 2015 at 6:24 am
I've done it the opposite way, replace NOT allowed characters.
if a char is not allowed, do you just remove it, or replace it with a space or other char?
here's an...
August 10, 2015 at 6:10 am
levaif (8/10/2015)
SQL Servers run under Local System account.
right, so local system does not have domain access to any network shares, for example. it cannot browse to \\machinename\d$\somefolder.
to do that, you...
August 10, 2015 at 6:00 am
take a look at this thread:
http://www.sqlservercentral.com/Forums/Topic1707571-3411-1.aspx#bm1707577
typically, the fix is to explicitly assign master as the default database, and then cleanup the default db from there.
the thread mentions issues that contribute,...
August 10, 2015 at 5:55 am
just like xp_cmdshell, the service account that SQL is using is the credentials used for accessing objects outside of SQL server.
if your process was accessing local folders , special folders...
August 10, 2015 at 5:43 am
Jason i know i inherited a ton of servers, where noone was still around to add users as sys admin, or there was no admin at all.
I've got several scripts(powershell,...
August 7, 2015 at 1:34 pm
i took this post as an attempt to use a third party security audit solution that either has limited scope, or you might have limited experience with it.
it's...
August 7, 2015 at 1:26 pm
Sean Lange (8/7/2015)
August 7, 2015 at 12:38 pm
just for reference, this is how i tried to solve it;
i parsed everything with DelimitedSplit8K, and then just fiddled with columns that were larger than the target length.
my sample...
August 7, 2015 at 12:03 pm
Viewing 15 posts - 1,561 through 1,575 (of 13,447 total)