Viewing 15 posts - 2,011 through 2,025 (of 15,381 total)
mastersql (12/2/2015)
I’m trying to copy a SQL table schema and data from Server A to Server B. The SQL table is just a reference table which hasn’t populated for some...
December 2, 2015 at 10:50 am
cory.bullard76 (12/2/2015)
Ok, it is a date time field type....and I show records for Dec 1 2015.....but, when I say that field = 12/01/2015 I get 0 results
That is because it...
December 2, 2015 at 10:49 am
cory.bullard76 (12/2/2015)
December 2, 2015 at 10:47 am
cory.bullard76 (12/2/2015)
How would I convert a date field that outputs, for example, Dec 1 2015 12:00AM into 12/01/2015? I need to use it in a date range.
If it...
December 2, 2015 at 10:26 am
Seems that you can't or shouldn't depending on which link and/or version you are using. As always we need to assume the most current version but the documentation is contradictory...
December 2, 2015 at 10:22 am
PJ_SQL (12/2/2015)
CREATE TRIGGER TRG_A
ON _A
AFTER INSERT, UPDATE
AS
insert into _B
SELECT...
December 2, 2015 at 10:12 am
snomadj (12/2/2015)
December 2, 2015 at 9:43 am
Do you REALLY need a cursor here? I see why you are using dynamic sql but /*DO STUFF*/ sounds like it is doing DML "stuff" which is almost always possible...
December 2, 2015 at 7:45 am
snomadj (12/2/2015)
I have an access backend on a standalone. Want to migrate it to a SQL backend...
December 2, 2015 at 7:41 am
Jacob Wilkins (12/1/2015)
Beginning in SQL Server 2005, the optimizer converts IF (SELECT...
December 1, 2015 at 3:06 pm
Gagne (12/1/2015)
I ran into the strangest thing this morning. Users reported that something that has been running in less than 1 minute for years is now taking...
December 1, 2015 at 2:35 pm
Jacob's examples are great. Just for grins here is another approach. This should be about the same for performance but is a bit simpler to understand in my opinion.
select p.PatientName
from...
December 1, 2015 at 1:01 pm
Let's look at your last query. Reworking this a little bit to make it easier to see it would be something like this.
SELECT *
FROM #Patient P
INNER JOIN #Test pot ON...
December 1, 2015 at 12:24 pm
yakko_Warner (12/1/2015)
It's called Idera something . . . It's...
December 1, 2015 at 10:46 am
PJ_SQL (11/30/2015)
Only if Col C is updated to some non-null values.
Which values do you want? All columns or just column c? If you are not willing to put in some...
November 30, 2015 at 3:11 pm
Viewing 15 posts - 2,011 through 2,025 (of 15,381 total)