Viewing 15 posts - 2,161 through 2,175 (of 3,957 total)
david.holley (1/15/2013)
It does place anything starting with a letter at the end which is consistent with another application that we have.
Yup you missed mentioning that. 🙂
As long as it works...
January 15, 2013 at 8:00 pm
I understand you already have a solution but this might be a bit more efficient. The technique is based on an article by Jeff Moden on Grouping Islands of...
January 15, 2013 at 7:30 pm
llcooldre75 (1/15/2013)
CREATE TABLE Billing (
CUSTCODE VARCHAR,
SALESID ...
January 15, 2013 at 6:44 pm
wolfkillj (1/15/2013)
January 15, 2013 at 6:11 pm
I don't really know if this applies but if you're creating procedure main_p so that you have a cover SP that you can run by SQL agent (on a schedule),...
January 15, 2013 at 6:06 pm
Are you sure that link gives you what you need? I looked and it didn't look like the same problem.
This should work as long as the leftmost characters in...
January 15, 2013 at 6:02 pm
Another cool thing about extended properties is that, when you add them (for example) to a table or to a column, when you use SSMS to script that table's creation,...
January 15, 2013 at 5:50 pm
Happy to be of service my friend.
January 15, 2013 at 5:45 pm
Greg Snidow (1/15/2013)
dwain.c My personal preferences in cases like this is to combine the calendar (time slot) generation with the Tally table
Yep, mine is to always keep things as separate...
January 15, 2013 at 5:44 pm
wolfkillj (1/15/2013)
January 15, 2013 at 5:34 pm
sathiyan00 (1/15/2013)
its showing errorMsg 7302, Level 16, State 1, Line 1
Cannot create an instance of OLE DB provider "Microsoft.ACE.OLEDB.12.0" for linked server "(null)".
Chances are pretty good that you either haven't...
January 15, 2013 at 3:42 am
If we're reviving old, dead threads then I say there's always this:
DECLARE @num BIGINT = 1234567890
,@numstr VARCHAR(20) = ''
;WITH Tally (n) AS (
...
January 15, 2013 at 3:39 am
Koen Verbeeck (1/15/2013)
January 15, 2013 at 3:04 am
Koen Verbeeck (1/15/2013)
dwain.c (1/15/2013)
You must have all 3 running in the same mode. The driver won't allow you to install 32 bit in a 64 bit environment.
You can install...
January 15, 2013 at 2:32 am
oliver.morris (1/15/2013)
January 15, 2013 at 2:09 am
Viewing 15 posts - 2,161 through 2,175 (of 3,957 total)