Viewing 15 posts - 46 through 60 (of 123 total)
I can't speak to the travel expectations as I don't do any. However, about the training -- I would say unless you can squeeze it in during work hours...
August 19, 2013 at 5:36 am
You could put a trigger on the table but I don't think you can directly pass parameters to it, so there may not be a way to get the new...
July 24, 2013 at 7:51 am
We still need more information.
What data type is the column "Deleted"? Also, add it to your select query so we can see a sample of the data...
July 11, 2013 at 5:29 am
Wow, that's a lot of tables.
If they are all part of the same app, I'd go with 1 DB.
Mark
July 10, 2013 at 5:35 am
You can opt to delete all the existing data in your final table(s) and then import everything fresh. This would eliminate the problem of duplicate records. That or...
July 10, 2013 at 5:29 am
It appears that your company does soft deletes by setting the field "Deleted" to 1 when it should no longer be returned in queries.
Your screen shot doesn't include...
July 10, 2013 at 5:21 am
Yes, SQL Server will retain the values when you change the data type.
Mark
July 8, 2013 at 10:32 am
Luis,
Exactly what I was looking for. Thanks!
Mark
June 28, 2013 at 5:23 am
Nice examples everyone, thanks!
Sean - I can only sell items individually and then in a second, pre-set quantity but that second quantity can differ between products. It could be...
March 30, 2013 at 12:06 pm
micky - I'll check that out.
Sean - what did you have in mind? What can I do to make it more scalable?
Thanks,
Mark
March 26, 2013 at 6:18 pm
All,
I couldn't query the table regardless of the actual SQL. I tried limiting the return data but that didn't work.
Also tried using DTS to import the table to the...
February 21, 2013 at 4:02 pm
Thanks to everyone for the feedback!
Mark
February 14, 2013 at 8:58 am
Chad,
I looked in to doing the same thing but couldn't find much other than it appears to be incredibly difficult, if not impossible.
An alternative to the out-of-the-box SSRS front-end:
December 5, 2012 at 6:49 am
Malcolm,
If your values will always be in that format and lenght, you can try something like this:
select Left(ltrim(rtrim(YourFieldNameHere)), 6) + ' - ' + SUBSTRING(ltrim(rtrim(YourFieldNameHere)), 8, len(YourFieldNameHere)-7) as YourNewValue
from Blah
Just...
November 3, 2012 at 8:58 am
I think 2010 is the current shell for SQL 2012. Have a peek at this:
http://www.jamesserra.com/archive/2012/07/visual-studio-2012-does-not-support-bi/
Mark
October 30, 2012 at 8:02 pm
Viewing 15 posts - 46 through 60 (of 123 total)