Viewing 15 posts - 1 through 15 (of 22 total)
I just played around with Jeff's example a little bit. It seems that all prime numbers exhibit this bad DECIMAL behavior, and that the bigger the prime number, the worse...
November 27, 2016 at 1:28 pm
Yes, it helps. Sometimes you can't see the forest through the trees...
I was trying much too hard, and wrote the following script. It needs a little work for weird...
September 19, 2016 at 4:42 am
Wow, Eirikur, this worked great! I think what was throwing me was revealed here in the outer SQL statement:
SELECT
12345 AS '@IDNUMBER'
,(
...
August 22, 2015 at 9:45 am
Sorry it took me so long to respond, I was temporarily assigned to other projects, but am now back to "XML Hell".
I'd like to thank Eirikur for putting together a...
August 22, 2015 at 12:48 am
Scott,
I totally agree that the logical model comes before the physical, but that wasn't exactly what I was asking. I'm going back even further before...
July 21, 2015 at 6:45 pm
GilaMonster (7/8/2015)
No, it'll be automatically dropped as soon as it goes out of scope.
So there's no other way to drop it before that?
Why are you using a table variable (with...
July 12, 2015 at 2:08 am
You can also query sys.sydepends for more information. This is nice since you can join to it in SQL statements, unlike a stored procedure. There's more info at:
July 7, 2015 at 7:49 pm
Are the databases on the same server? If so you should be able to use a SELECT...INTO... syntax to migrate the tables:
SELECT [Col1], CAST([Col2] AS VARCHAR(10),...)
INTO...
July 7, 2015 at 7:27 pm
I have a hard time understanding your example, so I don't know if this is the answer you're looking for, but have you looked into the syntax for a MERGE...
June 28, 2015 at 1:37 am
Thanks Nevyn! That's the solution I was looking for! I did a little more research based on what you showed me, and sure enough, the information is buried on the...
May 8, 2015 at 6:28 pm
Unfortunately, I am a developer working with a 3rd party ERP system rigorously controlled by DBA's. In other words, turning on full text search is not gonna happen...
May 8, 2015 at 2:34 pm
Thanks, Jeff, this gives me something to focus on. Now all I have to do is cut out all the "uhhs" and "umms" from my answer (I sometimes talk like...
March 4, 2015 at 2:52 am
Jeff Moden (3/4/2015)
March 4, 2015 at 1:39 am
As a DBA, you'd better have a definite plan of attack on something like this and you'd better be able to explain what that plan is. And, no... it's...
March 4, 2015 at 12:44 am
Wow... I just checked back on my humble little post: 27 views, and no one willing to take a crack at the answer. Okay, you 27 don't get the job......
March 3, 2015 at 10:58 pm
Viewing 15 posts - 1 through 15 (of 22 total)