Viewing 15 posts - 14,611 through 14,625 (of 14,953 total)
koteswara kishore K. (3/11/2008)
in 1st procedure sends 'Create table....' script to 2nd procedure.
these 2 staments are executing...
March 11, 2008 at 8:25 am
As an aside, this is the T-SQL 2005 forum. Your question might fit better in either the SQL 2000 DTS forum (since you say it's DTS), or the SQL...
March 11, 2008 at 7:59 am
You can query the spreadsheet as if it were a table and use a Where statement in that. "Where [col 1] is not null" should do the trick for...
March 11, 2008 at 7:57 am
Unless query 1 calls query 2 directly, temp tables created in query 1 are not accessible to query 2. Look up temp tables in Books Online and it will...
March 11, 2008 at 7:36 am
ScottPletcher (3/10/2008)
I don't know the laws for Los Angeles, CA, regarding this ... California law says, "on non-Leap Years, your birthday is official Feb 28"
Wouldn't L.A. fall under CA...
March 11, 2008 at 7:19 am
Vivien Xing (3/10/2008)
What is the difference between 8 and 9?
8 Password mismatch
9 ...
March 11, 2008 at 7:13 am
Lynn Pettis (3/10/2008)
March 10, 2008 at 2:55 pm
ScottPletcher (3/10/2008)
while others celebrate their birthday on March 1 because they...
March 10, 2008 at 2:46 pm
Lynn and Hugo:
I took Leap Years into account, and even (to be totally anal retentive about it), the hour, minute, second, and number of milliseconds, on each time.
Maybe I'm operating...
March 10, 2008 at 1:46 pm
molecule_kaab (3/10/2008)
Actually I want to keep track for security and navigation
I want the admin can tell who do what transaction and
he can find that it's possible that the...
March 10, 2008 at 1:29 pm
I just tested all three proposed functions, using my own date of birth, and it got the answer wrong in all three cases. I copied and pasted them into...
March 10, 2008 at 1:01 pm
paulhunter (3/5/2008)
GSquared
So, what you're saying is that "first column pain" is less than "last column pain"? Because all the columns in between are handled exactly the same in either case.
I...
March 10, 2008 at 11:59 am
I don't think I've ever used this syntax:
@StepDescription = upper(coalesce(@StepDescription, StepDescription)),
@PrevailingWage = coalesce(@PrevailingWage, PrevailingWage),
@StepStandard = coalesce(@StepStandard, StepStandard),
@GuaranteedStepWage = coalesce(@GuaranteedStepWage, GuaranteedStepWage),
@MinimumWageCap = coalesce(@MinimumWageCap, MinimumWageCap)
I would use:
StepDescription = upper(coalesce(@StepDescription, StepDescription)),
PrevailingWage = coalesce(@PrevailingWage,...
March 5, 2008 at 1:46 pm
A table-value UDF (not an inline scalar UDF) would probably be a good way to go on that.
March 5, 2008 at 11:58 am
In the tests I did, the XML method was slightly faster, but required less scans and reads from disk/cache. Speed differences, in many cases, were as few as 1...
March 5, 2008 at 11:55 am
Viewing 15 posts - 14,611 through 14,625 (of 14,953 total)