Viewing 15 posts - 856 through 870 (of 14,953 total)
So, the table is "tblJob" in the first query (in the OBJECT_ID function-call), but it's "tblWorkOrder" in the second query. Is that intentional?
September 12, 2012 at 8:45 am
Shaun-884394 (9/12/2012)
...GSquared i love your signature ROFL,LOL,ETC .... 😀
I don't think it can get any better.
Thanks! 🙂
The really funny part is, there was a noticable increase in people assuming my...
September 12, 2012 at 8:44 am
Luis Cazares (9/12/2012)
Eugene Elutin (9/12/2012)
You don't really need last join as the last digit of the second number can only be '3'
Wouldn't that be cheating?
Because that way I can...
September 12, 2012 at 8:42 am
I'm not accustomed to quotes around the stat name. Try it without those?
Edit: Never mind. Just tried it and it worked.
Are you sure you don't have a typo...
September 12, 2012 at 8:35 am
Here's what I came up with. Does the same thing the same way, just another way to write it:
WITH Numbers
...
September 12, 2012 at 7:58 am
Banana-823045 (9/12/2012)
GSquared,Yes you nailed it as I explained in my subsequent discovery in my previous post just before your last reply.
Again, thank you!
And of course, we overlapped post-timing.
September 12, 2012 at 7:02 am
I just set up this test harness:
CREATE TABLE dbo.tbl (ID INT, A BIT, B BIT, C BIT);
GO
ALTER TABLE dbo.tbl ADD CONSTRAINT DF_tbl_A DEFAULT(0) FOR A;
ALTER TABLE dbo.tbl ADD CONSTRAINT DF_tbl_B...
September 12, 2012 at 6:45 am
Have you checked to make sure there are no triggers being fired by the updates, or anything like that?
I'd have to see the table definition (create script) before I could...
September 12, 2012 at 6:36 am
Is the column returned by the query ASCII or UniCode (char or nchar)? I think I've seen that cause this error before.
September 12, 2012 at 6:30 am
It depends on what they mean by "numbers with no math".
Storage-wise, character data is more expensive. TinyInt can store numbers 0-255 in a single byte of data, but 1...
September 12, 2012 at 6:27 am
Lynn Pettis (9/11/2012)
GSquared (9/11/2012)
Lynn Pettis (9/11/2012)
declare @TestDate date = '2012-09-11';
with SevenRows(n) as (select row_number() over (order by (select...
September 12, 2012 at 6:10 am
RBarryYoung (9/11/2012)
GSquared (9/11/2012)
September 12, 2012 at 6:05 am
Lynn Pettis (9/11/2012)
declare @TestDate date = '2012-09-11';
with SevenRows(n) as (select row_number() over (order by (select null)) - 1...
September 11, 2012 at 2:14 pm
SSIS has an FTP object that can be used to automatically download the files. Won't work if it's FTPS, but will for FTP. Will that work for you?...
September 11, 2012 at 2:13 pm
A and B are equivalent under the hood. Your friend is correct that they work the same way. You can usually see that if you look at the...
September 11, 2012 at 2:09 pm
Viewing 15 posts - 856 through 870 (of 14,953 total)