Viewing 15 posts - 1,201 through 1,215 (of 13,469 total)
monitoring is a big subject, and enterprise level monitoring certainly depends on your budget;
i think a lot of typical apps out there gun for $1K per monitored server, with discounts...
March 16, 2016 at 12:06 pm
you could do something like this:
a combination of the ccommandline type command and xp_cmdshell, you can ge tthe file contents of your *.sql files and execute them.
I just built this...
March 16, 2016 at 6:51 am
my first example, where i used delimiters that never occur in my data is a solid example of exporting and importing data with whitespace and dbl quotes int he contents,...
March 16, 2016 at 6:07 am
ok, bcp IN supports the quoted identifier, but not when you use bcp out/queryout;
it's been a while since i did bcp, i switched to Common Language Runtime to do my...
March 16, 2016 at 6:04 am
only if you change the datasource to use their AD credentials, instead of the cached username/password.
In that case, the end users most likely don't have permissions to query the data...
March 16, 2016 at 5:32 am
the order of the flags shouldn't make any difference, but i think if you run bcp /?, and put flags in the same order as the help specifies, that would...
March 16, 2016 at 5:20 am
you have to go deeper.
all that does is turn the string into a table. join that to another real table.
replace the function with dbo.DelimitedSplit8k(@Specimen,','); and CROSS APPLY that...
March 15, 2016 at 1:06 pm
here's an example of a four character column delimiter(the -t) and a four character row delimiter(-r).
just put your pipe in dbl quotes.
i think if you just add the minus q...
March 15, 2016 at 1:00 pm
cory.bullard76 (3/15/2016)
Lowell, how does T2 know to look at last year's data for the same days?
Last YEARS data?
i thought you said last week.
the join criteria is the datediff info: i'm...
March 15, 2016 at 12:53 pm
i think if you group your data by week or by day (with a filter for a weeks worth of data, and then join it against itself, you'll get what...
March 15, 2016 at 12:29 pm
yes, it's expected behavior when we are talking about Windows groups.
you just have to take into consideration the situations you are seeing here: multiple groups, and the cumulative inheritance of...
March 15, 2016 at 8:46 am
the error is really straight forward.
just like an integer cannot have decimal information, the DATE datatype does not support sub-minute time increments.
choose a datype that is appropriate; ; DATETIME can...
March 15, 2016 at 7:55 am
here's a very basic example: just add a new identity column as a primary key, assuming there is not already any identity and not any existing PK either.
the identity function...
March 15, 2016 at 6:06 am
I believe the request is to split the @sku into a table , via dbo.DelimitedSplit8K for example:
right now he's passing a string that happens to have a comma in it.
WHERE...
March 15, 2016 at 5:57 am
turn on the SQL Browser. that's it's entire purpose.
if you are not going to run the SQL Browser service, i believe that on each and every client that is going...
March 15, 2016 at 5:50 am
Viewing 15 posts - 1,201 through 1,215 (of 13,469 total)