Viewing 15 posts - 76 through 90 (of 1,220 total)
I LOVE utility scripts like this that build off of metadata, it's a great way to learn how SQL Server stores information internally. Thanks!
dhart (3/25/2016)
March 28, 2016 at 4:39 pm
They need Jeff Goldblum from Independence Day. The dude connected a Mac laptop to an alien network, he can handle an iPhone hack.
March 23, 2016 at 8:21 am
m_swetz (3/23/2016)
... "it's in the cloud, that means it's backed up"...
"In the cloud" = "On someone else's server that we access across the internet at WAN, rather than LAN, speeds....
March 23, 2016 at 8:16 am
That's a pretty good stumper. Personally I would turn on compression, aside from saving space it will frequently also save time as it compresses the data after the read...
March 23, 2016 at 8:07 am
Interesting article, Tim. Definitely not an easy thing to code. I've never worked with Web Edition, so I know my approaches would be different. For what you...
March 21, 2016 at 12:53 pm
I try to get my wife out the door 45 minutes before a movie start time. I can't seem to get it through my wife's head that it takes...
March 21, 2016 at 12:35 pm
That's not really a lot of records. I'm in the data type mismatch of your join fields camp, but also, how much memory does your server have and what...
March 18, 2016 at 4:54 pm
The word that struck me would have been Data Repository, but Data Source is probably better. I always trend towards polysyllaby. 😀
Personally, I'd suggest dropping some coin on Microsoft's...
March 17, 2016 at 5:52 pm
Huh. SQL Server on bare metal. It'd need a file system, a network I/O system, memory management, task switching, user/security management, update management. Maybe a GUI to...
March 17, 2016 at 3:29 pm
Automation is a good thing. As pointed out, it reduces error as long as the inputs remain consistent to the design.
Here's the thing: any code that we write we...
March 16, 2016 at 8:30 am
Gary Varga (3/15/2016)
No it is because England is the most important country in the world...
Just don't let Donald Trump hear you say that! 😛
March 15, 2016 at 11:53 am
GilaMonster (3/15/2016)
.. Had one guy on twitter stating that 'obviously' SQL Server on Linux would have no CLR and no T-SQL stored procedure support. Say what?
I could see Powershell being...
March 15, 2016 at 11:28 am
The thing that I find odd about the free Packt is that I get their email newsletter around 8am USA MST, and the books are only available another eight hours...
March 15, 2016 at 11:14 am
I like doing things through system tables:
SET NOCOUNT ON;
SELECT
'SELECT [SpecificationColumns]' + CHAR(13) + CHAR(10) +
'FROM PRODUCTIONCopy.dbo.' + name + CHAR(13) + CHAR(10) +
'EXCEPT SELECT [SpecificColumns]' + CHAR(13) + CHAR(10) +
'FROM...
March 15, 2016 at 10:57 am
Viewing 15 posts - 76 through 90 (of 1,220 total)