Viewing 15 posts - 54,631 through 54,645 (of 59,072 total)
Yeah... that's it...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 12, 2007 at 8:00 am
Yeck!
--Jeff Moden
Change is inevitable... Change for the better is not.
October 12, 2007 at 7:47 am
No, no.... the overhead of a cursor is not required here. Take my previous suggestion and find out how to build a recursive CTE to resolve these types of...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 12, 2007 at 7:34 am
Jeff Moden (10/11/2007)
Looks like any decent HTML editor or a Word macro to change spaces to the literal " " (without the quotes) will do the trick.
Sorry folks... I didn't check...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 12, 2007 at 7:29 am
Heh... thanks, Marcus. Most folks keep that type of info in two separate columns...
So, are you all set or do you still need help?
--Jeff Moden
Change is inevitable... Change for the better is not.
October 12, 2007 at 7:25 am
Looks like any decent HTML editor or a Word macro to change spaces to the literal " " (without the quotes) will do the trick.
--Jeff Moden
Change is inevitable... Change for the better is not.
October 11, 2007 at 9:34 pm
Just a test... please ignore...
FIGURE 1: Tally Table Code
[font="Courier New"]
drop table tally
--===== Create and populate the Tally table on the fly
 SELECT TOP 11000 --equates to more than 30 years of dates
        IDENTITY(INT,1,1) AS N
   INTO dbo.Tally
   FROM Master.dbo.SysColumns sc1,
        Master.dbo.SysColumns sc2
--===== Add a Primary Key to maximize performance
  ALTER TABLE dbo.Tally
    ADD CONSTRAINT PK_Tally_N 
        PRIMARY KEY CLUSTERED (N) WITH FILLFACTOR = 100
--===== Allow the general public to use it
  GRANT SELECT ON dbo.Tally TO PUBLIC[/font]
Test complete... regard all further alarms 😀
--Jeff Moden
Change is inevitable... Change for the better is not.
October 11, 2007 at 9:05 pm
Just doing some formatting tests... please ignore the following post...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 11, 2007 at 9:03 pm
Heh... what'cha gonna use it for? Forget about using it for batch programming... better be RBAR GUI code only (RBAR is pronounced "ree-bar" and is a "Modenism" for "Row...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 11, 2007 at 8:41 pm
I'd like to know why the hell you have letters in the NPA column. 😉
--Jeff Moden
Change is inevitable... Change for the better is not.
October 11, 2007 at 8:34 pm
Search for "hierarchy" on this forum... also lookup "expanding hierarchies" in Books Online. Because you're using 2k5, you may want to add "CTE" to your search criteria.
--Jeff Moden
Change is inevitable... Change for the better is not.
October 11, 2007 at 8:26 pm
Title of this thread is "I just want to do my job!".
Have you figured out what "your job" is, yet? I think you would become bored if you just...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 11, 2007 at 8:10 pm
Jack Corbett (10/8/2007)
--Jeff Moden
Change is inevitable... Change for the better is not.
October 11, 2007 at 7:49 pm
luissantos (10/11/2007)
Sorry, if i send you this post , but i send to you a private message and i know if you will receive them, so i attache...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 11, 2007 at 7:47 pm
Please see the following for how to resolve this problem...
http://www.sqlservercentral.com/Forums/Topic296166-8-1.aspx#BM296961
--Jeff Moden
Change is inevitable... Change for the better is not.
October 11, 2007 at 7:41 pm
Viewing 15 posts - 54,631 through 54,645 (of 59,072 total)