Viewing 15 posts - 6,496 through 6,510 (of 7,600 total)
You don't need a CTE. In this case, it would just add complexity for no real reason that I can see :-).
July 22, 2013 at 2:03 pm
Sean Lange (7/22/2013)
Sue-651097 (7/22/2013)
But this doesn't solve the problem with the like operator as I cannot implement the wildcard %, or?
Yes you can still do a wildcard search.
inner join #search...
July 22, 2013 at 1:39 pm
Michael Valentine Jones (7/22/2013)The CASE expression will verify that the data string is in YYYY-MM-DD format, and is a valid date. It will return a 1 if the date...
July 22, 2013 at 11:34 am
Something like this should be very close at least, I think:
create proc pSearch
@searchparam varchar(400) -- values will be entered like this - seperated by comma: John, Mary, 23.10.1980
as
set @searchparam...
July 22, 2013 at 11:19 am
chrissorric (7/17/2013)Thanks for all the help!
This is what I finally came up with
SELECTp.OrderNum
FROM@Orders AS p
INNER JOIN@Results AS x ON x.LabNum = p.LabNum
GROUP BYp.OrderNum
HAVING SUM(Case when x.Flag = 'N'THEN 1...
July 17, 2013 at 1:11 pm
If the first date is greater than the second date, you will get a negative value.
If you want to treat all date differences as positive, add ABS() function around the...
July 16, 2013 at 3:27 pm
If you can, instead just truncate the old table, then re-insert only the kept rows.
July 16, 2013 at 2:15 pm
I would never have them run their own BACKUP command.
You need to have them call a stored proc so that you can add/override all options necessary to the BACKUP; for...
July 16, 2013 at 12:25 pm
For a very small number of immediate changes, it's ok. But close the window immediately after the changes. If you let it hang open, you might cause issues...
July 16, 2013 at 12:09 pm
Not much to go on, but probably something like this:
SELECT ...
FROM (
SELECT
...,
...
July 16, 2013 at 12:04 pm
OK, so:
datetime_column < DATEADD(YEAR, -2, DATEADD(DAY, DATEDIFF(DAY, 0, GETDATE()), 0))
July 16, 2013 at 10:55 am
Just capture value of the RecordID that you just modified in the calling code, and pass it into the code to be dynamically executed:
@query = 'DECLARE @RecordID AS Varchar(12)
SET @RecordID...
July 15, 2013 at 4:55 pm
In general, as below. But, if the column is not datetime, CAST the date calc to the exact datetime of the column. For example, if the column is...
July 15, 2013 at 4:50 pm
dspink (7/15/2013)
Select * INTO T1_Obfuscated FROM T1. (obfuscating only columns needed.) then dropping T1 and renaming T1_Obfuscated to T1. Not really too worried about space...
July 15, 2013 at 12:29 pm
Sean Lange (7/15/2013)
July 15, 2013 at 11:05 am
Viewing 15 posts - 6,496 through 6,510 (of 7,600 total)