Viewing 15 posts - 451 through 465 (of 3,348 total)
I do not have a SQL Server 2014 instance at hand to play around with so I need to go by what I find documented at https://msdn.microsoft.com/en-us/library/dn452279%28v=sql.120%29.aspx.
I do not see...
April 27, 2016 at 8:33 am
MadAdmin (4/25/2016)
Thanks Hugo for giving this a review.The test you ran with the 250ms, was it on one row or the entire table?
And was it on super powerful hardware?
It...
April 25, 2016 at 3:41 pm
For problems such as that (and many more), it can be convenient to have a Calendar table in your database. A simple table with one row per date, showing the...
April 25, 2016 at 3:23 pm
It is not required to post the full CREATE TABLE statements; simplifying by removing columns that are not used in the problem is okay (and as far as I'm concerned...
April 25, 2016 at 3:19 pm
SQL_Surfer (4/24/2016)
April 25, 2016 at 3:09 pm
My understanding (from an admittedly limited exposure to Biztalk) is that normal SQL Server backups are used.
The only thing Biztalk does extra is use some markers or other logic to...
April 25, 2016 at 2:57 pm
ptownbro (4/24/2016)
I...
April 25, 2016 at 2:49 pm
Sean Lange (4/25/2016)
Grant Fritchey (4/25/2016)
I've always liked "dumber than a bag of hammers"My favorite is "Sharp as a marble".
I like that one!
The Dutch version translates as "when God distributed brains,...
April 25, 2016 at 8:39 am
Yes, I understand why you used the LIKE operator. I also see from the query results that your table contains 2704 rows that have a description that starts with "DTEF...
April 24, 2016 at 5:22 am
See if this article helps you:
https://www.simple-talk.com/sql/t-sql-programming/questions-about-using-tsql-to-import-excel-data-you-were-too-shy-to-ask/%5B/url%5D
April 24, 2016 at 5:17 am
A benefit of having a CurrentRowFlag column is that you can create a filtered index on it. That is not possible with EffectiveDate and EndDate only because you cannot compare...
April 24, 2016 at 5:13 am
In the query with LIKE, replace "COUNT(1)" with "Descrip". Check if the rest of the text matches as well. Your like only checks the first part, there might be differences...
April 23, 2016 at 3:03 pm
I can take this one. Nice synergy with my article on trusted vs untrusted constraints.
I am quite busy so if you're in a hurry you'll need to find someone else.
(And...
April 23, 2016 at 2:13 pm
Alternatively, in SSMS select the "output to text" option, then go to the query options for output to text and choose to use comma-delimited output.
April 23, 2016 at 2:04 pm
I cannot see the picture you included, but I can give you a generic reply.
Problems like this are often caused by invisible characters in the data. In a system on...
April 23, 2016 at 2:03 pm
Viewing 15 posts - 451 through 465 (of 3,348 total)