Viewing 15 posts - 2,566 through 2,580 (of 2,894 total)
DP-721271 (7/6/2010)
.../* Tried the following as well*/
IF @vchtstsirdt IS NULL
SET @vchtstsirdt = CONVERT(datetime, ISNULL(@vchtstsirdt,''))
Else
SET @vchtstsirdt = CONVERT(datetime, @vchtstsirdt)
...
That is also code noodles, but with different result.
NULL values will be...
July 7, 2010 at 1:56 am
xzd000 (7/7/2010)
Does the usage of linked server have any limitation?
Yes it does.
xzd000 (7/7/2010)
For eg, on insert,delete,update to the linked server?
There are some.
xzd000 (7/7/2010)
Some command that's not possible on...
July 7, 2010 at 1:43 am
David Portas (7/6/2010)
Is that the real statement actually being issued or did you simplify it by substituting literal values where there would have been variables? Assuming there are variables driving...
July 7, 2010 at 1:32 am
1. Please click the link in my signature, it will explain how t post your question to get timely answers
2. Also, could you please explain what rules for joining betwen...
July 7, 2010 at 1:25 am
I am off to Italy for very long weekend tomorrow, so I should care less 😀
But this is quite a nice puzzle, which I am going to have a look...
July 6, 2010 at 2:41 pm
Brandie Tarvin (7/6/2010)
Secondly, I need random numbers that do not repeat. I'm not limited to a range, but I need to make sure they...
July 6, 2010 at 12:23 pm
scott.pletcher (7/6/2010)
July 6, 2010 at 12:13 pm
Scott, could you please advise where you found that I have "tricked" the test data?
For ecah employee there is a record with LOGIN time before record with OUT time!
You are...
July 6, 2010 at 11:59 am
As I have mentioned in my first post, that my query will only take in count "closed" periods.
That is why I have not added filter for time period, as new...
July 6, 2010 at 11:32 am
scott.pletcher (7/6/2010)
I've done this before on time systems. You really don't have to...
July 6, 2010 at 11:14 am
There are many different ways to do it with SSIS. It depends really on your preference and experience in it. SSIS is a tool designed for this kind of tasks....
July 6, 2010 at 10:58 am
scott.pletcher (7/6/2010)
You will see that your query will return strange results as to make it work, COUNT should be changed to SUM in the HAVING clause.
Yes, SUM() should be used...
July 6, 2010 at 9:29 am
There is no database size limitation for mirroring. For your 32-bit system will be limitation of maximum of about 10 databases per server instance.
All restrictions can be found in BoL:
http://technet.microsoft.com/en-us/library/ms366349(SQL.90).aspx
July 5, 2010 at 7:30 am
doobya (7/5/2010)
the secondary function of the IsPaused column is "if this session is paused - when was it paused"
that...
July 5, 2010 at 6:55 am
FREETEXT is not UDF, it is in-build predicate. It cannot be used in such context.
You have used it similar to the following:
...
CASE WHEN ColA>ColB THEN ColC ELSE ColD>ColE
...
While...
July 5, 2010 at 5:55 am
Viewing 15 posts - 2,566 through 2,580 (of 2,894 total)