Viewing 7 posts - 91 through 97 (of 97 total)
Hi all,
yes, scanning trough all views is an excess of work, and it could be expensive in the case of views with some hard calculation. And, as Scott points, run...
August 5, 2010 at 8:51 am
Hello,
in the same way as Scott I tried to do it with a cursor for all tables, try this code:
select TABLE_CATALOG, TABLE_SCHEMA, TABLE_NAME, COLUMN_NAME, Null AS HasNotNullValue
INTO #A
FROM information_schema.columns
DECLARE @TABLE_CATALOG...
August 2, 2010 at 4:31 am
Hello,
I suppose this code could be the code you want,
SELECT * FROM timekeep
LEFT JOIN timecard
ON timekeep.empID = timecard.empID AND timeField BETWEEN @beginDate AND @endDate
WHERE timecard.empID IS NULL
Regards,
...
August 2, 2010 at 3:35 am
Hi all,
sampathsoft, I suppose that in your desired order 1.2.3 is placed before 1.2.10, right?.
If you want to manage a tree structure you need to know what is the parent...
July 15, 2010 at 2:16 am
Hello,
seeing your SQL instruction hi have some ideas, lets me explain:
In a generic way you should try to simplify your query and test it. So you should test each part...
July 8, 2010 at 3:42 am
Hello,
if you want to take off hours, minutes and seconds, getting only the "date" part of the calculated date, add this line of code:
December 2, 2009 at 3:31 am
Hello again,
a colleague suggested me a workaround. I can use a generic configuration file for all the project packages, and then add a specific config file for access to specific...
May 27, 2009 at 1:55 am
Viewing 7 posts - 91 through 97 (of 97 total)