Viewing 15 posts - 31 through 45 (of 81 total)
sturner (3/1/2012)
aurato (3/1/2012)
sturner (3/1/2012)
change the dataype of the sopnumber in the temp table to char or varchar.
I had a hunch this might be it. Is it safe to change...
March 1, 2012 at 7:41 am
sturner (3/1/2012)
change the dataype of the sopnumber in the temp table to char or varchar.
I had a hunch this might be it. Is it safe to change the data...
March 1, 2012 at 7:07 am
Eugene Elutin (3/1/2012)
aurato (3/1/2012)
Great Plains Query:-----------------------------
SELECT * FROM SOP30300
WHERE SOPNUMBE IN
(
SELECT SOPNUMBE FROM #StatusHistory
)
...
Have you ever heard of JOIN's in SQL?
SELECT s.*
FROM SOP30300 s
JOIN #StatusHistory h ON h.SOPNUMBE...
March 1, 2012 at 7:04 am
Thank you very much. Exactly what I needed to know.
February 10, 2012 at 12:05 pm
Alright. Thanks for your help. Have no idea how they did it either. Time to log it myself; lesson learned.
January 26, 2012 at 8:00 am
Lowell (1/26/2012)
DROP TABLE counts as a DDL function,and would be in the default trace, if it didn't get rolled over:fastest way is the built in reports in SSMS:
Thanks, but how...
January 26, 2012 at 7:53 am
Also if anyone's interested, I did this to create a column that has one of three values:
SELECT TOP 1 INUPD
FROM
(SELECT NEWID() AS Random, 'INSERT' AS INUPD
UNION ALL
...
January 12, 2012 at 11:56 am
Wow, helluva response! :w00t: Thanks everyone for your input.
In the last response, what do you mean by "masking" data?
January 12, 2012 at 10:20 am
GSquared (1/12/2012)
One of the easiest, if the tables...
January 12, 2012 at 9:59 am
This is the procedure I'm trying to use. I attempted this to join to a field that already had a '%' for the LIKE in it. It didn't...
January 9, 2012 at 12:00 pm
Aaron Aardvark (1/9/2012)
aurato (1/9/2012)
January 9, 2012 at 11:19 am
Ninja's_RGR'us (1/9/2012)
Bumping is always frowned upon here (unless the next day or something like that).I didn't think this was done neither did Paul.
Very sorry then. First time I ever...
January 9, 2012 at 9:36 am
GilaMonster (1/9/2012)
Want anything useful? Post actual execution plans and queries and table designs. (p.s. you have huge tables, don't expect...
January 9, 2012 at 9:17 am
Well to add some further context, it's part of a stored procedure that does this:
Input is @SearchString nvarchar(255)
Separate @SearchString into table variable
E.g. 'This Is a Search String' becomes
Keyword
---------
This
Is
A
Search
String
Then I inner...
January 9, 2012 at 8:03 am
Viewing 15 posts - 31 through 45 (of 81 total)