Viewing 15 posts - 181 through 195 (of 198 total)
@steve-2: What would you do regarding the column order, when you are facing a CREATE OR ALTER <table> statement and the column order differs from the real. Recreating could be...
God is real, unless declared integer.
November 29, 2016 at 8:26 am
djackson 22568 (11/29/2016)
I never have an issue with this. A simple "if exists" tells me if I need to delete something before running create.
Yes, and doing this you drop...
God is real, unless declared integer.
November 29, 2016 at 8:16 am
I doubt, that an ALTER OR CREATE <table> would be used commonly, particularly since a CREATE table will usually need some indexes, FKs, CHECK CONSTRAINTs and some other stuff too.
Furthermore...
God is real, unless declared integer.
November 29, 2016 at 5:02 am
Who do you blame for the lack of snow, Obama or Trump :hehe:?
PS: Happy holiday.
God is real, unless declared integer.
November 24, 2016 at 12:48 am
van.yancey (9/16/2016)
I've only used it on Azure SQL Datawarehouse, but I believe the Polybase feature in SQL Server 2016 solves the problem of BULK EXPORT.
But it would be a little...
God is real, unless declared integer.
September 17, 2016 at 2:10 am
Indianrock (9/16/2016)
God is real, unless declared integer.
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...
God is real, unless declared integer.
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...
God is real, unless declared integer.
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...
God is real, unless declared integer.
September 5, 2016 at 1:11 am
~95 km; Bonn (Germany); once a year (in June)
God is real, unless declared integer.
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
God is real, unless declared integer.
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...
God is real, unless declared integer.
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...
God is real, unless declared integer.
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...
God is real, unless declared integer.
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.
God is real, unless declared integer.
June 6, 2016 at 1:24 am
Viewing 15 posts - 181 through 195 (of 198 total)