Viewing 12 posts - 151 through 162 (of 162 total)
Indianrock (9/16/2016)
September 16, 2016 at 8:41 am
BULK INSERT? Or are you lamenting the absence of BULK EXPORT?
I'm missing BULK EXPORT.
Another point: even if you can do some OS-like stuff with SQL Server, the account that runs...
September 16, 2016 at 12:40 am
I think the risk is reasonable, as long you are using an xp_cmdshell_proxy_account with minimal privileges.
On the other side it would nice, if SQL Server would provide us with more...
September 16, 2016 at 12:22 am
If he would have written a book, than he would have written it on a PC with Word or on a typewriter (if he is conservative).
I don't believe that even...
September 5, 2016 at 1:11 am
~95 km; Bonn (Germany); once a year (in June)
July 29, 2016 at 11:01 am
You are right, if I declare the year column (and the partition function) with BIGINT instead of SMALLINT the implicit convertation will work and it scans only one partition
July 11, 2016 at 6:56 am
when I have to sent passwords per email, I try to include neither the username nor the app / site that uses the password and tell the person what it...
July 11, 2016 at 3:36 am
Nice article, but
- minus point for the usage of [dbo].[udfBuildISO8601Date] (UDFs are slow); there is a built in function DATEFROMPARTS() with the same syntax, that outputs a date. If necessary...
June 10, 2016 at 9:56 am
I'd say, that - depending on which index it uses and / which other sorts it has to do / when you are MERGE joining / going parallel / are...
June 7, 2016 at 12:36 am
... Furthermore without the ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW
it would be slow because with the default RANGE-parameter it has to spill out to TempDB.
June 6, 2016 at 1:24 am
@topic:
- you should never use FIRST_VALUE without "ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW", otherwise it will always spill out to TempDB -> slow
- for this reason I prever to...
June 3, 2016 at 12:41 am
Yes - it seems so. But please don't ask me, if this is a bug or intended behavior (I tend to bug or at least misbehavior, because MSSQL usually do...
May 20, 2016 at 12:26 am
Viewing 12 posts - 151 through 162 (of 162 total)