Viewing 15 posts - 91 through 105 (of 622 total)
Beatrix Kiddo (11/21/2016)
November 21, 2016 at 7:15 am
Brandie Tarvin (11/17/2016)
Grant Fritchey (11/16/2016)
SP1 for 2016 (which also has CREATE OR ALTER).
A single development surface. This means all functionality in Enterprise is also in Standard and Web (WHOOOP!).
vNext...
November 18, 2016 at 7:33 am
Rather than roll your own, I would use one of these
http://sqlfool.com/2010/04/index-defrag-script-v4-0/
both are great, take your pick according to your needs
November 17, 2016 at 3:21 am
I'm afraid, as ever, it depends.
If this is a staging table where you will be running a lot of transformations on the data, then the addition of an appropriate clustered...
November 11, 2016 at 5:23 am
Using TRUNCATE rather than DELETE will reset the identity
November 10, 2016 at 10:33 am
When you delete rows in a heap, it can't reallocate the space it had been using.
One of the myriad ways heaps suck.
November 10, 2016 at 9:28 am
Phil Factor (11/5/2016)
November 10, 2016 at 5:32 am
Ed Wagner (10/22/2016)
October 24, 2016 at 8:07 am
you'll also want to set the multisubnetfailover=true option in your connection string. This requires .NET 4.5 or above
October 19, 2016 at 9:29 am
J Livingston SQL (10/19/2016)
andrew gothard (10/19/2016)
SELECT REPLACE(REPLACE(REPLACE(CAST(CONVERT(VARCHAR(19), GETDATE(), 120) AS VARCHAR(10)),'-',''),':',''),' ','');hth
SELECT CONVERT(VARCHAR(10),GETDATE(),112)
Slightly neater I suppose 😉
October 19, 2016 at 7:37 am
SELECT REPLACE(REPLACE(REPLACE(CAST(CONVERT(VARCHAR(19), GETDATE(), 120) AS VARCHAR(10)),'-',''),':',''),' ','');
hth
October 19, 2016 at 6:57 am
further to Jeff and Grant's posts, some additional reading on backups (including the importance and meaning of RTO and RPO), can be found in the following link. If you...
October 19, 2016 at 6:24 am
I do tend to agree. Logically, if an order has been placed, but we do not yet have a fulfillment date, then it is unknown, which is what null...
October 18, 2016 at 3:52 am
There is, apparently a workaround, but it does require a server restart, and I have to say it's not something I've tested because, frankly, the DTA is not something I'd...
October 17, 2016 at 6:07 am
Viewing 15 posts - 91 through 105 (of 622 total)