Show All Related Tags
Did you mean
process improvement (809 results), policies and procedures (472 results), business process (452 results), processor (450 results), business process automation (215 results)more...
Show Fewer Related Tags
Did you mean
process improvement (809 results), policies and procedures (472 results), business process (452 results), processor (450 results), business process automation (215 results), procurement (152 results), HP ProCurve (82 results), process (77 results), procedure (66 results), word-processing (55 results), image processing (54 results), word-processor (43 results), parallel processing (41 results), e-procurement (36 results), multi-core processor (27 results), microprocessor (26 results), multiprocessor (25 results), Process Management (22 results), dual-core processor (21 results), process automation (18 results), dual processor (17 results), signal processing (16 results), business process modeling (14 results), transaction processing (14 results), development process (14 results), payment processing (11 results), Automatic Data Processing Inc. (10 results), processing power (10 results), Procter & Gamble Co. (8 results), natural language processing (7 results), quad-core processor (7 results), single processor (5 results), forms processing (5 results), image processor (4 results), PC processor (3 results), continuous process improvement (3 results), x86 processor (3 results), quad processor (3 results), business process transformation (3 results), coprocessor (2 results), procedural-programming (2 results), procurement management (2 results), transaction processing system (1 results), Procuri (1 results), digital signal processor (1 results), MicroProcessor Forum (1 results), process reengineering (1 results), two-processor (1 results), proceed (1 results), Procket Networks (1 results)fewer...
Sponsored White Papers, Webcasts, and Downloads
TechRepublic Resources
- sort by:
- Relevance
- Date
- Popularity
- upgrading from single to dual processor - windows 2003
- Greetings - I have a win 2003 server that I just installed a second processor in. It's an old Dell poweredge 1300 that I use mainly for authentication and mass file storage. the bois shows both CPUs are good, but I don't know how to get win 2003 to recognize...
- Discussion threads 2007-08-06
- VB6 Data Report calling SQL stored procedure
- I have a VB6 data report with a data environment DE where the DE command properties list a stored procedure that exists and works fine. The stored proc has 2 parameters which are defined in the DE. I invoke the report by clicking a name in a combo box. The...
- Discussion threads 2007-05-09
- Bios causing problem?
- OK - my PC is powering up the motherboard, CD & hard drives, however nothing appears on the screen...Ive tried swapping memory around to see if that makes any difference, in doing that I thought I'd see what would happen with no memory, strangley the BIOS does not beep to...
- Discussion threads 2007-05-17
- Computer Does Not Boot No Beep On Startup Either....
- Right well a couple of days ago my computer stopped working, i've replaced the motherboard and connected everything up. I know the Memory, Graphics, Motherboard, HDD is fine, just want to clarify its probably the CPU thats broken before i go out and buy one.When i turn the PC...
- Discussion threads 2007-05-01
- Making use of INSTEAD-OF triggers in SQL Server 2005
- Why use Views?Views, especially ones with triggers on them, degrade the performance of the database by a huge amount.You can accomplish the same things by using a select stored procedure or user defined function and an update stored procedure.Don't give your front-end developers access to the tables directly. Just...
- Discussion threads 2006-09-11
- P4 v. Celeron in Business Environment
- P4 v. Celeron in Business EnvironmentI am the Senior Systems Admin for a manufacturing firm. I administer a Windows network on a Novell server. We have had a few issues in relation to the Novell Client, currently 4.91 SP2, some are on 4.92 where we suspect the celeron...
- Discussion threads 2005-12-17
- Incorporate SQL Server UDFs in your .NET applications
- The article shows a misuse of UDFsIt’s nice to see UDFs get some attention. But the author exhibits a common misuse of UDFs. Take a look at this procedure:CREATE PROCEDURE dbo.ReturnAllEmployees AS BEGIN SELECT dbo.GetEmployeeName(e.EmployeeID) As FullName, Address, City, PostalCode FROM Employees e END The SELECT statement...
- Discussion threads 2005-10-20
- Use .NET to develop and implement a Web service solution from start to finish
- naming stored proceduresTony,why are you adding the 'sp_' prefix to your sprocs? SQL Server docs strongly discourage such naming convention since it forces master database lookups.The Docs may discourage it, but it's pretty much SOP in every installation I've seen.sp_ procs bad ideaI have to agree with pequod on this....
- Discussion threads 2005-06-07
- Pick alternatives to application synonyms
- This week's Oracle newsletter describes how to choose alternatives for public and private synonyms.Do you use alternatives for public and private synonyms? Which alternative do you prefer? Please share your thoughts.If you aren't subscribed to the free Oracle newsletter, click the following link to automatically sign up:http://nl.com.com/MiniFormHandler?brand=builder&subs_channel=bldr_front_door&list_id=e050&tag=fbLess synonyms is better...
- Discussion threads 2004-10-12
- Building a data values dictionary
- This week's SQL Server newsletter presents the basic SQL for building a data values dictionary.Will you follow the steps in this tip to create a data values dictionary? Do any of your clients ever request this kind of data? Please let us know.If you aren't subscribed to the free SQL...
- Discussion threads 2004-10-11
Additional Resources
- Getting Up to Speed With PROC REPORT
- Learning the basics of PROC REPORT can help the new SAS user avoid hours of headaches. PROC REPORT can often be used in lieu of PROC TABULATE or DATA _NULL_ reporting - two areas that have driven the new SAS user crazy. With the added capabilities of ODS provided in...
- White papers 2004-04-14
- PROC FORMAT - Not Just Another Pretty Face
- PROC FORMAT, because of its name, is most often used to change the appearance of data for presentation. But PROC FORMAT can be used for much more than the cosmetic transformation of data. It can be a tool for redefining data, recoding data, transforming data for tabulation and reporting, subsetting...
- White papers 2005-03-09
- Easy Graphs With PROC FORMAT, PROC GPLOT, and ODS
- By means of straightforward commands in SAS v8.2 and SAS/GRAPH, graphs and charts can be generated that are visually appealing and easy to understand without having to import data into another graph-generating program. Using PROC GPLOT/GHART in conjunction with PROC FORMAT and ODS output delivery system, data can be visualized...
- White papers 2007-05-14
- So You're Still Not Using PROC REPORT; Why Not?
- Everyone who can spell SAS knows how to use PROC PRINT. Its primary use may be as a development tool to help in debugging a long multi-step program, or as a simple report generator when all that is really needed is a quick look at the data, or even a...
- White papers 2006-02-28
- Proc SQL - A Primer for SAS Programmers
- The Structured Query Language SQL has a very different syntax and, often, a very different method of creating the desired results than the SAS Data Step and the SAS procedures. Only a very thorough manual, such as the SAS Guide to the Proc SQL Procedure, could even begin to describe...
- White papers 2006-02-28
- Turning the Data Around: PROC TRANSPOSE and Alternative Approaches
- PROC TRANSPOSE can be used to "Rotate" transpose SAS data sets i.e. the values of one given variable become variable names and variables in the input data set become observations in the output. The answers to three simple questions suffice to define the specification statements of PROC TRANSPOSE. This paper...
- White papers 2007-05-14
- Calculating Statistics Using PROC MEANS Versus PROC SQL
- PROC SQL is a widely used language for retrieving and updating data in tables/views. Mainly it is used to retrieve data from RDBMS, calculate the descriptive statistics or summarize the data. The MEANS procedure provides data summarization tools to compute descriptive statistics for variables across all observations and within groups...
- White papers 2007-05-14
- Making Sense of PROC TABULATE
- The TABULATE procedure in SAS provides a flexible platform to generate tabular reports. Many beginning SAS programmers have a difficult time understanding the syntax of PROC TABULATE and tend to avoid using the procedure. This paper will explain the syntax of PROC TABULATE and, with examples, show how to grasp...
- White papers 2005-03-09
- A Comparison of Two Procedures to Fit Multi-Level Data: PROC GLM Versus PROC MIXED
- This paper presents the advantages of using PROC MIXED versus PROC GLM as a solution for hierarchical data. Analyzing multi-level, non-independent data requires a different methodology from the standard general linear model that is implemented in PROC GLM. A Random Coefficient RC regression model utilizing the SAS procedure PROC MIXED...
- White papers 2005-03-09
- Win the Pennant!: Use PROC FORMAT
- The FORMAT procedure can be a programmer's best friend once the initial hurdles of understanding its usage have been overcome. No procedure can replace the power of the SAS DATA step, but learning to use procedures in the right place and at the right time may provide new and efficient...
- White papers 2007-05-14
- << Previous
- page 1 of 1
- Next >>
