or

SQL*Plus error logging – New feature release 11.1

articles: 

One of the most important things that a developer does apart from just code development is, debugging. Isn’t it? Yes, debugging the code to fix the errors that are raised. But, in order to actually debug, we need to first capture them somewhere. As of now, any application has it’s own user defined error logging table(s).

Imagine, if the tool is rich enough to automatically capture the errors. It is very much possible now with the new SQL*PLus release 11.1

A lot of times developers complain that they do not have privilege to create tables and thus they cannot log the errors in a user defined error logging table. In such cases, it’s a really helpful feature, at least during the unit testing of the code.

I made a small demonstration in SCOTT schema using the default error log table SPERRORLOG, hope this step by step demo helps to understand easily :

NOTE : SQL*Plus error logging is set OFF by default. So, you need to “set errorlogging on” to use the SPERRORLOG table.

SP2 Error

Copyright (c) 1982, 2010, Oracle.  All rights reserved.

Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> desc sperrorlog;
 Name                                      Null?    Type
 ----------------------------------------- -------- ----------------------------

 USERNAME                                           VARCHAR2(256)
 TIMESTAMP                                          TIMESTAMP(6)
 SCRIPT                                             VARCHAR2(1024)
 IDENTIFIER                                         VARCHAR2(256)
 MESSAGE                                            CLOB
 STATEMENT                                          CLOB

SQL> truncate table sperrorlog;

Table truncated.

SQL> set errorlogging on;
SQL> selct * from dual;
SP2-0734: unknown command beginning "selct * fr..." - rest of line ignored.
SQL> select timestamp, username, script, statement, message from sperrorlog;

TIMESTAMP
---------------------------------------------------------------------------
USERNAME
--------------------------------------------------------------------------------

SCRIPT
--------------------------------------------------------------------------------

STATEMENT
--------------------------------------------------------------------------------

MESSAGE
--------------------------------------------------------------------------------

11-SEP-13 01.27.29.000000 AM
SCOTT


TIMESTAMP
---------------------------------------------------------------------------
USERNAME
--------------------------------------------------------------------------------

SCRIPT
--------------------------------------------------------------------------------

STATEMENT
--------------------------------------------------------------------------------

MESSAGE
--------------------------------------------------------------------------------

selct * from dual;
SP2-0734: unknown command beginning "selct * fr..." - rest of line ignored.

ORA Error

SQL> truncate table sperrorlog;

Table truncated.

SQL> select * from dula;
select * from dula
              *
ERROR at line 1:
ORA-00942: table or view does not exist

SQL> select timestamp, username, script, statement, message from sperrorlog;

TIMESTAMP
---------------------------------------------------------------------------
USERNAME
--------------------------------------------------------------------------------

SCRIPT
--------------------------------------------------------------------------------

STATEMENT
--------------------------------------------------------------------------------

MESSAGE
--------------------------------------------------------------------------------

11-SEP-13 01.36.08.000000 AM
SCOTT


TIMESTAMP
---------------------------------------------------------------------------
USERNAME
--------------------------------------------------------------------------------

SCRIPT
--------------------------------------------------------------------------------

STATEMENT
--------------------------------------------------------------------------------

MESSAGE
--------------------------------------------------------------------------------

select * from dula
ORA-00942: table or view does not exist

Like shown above, you can capture PLS errors too.

If you want to execute it through scripts, you can do it like this, and later spool the errors into a file. I kept these three lines in the sperrorlog_test.sql file -

truncate table sperrorlog;
selct * from dual;
select * from dula;

SQL> @D:sperrorlog_test.sql;

Table truncated.

SP2-0734: unknown command beginning "selct * fr..." - rest of line ignored.
select * from dula
              *
ERROR at line 1:
ORA-00942: table or view does not exist


SQL> select TIMESTAMP, SCRIPT, STATEMENT, MESSAGE from sperrorlog;

TIMESTAMP
---------------------------------------------------------------------------
SCRIPT
--------------------------------------------------------------------------------

STATEMENT
--------------------------------------------------------------------------------

MESSAGE
--------------------------------------------------------------------------------

11-SEP-13 01.50.17.000000 AM

D:sperrorlog_test.sql;
SP2-0734: unknown command beginning "D:sperror..." - rest of line ignored.


TIMESTAMP
---------------------------------------------------------------------------
SCRIPT
--------------------------------------------------------------------------------

STATEMENT
--------------------------------------------------------------------------------

MESSAGE
--------------------------------------------------------------------------------

11-SEP-13 01.50.27.000000 AM
D:sperrorlog_test.sql
selct * from dual;
SP2-0734: unknown command beginning "selct * fr..." - rest of line ignored.


TIMESTAMP
---------------------------------------------------------------------------
SCRIPT
--------------------------------------------------------------------------------

STATEMENT
--------------------------------------------------------------------------------

MESSAGE
--------------------------------------------------------------------------------

11-SEP-13 01.50.27.000000 AM
D:sperrorlog_test.sql
select * from dula
ORA-00942: table or view does not exist

SQL>

Check Oracle documentation on SPERRORLOG.

In addition to above, if you want to be particularly specific about each session’s error to be spooled into a file you could do this -

SQL> set errorlogging on identifier my_session_identifier

Above mentioned IDENTIFIER keyword becomes a column in SPERRORLOG table. It would get populated with the string value “my_session_identifier”. Now you just need to do this -
SQL> select timestamp, username, script, statement, message
2 from sperrorlog
3 where identifier = 'my_session_identifier';

To spool the session specific errors into a file, just do this -

SQL> spool error.log
SQL> select timestamp, username, script, statement, message
2 from sperrorlog
3 where identifier = 'my_session_identifier';
SQL> spool off




or

Tips to install Oracle 11gr2 RAC on AIX (6.1/7.1)

AIX is like an Unix environment awesome original, same to HP-Unix, and, if you have a plan to install Oracle RAC, you need to pay attention. I note some tips in this article to help.

1. Checking Operating System Packages

# lslpp -l bos.adt.base bos.adt.lib bos.adt.libm bos.perf.libperfstat 
bos.perf.perfstat bos.perf.proctools rsct.basic.rte rsct.compat.clients.rte 
xlC.aix61.rte

If not, install on AIX source by smity. It's easy, but remember, some packaged requires your IBM's account to download.

2. Verify UDP and TCP Kernel Parameters

# /usr/sbin/no -a | fgrep ephemeral

If you expect your workload to require a high number of ephemeral ports, then update
the UDP and TCP ephemeral port range to a broader range. For example:

# /usr/sbin/no -p -o tcp_ephemeral_low=9000 -o tcp_ephemeral_high=65500
# /usr/sbin/no -p -o udp_ephemeral_low=9000 -o udp_ephemeral_high=65500

3. Checking Resource Limits:
To ensure that these resource limits are honored, confirm that the line login
session required /usr/lib/security/pam_aix is set in /etc/pam.conf.For example:

dtsession auth required /usr/lib/security/pam_aix
dtlogin session required /usr/lib/security/pam_aix
ftp session required /usr/lib/security/pam_aix
imap session required /usr/lib/security/pam_aix
login session required /usr/lib/security/pam_aix
rexec session required /usr/lib/security/pam_aix
rlogin session required /usr/lib/security/pam_aix
rsh session required /usr/lib/security/pam_aix
snapp session required /usr/lib/security/pam_aix
su session required /usr/lib/security/pam_aix
swrole session required /usr/lib/security/pam_aix
telnet session required /usr/lib/security/pam_aix
xdm session required /usr/lib/security/pam_aix
OTHER session required /usr/lib/security/pam_prohibit
websm_rlogin session required /usr/lib/security/pam_aix
websm_su session required /usr/lib/security/pam_aix
wbem session required /usr/lib/security/pam_aix

4. Tuning AIX System Environment
Confirm the aio_maxreqs value using the procedure for your release:
AIX 6.1 and 7.1:

# ioo -o aio_maxreqs
aio_maxreqs = 65536

The aio is Asynchronous Input Output is an exciting parameter, I tried to control and modified it many times, but it's strongly to do from Oracle advices,

Quote:

Adjust the initial value of aio_maxservers to 10 times the number of logical disks divided by the number of CPUs that are to be used concurrently but no more than 80

Oracle document refer: https://docs.oracle.com/database/121/AXDBI/app_manual.htm#AXDBI7880

5. Tuning Virtual Memory Manager

vmo -p -o minperm%=3
vmo -p -o maxperm%=90
vmo -p -o maxclient%=90
vmo -p -o lru_file_repage=0
vmo -p -o strict_maxclient=1
vmo -p -o strict_maxperm=0

Note: You must restart the system for these changes to take effect

6. Increase System block size allocation

# /usr/sbin/chdev -l sys0 -a ncargs='128'

7. Configure SSH LoginGraceTime Parameter
On AIX systems, the OpenSSH parameter LoginGraceTime by default is commented
out, and the default behavior of OpenSSH on AIX can sometimes result in timeout
errors. To avoid these errors, complete the following procedure:
7.1. Log in as root.
7.2. Using a text editor, open the OpenSSH configuration file /etc/ssh/sshd_config.
7.3. Locate the comment line #LoginGraceTime 2m.
7.4. Uncomment the line, and change the value to 0 (unlimited). For example:
LoginGraceTime 0
7.5. Save /etc/ssh/sshd_config.
7.6. Restart SSH.

8. Setting priviledge to Oracle ASM Luns
Same to Solaris, HP-Unix. Remember, when you've got failure of ASM configuration, you need to flush out the disk's slice/partition by OS command "dd". And the slice/partition/LUN allocated from storage to IBM, has got different first alphabet to other platform. The alphabet begins by "r", example:

7.1 ORC and Voting disk
# chown grid:asmadmin /dev/rhdisk5 -> OCR
# chmod 660 /dev/rhdisk5 
# chown grid:asmadmin /dev/rhdisk6 -> Voting Disk
# chmod 660 /dev/rhdisk6
7.2 Datafile, Archivelog and Backup 
# chown grid:asmadmin /dev/rhdisk2
# chmod 660 /dev/rhdisk2
# chown grid:asmadmin /dev/rhdisk3
# chmod 660 /dev/rhdisk3
# chown grid:asmadmin /dev/rhdisk4
# chmod 660 /dev/rhdisk4
# chown grid:asmadmin /dev/rhdisk9
# chmod 660 /dev/rhdisk9
# chown grid:asmadmin /dev/rhdisk10
# chmod 660 /dev/rhdisk10

9. Enable simultaneous access to a disk device from multiple nodes
To enable simultaneous access to a disk device from multiple nodes, you must set the appropriate Object Data Manager (ODM) attribute, depending on the type of reserve attribute used by your disks. The following section describes how to perform this task using hdisk logical names

8.1. determine the reserve setting your disks use, enter the following command,where n is the hdisk device number

# lsattr -E -l hdiskn | grep reserve_

The response is either a reserve_lock setting, or a reserve_policy setting. If the attribute is reserve_lock, then ensure that the setting is reserve_lock = no. If the attribute is reserve_policy, then ensure that the setting is reserve_policy = no_reserve.

8.2. If necessary, change the setting with the chdev command using the following syntax, where n is the hdisk device number:

chdev -l hdiskn -a [ reserve_lock=no | reserve_policy=no_reserve ]

For example:
# chdev -l hdisk5 -a reserve_lock=no
# chdev -l hdisk5 -a reserve_policy=no_reserve

8.3. Enter commands similar to the following on any node to clear the PVID from each disk device that you want to use:

# /usr/sbin/chdev -l hdiskn -a pv=clear

When you are installing Oracle Clusterware, you must enter the paths to the appropriate device files when prompted for the path of the OCR and Oracle Clusterware voting disk. For example: /dev/rhdisk10

9.Configure Shell Limits
9.1. Add the following lines to the /etc/security/limits file:

default:
fsize = -1
core = 2097151
cpu = -1
data = -1
rss = -1
stack = -1
nofiles = -1

9.2.Enter the following command to list the current setting for the maximum number of process allowed by the Oracle software user:

/usr/sbin/lsattr -E -l sys0 -a maxuproc

If necessary, change the maxuproc setting using the following command:

/usr/sbin/chdev -l sys0 -a maxuproc=16384

10. Configure User Process Parameters (Verify that the maximum number of processes allowed for each user is set to 2048 or greater)
Enter the following command:

# smit chgsys

Verify that the value shown for Maximum number of PROCESSES allowed for each user is greater than or equal to 2048. If necessary, edit the existing value.
When you have finished making changes, press Enter, then Esc+0 (Exit) to exit.

11. Configure Network Tuning Parameters:
To check the current values of the network tuning parameters:

# no -a | more

If the system is running in compatibility mode, then follow these steps to change the parameter values:

Enter commands similar to the following to change the value of each parameter:

# no -o parameter_name=value

For example:

# no -o udp_recvspace=655360

Add entries similar to the following to the /etc/rc.net file for each parameter that you changed in the previous step:

if [ -f /usr/sbin/no ] ; then
/usr/sbin/no -o udp_sendspace=65536
/usr/sbin/no -o udp_recvspace=655360
/usr/sbin/no -o tcp_sendspace=65536
/usr/sbin/no -o tcp_recvspace=65536
/usr/sbin/no -o rfc1323=1
/usr/sbin/no -o sb_max=4194304
/usr/sbin/no -o ipqmaxlen=512
fi

For the ISNO parameter tcp_sendspace, use the following command to set it:

# ifconfig en0 tcp_sendspace 65536

By adding these lines to the /etc/rc.net file, the values persist when the system restarts.

12. Automatic SSH configuration
By default, OUI searches for SSH public keys in the directory /usr/local/etc/, and ssh-keygen binaries in /usr/local/bin. However, on AIX, SSH public keys typically are located in the path /etc/ssh, and ssh-keygen binaries are located in the path /usr/bin. To ensure that OUI can set up SSH, use the following command to create soft links:

# ln -s /etc/ssh /usr/local/etc
# ln -s /usr/bin /usr/local/bin

In rare cases, Oracle Clusterware installation may fail during the "AttachHome" operation when the remote node closes the SSH connection. To avoid this problem, set the following parameter in the SSH daemon configuration file /etc/ssh/sshd_config on all cluster nodes to set the timeout wait to unlimited:

LoginGraceTime 0

13. Shell Limit
Adding these line in /etc/security/limits

default:
fsize = -1
core = 2097151
cpu = -1
data = -1
rss = -1
stack = -1
nofiles = -1

14. Create groups and users

# mkgroup -'A' id='1000' adms='root' oinstall
# mkgroup -'A' id='1031' adms='root' dba
# mkgroup -'A' id='1032' adms='root' oper
# mkgroup -'A' id='1020' adms='root' asmadmin
# mkgroup -'A' id='1022' adms='root' asmoper
# mkgroup -'A' id='1021' adms='root' asmdba
# mkuser id='1100' pgrp='oinstall' groups='dba,asmadmin,asmoper,asmdba' home='/portalgrid/grid' grid
# mkuser id='1101' pgrp='oinstall' groups='dba,oper,asmdba' home='/portaloracle/oracle' oracle

# mkdir -p /portalapp/app/11.2.0/grid
# mkdir -p /portalapp/app/grid
# mkdir -p /portalapp/app/oracle

# chown grid:oinstall /portalapp/app/11.2.0/grid <- GRID_HOME
# chown grid:oinstall /portalapp/app/grid <- GRID_BASE (ORACLE_BASE for Grid user)
# chown -R grid:oinstall /portalapp
# chown oracle:oinstall /portalapp/app/oracle
# chmod -R 775 /portalapp/

15. Setting the profile
15.1. Grid Profile

export TEMP=/tmp
export TMP=/tmp
export TMPDIR=/tmp
umask 022

export ORACLE_HOSTNAME=portal1
export ORACLE_BASE=/portalapp/app/grid
export ORACLE_HOME=/portalapp/app/11.2.0/grid
export GRID_HOME=/portalapp/app/11.2.0/grid
export CRS_HOME=/portalapp/app/11.2.0/grid
export ORACLE_SID=+ASM1

export PATH=$ORACLE_HOME/bin:$PATH
export LD_LIBRARY_PATH=$ORACLE_HOME/lib

16. Prevent Xserver does not display correct term

# startsrc -x

17. Create the following softlink needed for some Oracle utilites

# ln -s /usr/sbin/lsattr /etc/lsattr

To check existing capabilities, enter the following command as root; in this example,
the Grid installation user account is grid:

# /usr/bin/lsuser -a capabilities grid

To add capabilities, enter a command similar to the following:

# /usr/bin/chuser capabilities=CAP_NUMA_ATTACH,CAP_BYPASS_RAC_VMM,CAP_PROPAGATE grid

18. Remember to run the Installation fixup scripts

$ ./runcluvfy.sh stage -pre crsinst -n node -fixup -verbose

With Oracle Clusterware 11g release 2, Oracle Universal Installer (OUI) detects when the minimum requirements for an installation are not met, and creates shell scripts,
called fixup scripts, to finish incomplete system configuration steps. If OUI detects an incomplete task, then it generates fixup scripts (runfixup.sh). You can run the fixup script after you click the Fix and Check Again Button.

19. In the installation progressing, when root.sh at node 2, can the error such as "CRS appear in node 1, did not attemp to stop cluster, re-join cluster, by pass and continue installation.
- If Xterm did not occur, then do: $ export ORACLE_TERM=dtterm
- Manually export ORACLE_BASE, ORACLE_HOME when make an installation before running runInstaller.sh
- If /tmp is too small <500MB, then make a private directory point to other directory, change owner to grid, oracle user, example:

A. Grid

# cd /portallog
# mkdir /portallog/tmp
# chown -R grid:oinstall /portallog/tmp

B. Oracle

# cd /portal
# mkdir tmp
# chown -R oracle:dba /portal/tmp 

C. Export

# export TMP=/portallog/tmp
# export TEMPDIR=/portallog/tmp
# export TMPDIR=/portallog/tmp

Hope this help.
End.
TAT




or

Fireline Fused Cristal 0,06 mm nu voor maar € 10,00

Fireline Fused Cristal Merk: Berkley Lengte: 110 meter De nummer 1 transparante superlijn ter wereld. Kenmerken van de Fireline Fused Cristal: - 3x sterker dan een mono lijn - Ultiem gevoelig. - Schuurbestendig - Extreem sterk - Ook geschikt voor op de molen De lijnen zijn in drie verschillende diameters te verkrijgen. Iedere diameter heeft weer een andere draagkracht.




or

Forellen Station Deluxe normaal €399,00 nu voor maar €320,00

Forellen Station deluxe Merk: TFT TFT heeft wederom een kwaliteitsproduct voor de forelvisser op de markt gebracht. De TFT forellen Station Deluxe. Een tas met vele mogelijkheden. Het station bestaat uit de volgende onderdelen: - 1 draagtas , hierin passen alle onderdelen - 1x een deegtablet hierin kunt u eenvoudig uw deegpotjes plaatsen, zo heeft ze bij de hand - 1 x een assdoosjes tablet ( op de afbeelding zijn ze verschillende kleuren, maar in het echt hebben ze allemaal een rode deksel) - 1 x een tackle tas :deze kleinere tas kunt u aan de voorzijde van het station plaatsen. - 1 x het staanderwerk, waarom heen ook een tas zit. In deze grote tas zitten een tweedeling. Genoeg ruimte dus om al uw hengelsportartikelen in op te bergen, en handig mee te nemen. Wilt u een filmpje over het forellen station bekijken? ( helaas alleen nog in het duits te vinden) https://www.youtube.com/watch?v=m8JUzhcUtVc




or

Bosbaan Hengelsteun van € 4,95 nu voor maar € 3,75

Bosbaan Hengelsteun Merk: Livebait Inhoud: 2 stuks Deze bosbaan hengelsteunen van Livebait zijn alom bekend. Ze zijn erg gemakkelijk in gebruik. De bosbaan hengelsteunen zijn voorzien van scherpe punten aan de onderkant, hierdoor kunt u ze gemakkelijk in de grond plaatsen. De bosbaan hengelsteunen hebben een lengte van 50 centimeter.




or

Strike Wire Fluorocarbon

Strike Wire Fluorocarbon is echte Japanse fluorocarbon voor het maken van onderlijnen. Zeer soepel, super sterk bestand tegen schuren.




or

Salmo Rattlin Hornet 4,5F

De Rattlin Hornet heeft net dat extraatje voor als de gewone Hornet niet overtuigend genoeg is, een ratel! De Hornet heeft zijn reputatie als hard werkende crankbait niet voor niets verdient! Miljoene Hornets zijn in gebruik bij vissers in verschillende landen en elke dag wordt er mee gevangen! Zo vervullen ze de droom van menig visser. Vanaf de introductie is dit een van de best-sellers geweest van Salmo.




or

cormoran feeder hrengel

cormoran speciland feeder medium 13''/ 3.90cw 25-80 grincl. 3 tipsincl. tanager 2000 rd molen




or

engelse zitkoffer in combinatie met een techniworks alu feed

te koop compleete engelse zitkoffer in combinatie met een techniworks alu feederplateau.koffer is zoals u kunt zien op de fotos nog in goede staatvoorzien van twee schuiven aan de voorkanten een aan de zijkantonder het deksel is plaats voor vistuigen en in het zwarte gedeelte.de koffer is verder voorzien van verstelbare potenhengelsteun links of rechts aastafel/voerbak paraplusteun aan de achterzijdeen onderbak is dubbelwandig te gebruiken als koelbox.en in combinatie met het bovenste gedeelte van de koffer en het plateau heeft u een heerlijk zit station om te feederen maar ook om met de stok te vissen dus van alles mogelijk.twee verstelbare hengelsteunenverstelbere feeder steun en een grootte afsluitbare aasbak.interesse? doe een rieel bod en hij is voor jou.wegens omvang ophalen.




or

Come migliorare il processo di acquisto

Sono fortunato. Negli ultimi anni ho avuto la possibilità di partecipare alla progettazione e realizzazione di alcuni tra gli e-commerce più importanti nati in Italia. È bello, interessante e istruttivo lavorare per un e-commerce, perché il sito non è fine … Continua a leggere

L'articolo Come migliorare il processo di acquisto proviene da Fucinaweb.




or

Ancora su bozzetti di carta e prototipi

Dopo “Progettare con la carta” in cui presento il metodo che uso per creare i prototipi con l’aiuto di bozzetti di carta, sono stati pubblicati in rete alcuni articoli che approfondiscono l’argomento. The Messy Art Of UX Sketching di Smashing Magazine … Continua a leggere

L'articolo Ancora su bozzetti di carta e prototipi proviene da Fucinaweb.




or

10 accorgimenti per migliorare il checkout e-commerce

68%. E’ la percentuale di visitatori che aggiungono almeno un prodotto al carrello senza concludere l’acquisto. Un numero alto, perché il carrello è usato come contenitore temporaneo, ma soprattutto perché il percorso di acquisto è spesso molto lungo e complicato. A Meet Magento presenterò alcuni suggerimenti per … Continua a leggere

L'articolo 10 accorgimenti per migliorare il checkout e-commerce proviene da Fucinaweb.




or

Golf Rankings for Puerto Rico Open

Our expert picks the top 30 PGA tour golfers for this week's tournament: 1. Scott Brown, 2. Jerry Kelly, 3. Jonathan Byrd, 4. Patrick Rodgers, 5. William McGirt, 6. Freddie Jacobson, 7. Graham Delaet, ...




or

NFL Adopts 7 Rule Changes for 2016

The NFL adopted seven of the rules changes proposed at the NFL owners meetings, with more possibly coming on Wednesday.




or

Minor League Baseball gets the fantasy treatment with launch of Futures Fantasy Baseball

Futures Fantasy Baseball ? a new fantasy baseball site for the minor leagues ? aims to grow the business of Minor League Baseball while capitalizing on the interest of fans in baseball?s next generation of superstars.




or

Dallas Cowboys Sign RB Alfred Morris

Fantasy Football Expert Mark Morales-Smith discusses the Fantasy impact of Alfred Morris moving from the Washington Redskins to the Dallas Cowboys!




or

NASCAR Picks for STP 500

Top 30 NASCAR Sprint Cup driver rankings for STP 500: 1. Denny Hamlin, 2. Jimmie Johnson, 3. Dale Earnhardt, Jr., 4. Joey Logano, 5. Kevin Harvick, 6. Kyle Busch, 7. Matt Kenseth, ...




or

Need to Know Players: Toronto Blue Jays

Dr. Roto discusses two players from the Toronto Blue Jays Fantasy Baseball owners should keep an eye on in 2016!




or

Golf Rankings for Houston Open

Our expert picks the top 30 PGA tour golfers for this week's tournament: 1. Henrik Stenson, 2. Phil Mickelson, 3. Patrick Reed, 4. Brooks Koepka, 5. Sergio Garcia, 6. Rickie Fowler, 7. Jordan Spieth, ...




or

Week 1: AL East Closer Report (Premium)

Senior Fantasy Baseball Expert Shawn Childs examines the backend of each team in the American League East.




or

Week 1: AL Central Closer Report (Premium)

Senior Fantasy Baseball Expert Shawn Childs examines the backend of each team in the American League Central.




or

Testing the Third-Year WR Breakout Theory

Fantasy Football Expert Mark Morales-Smith dives deeper into the third-year wide receiver theory.




or

Week 1: AL West Closer Report (Premium)

Senior Fantasy Baseball Expert Shawn Childs examines the backend of each team in the American League West's bullpen as we get ready for opening day!




or

Is Blogging Just About Getting More Traffic?

I may regret this. My mom always told me to stay out of other people's fights. But I was always too headstrong for my own good so here goes.

Over at Copyblogger Brian tells us:

" Steve used a clever little PR gimmick (that would never work for an unknown blogger today, mind you) to literally propel himself to the enviable point he is now. Nothing wrong with that, unless of course, two years later, you look down from your A-List perch and proclaim that traffic is now bad."
Frankly I'm a little weary of the term "A-List". But I have to agree with that thought. It's easy to mock the tail that wags the blog when you're at the top.

A commentor said:
"Anyone who says traffic doesn't matter, relative to having a web presence, is either disingenuous or has a ton of traffic already. In Steve's case, likely both."
P.S.: It's called HYPOCRISY! Steve Rubel has redefined the art of tagging wrapping all his posts around ever popular keyword themes. "Blog", "Technorati, "Google", "Top Ten", "Best", "Success", "Killer", "Sex", "Porn"... whatever works. Slog that Technorati gravy train Steve and keep those numbers up.

Another commentor also mentioned performancing.com -- that self-absorbed group of omni poobahs forever beating their own drum. Until a couple of months ago nobody had ever heard of them. After spending a little advertising money at Technorati and a few smug posts later they have somehow transformed themselves into self-proclaimed blog experts.

Which only proves that if you toot your own horn loud and long enough you will begin to believe your own press. It also demonstrates how many gullible bloggers there are eager to jump on the blogging gold train.

Taking notes?




or

Sorry you haven't heard from me lately

I've been busy tweaking and doing maintenance on my blog templates. Crikey, does it ever end? I will be back to business shortly. Promise.

...tag: daily fisk




or

Lil' Kim Comes up Short

And the rocket's red glare, the bombs bursting in air...

I've heard of a war of rhetoric, but this is ridiculous. It seems that Lil' Kim's talk is bigger than his appendage. Apparently he misfired his rocket, (the Taepo long-dong-2 series) and spit blanks, er came up short... I mean, it wasn't the long-range missile that was expected. Brings a whole new meaning to the term pencil dick don't you think.



Coincidentally, the good ole US of A fired off it's national phallic symbol just in time for the fireworks and singing of the national anthem.

You just gotta love the irony. Happy 4th of July everyone!
Related links: news, world news, us-news, in the news, news headlines, headline news, news and politics, north korea, humor, satire




or

New Orleans Begins Counting Its Dead

Too Little, Too Late?

President Bush declares a state of emergency as New Orleans begins gathering up and counting the dead across a ghastly landscape awash in perhaps thousands of corpses.

As the floodwaters recede and the search for the dead begins, there are grim signs that authorities predict a "staggering death toll" from Hurricane Katrina.

"It is going to be about as ugly of a scene as I think you can imagine," the nation's homeland security chief warned. As authorities struggled to keep order, police shot and killed at least five people Sunday after gunmen opened fire on a group of contractors traveling across a bridge on their way to make repairs."

In New Orleans' Garden District, a woman's body lay at the corner of Jackson Avenue and Magazine Street, a business area with antique shops on the edge of blighted housing. The body had been there since at least Wednesday. As days passed, people covered the corpse with blankets or plastic.

By Sunday, a short wall of bricks had been built around the body, holding down a plastic tarpaulin. On it, someone had spray-painted a cross and the words, "Here lies Vera. God help us."




or

U.S. Can't Ban Media Coverage of New Orleans

CNN Wins the Right to Cover the Search for Bodies of Katrina Victims:

On the one hand we're fed up with government trying to sanitise the carnage. They do this not for our benefit but to minimize public outrage.

In explaining the ban, Ebbert said (the city's homeland security director), "we don't think that's proper" to let members of the media view the bodies.

But on the other hand the media want to cover it because they know that drama and horror sells.

"In an e-mail to CNN staff, CNN News Group President Jim Walton said the network filed the the lawsuit to "prohibit any agency from restricting its ability to fully and fairly cover" the hurricane victim recovery process."

And the political left want to exploit it for the "Perfect Political Storm".

Unfortunately that is the world that we live in. The public are but pawns in this political game. Either way the dead and the suffering lose.




or

Kudos to Bush (sort of)

Damage Control, Dubya Style:

But will it be enough to restore his credibility? President Bush accepted full responsibility for the federal government's (mis)handling of the Katrina disaster. (It's called 'damage control'). On the other hand he only acknowledged the obvious and his confession could have gone further had he volunteered it sooner.

"Katrina exposed serious problems in our response capability at all levels of government and to the extent the federal government didn't fully do its job right, I take responsibility," Bush said during a joint news conference with Iraqi President Jalal Talabani. (Watch Bush's comments).

He repeated his desire to find out exactly what went wrong on every level of government.

"It's in our national interest that we find out exactly what went on ... so we can better respond," Bush said."

A bipartisan joint congressional committee is to review the response at all levels of government to the hurricane and report its findings to Congress no later than February 15.

ROVE TO THE RESCUE:

"Bush already has dispatched his top strategist, Deputy Chief of Staff Karl Rove, and other aides to assemble ideas from agencies, conservative think tanks, GOP lawmakers and state officials to guide the rebuilding of New Orleans and relocation of flood victims. The idea, aides said, is twofold: provide a quick federal response that comports with Bush's governing philosophy, and prevent Katrina from swamping his second-term ambitions on Social Security, taxes and Middle East democracy-building."

TOMORROW, the president is to outline his vision more comprehensively than he has to date. A top aide said he will stress that New Orleans officials will dictate how the city will be rebuilt, but will also make plain the reconstruction should reflect his vision of government -- including reducing regulatory obstacles and emphasizing entrepreneurship over big government. He will also discuss plans to provide health care, education, jobs and housing assistance to flood victims.

ANOTHER CASE OF TOO LITTLE TOO LATE?




or

North Korea abandons Nukes, plays Chess

Good News or just an Elaborate Ruse?

This was an impressive photo-op but there is no reason to celebrate (yet). What this really demonstrates is how important it is for the U.S. to settle this region of the globe, even if it is only just a stop-gap measure. The U.S. has more than enough on its plate with Iraq and Katrina to contend with.

Apparently North Korea has agreed to give up nuclear weapons activities and rejoin the nuclear non-proliferation treaty. Of course, that comes with a proviso that the US promises it will not attack and will provide aid and electricity.

Interestingly, it was China that brokered the compromise:

"The agreement was reached on the basis of a compromise proposal put forward by China in an effort to bridge differences between the United States and Pyongyang over a North Korean demand for a light-water nuclear reactor to produce electricity. The compromise suggested that North Korea be accorded the right in principle to peaceful nuclear energy, but only after dismantling its nuclear weapons program and rejoining the U.N. nuclear inspection regime and the nuclear Non-Proliferation Treaty."

GIVEN THAT knowledge gained from the "peaceful" use of nuclear technology can easily be transferred to building bombs, it will be incumbent on the U.S. to keep a close eye on Kim whose instability is world renowned.

Sure, U.N. inspectors will eventually be allowed in, but let's hope they will have more success than they did in Iraq. Which demonstrates to this writer how important it is for the U.S. to settle (at least temporarily) this region of the globe. The U.S. has more than enough on its plate with Iraq and Katrina to contend with.

It was a veritable PR coup de gras for the Chinese. So does this imply that China is not really the monstrous behemoth that we have all been told? Is it an evil regime that is finally beginning to come to its senses? Perhaps it is neither and Political FootBall remains suspicious that China was even involved in the deal.

Could it really be part of an elaborate ruse by communist Asia to buy time for N. Korea to get the aid it desperately needs, and while China seeks to become the next economic superpower? All the while lulling the west into a false sense of security in the deadly game of nuclear checkmate. And what about their military alliance? In the grand scheme of things doesn't that make this 'historical' photo-op moot? Many questions that only time will answer.

IT SEEMS likely that economic pressure, $$$ capitalism and carrying the big stick (moving stealth bombers to South Korea) have all contributed to bringing another regime to its knees. That would also be in keeping with the Pentagon's announcement of a new strategy that includes a preemptive strike using nuclear weapons.

No matter, so long as an unstable pompass like Kim remains in control the future of the world will continue to hang in the balance.

BUT THE QUESTION BEGS to be asked if the same tactics would also work for its ally China. Probably not, for unlike it's Soviet counterpart China seems to have found a working formula that successfully blends capitalism and communism, making it an emerging super power. So long as we continue to demand cheap shirts from Walmart that appears to be an almost certainty.

AND WHAT ABOUT Iran and other muslim nations where religious fanaticism is the rule? So long as there remains opposing idealogues and economic disparity in this world the prospect for peace in the long term remains unlikely.

The bottom line is Political FootBall is of the opinion that this latest news does little in the long term for world stability. It only buys time for both sides before making their next power-play.

So we won't be breaking out the champagne, at least for the near future anyhow.




or

Rita Drowns out Anti-War Protestors

According to the Washington Post the numbers exceeded what was initially hoped for in what is being billed as the largest anti-war demonstration since the start of the Iraq campaign. There's lots of commentary to be found, but the most interesting was by Alan Bock:

I still don't know if the demonstrations will have any effect beyond getting Cindy Sheehan arrested...

The newspapers had wire-service stories, and both the Washington Post and the Washington Times covered what was essentially a local story for them. But as far as the electronic media were concerned, the anti-war protests in Washington, D.C., over the weekend might as well have not occurred at all. Once the cable news folks focus on something they seem incapable of noticing anything else that's happening in the world. To be sure, Rita was a big story, but it wasn't the only thing happening over the weekend.

Interestingly, some of the more extensive coverage on Web pages today is from National Review Online, where Byron York and James Robbins work hard to paint the protest as too radical to appeal to mainstream Americans and too miniscule to have any impact on policy.

I don't know enough to have a solid opinion yet, but I'll keep searching for more links. Meantime, it does seem to have mobilized around 100,000 people, about what the organizers had hoped for. The D.C. police chief said it might even have been 150,000. The bits and pieces I caught on C-SPAN on Saturday night were rather disappointing to me - mostly left-wing enthusiasts talking about all kinds of causes and grievances rather than focusing on the war.

Despite all this, I suspect that while those who want to dismiss the protests as strictly the work of a radical fringe are more or less correct at a certain level, there's a certain - well, not quite desperation but almost - in the dismissive tone. The protests might not be the kind of thing most Americans warm up to, but neither is the war popular anymore. Mainstream polls show about 60 percent of Americans think it was a mistake. Sooner or later that kind of opinion surge has to have an effect on policy in a democracy - doesn't it?




or

Tom Delay Indictment a Foregone Conclusion?

According to most of the comments that I've read (or at least those from the left) it seems that recent charges against Tom Delay are a foregone conclusion. So much for guilt until proven innocence. But that has never stopped the jury of public opinion before, nor will it now. It keeps the bloggers busy and sells newspapers. Here are just some of the comments:

"Now, that's what I call "Breaking News"! CNN.com - Texas grand jury indicts Tom DeLay - Sep... It may be only a small first step, but it's a start. Here's the follow-up: Delay will step aside as Majority Leader. Temporarily. Let's hope it is more than temporary."

"Aww what a shame, poor Tom DeLay has been indicted. Pardon me a moment whilst I shed a tear and play a sonata on the world's smallest violin."

"Tom DeLay, House Majority Leader and probably the most powerful Republican in the country, has just been indicted on conspiracy charges. The dominos are beginning to fall."

Or could it be really be just a frivolous witch hunt as Delay has pleaded? Knowing how dirty the game of politics is played it would not surprise me.

"Kevin Madden, DeLay's spokesman, dismissed the charge as politically motivated. This indictment is nothing more than prosecutorial retribution by a partisan Democrat", said Madden citing prosecutor Ronnie Earle, a Democrat. Madden later added: "They could not get Tom DeLay at the polls. They could not get Mr. DeLay on the House floor. Now they're trying to get him into the courtroom. This is not going to detract from the Republican agenda."

We don't have enough information yet and only time will only tell. But when it comes to politics I live by one golden rule. No matter which side of the fence you may find yourself, we should remember that ALL politicians are self-serving. And most (if not ALL) politicians are first and foremost humans and therefore corruptible.

And speaking of that, I am reminded of the maxim "Power corrupts, and absolute power corrupts absolutely". So no matter how all this turns out nothing will surprise me.

But the law also provides that everyone is entitled to be presumed innocent until otherwise found guilty. We should all remember that as we follow this story.

One more thing, even if Delay is found guilty does that automatically indict all Republicans? Hardly, otherwise Teddy Kennedy and the dems would have been banned long ago.

It will be interesting to watch how this unfolds.




or

Media blamed for New Orleans debacle

Hollywood meets the news; Drama + Hype = Ratings

Dan Rather was taken to task by Mark Steyn of the Chicago Sun-Times over his comments on the 'Larry King Live'' show about the Katrina news coverage. Personally I like Dan, but ever since Rathergate he does seem to be in a habit of putting his foot in it:

"They took us there to the hurricane," he told Larry. "They put the facts in front of us and, very important, they sucked up their guts and talked truth to power."
According to Steyn, the media got it all wrong:
"Er, no. The facts they put in front of us were wrong, and they didn't talk truth to power. They talked to goofs in power, like New Orleans' Mayor Nagin and Police Chief Compass, and uncritically fell for every nutso yarn they were peddled. The media swallowed more bilge than if they'd been lying down with their mouths open as the levee collapsed. Ten thousand dead! Widespread rape and murder! A 7-year-old gang-raped and then throat-slashed! It was great stuff -- and none of it happened. No gang-raped 7-year-olds. None."
Dan Rather:
"That frickin' Superdome," he raged. "Five days watching dead bodies, watching hooligans killing people, raping people."
Stein:
"But nobody got killed by a hooligan in the Superdome. The problem wasn't rape and murder, but the rather more prosaic lack of bathroom facilities. As Ben Stein put it, it was the media that rioted. They grabbed every lurid rumor and took it for a wild joyride across prime time. There was a real story in there -- big hurricane, people dead -- but it wasn't enough, and certainly not for damaging President Bush."
Stein:
"How appropriate that it should be Dan Rather, always late to yesterday's conventional wisdom, to bless the media's fraudulent coverage of Katrina."
He makes a good point doesn't he? CNN is the worst. It's a good thing we have bloggers to keep them in line.




or

Sorry for the delay

Political FootBall continues to have problems. What started out as a simple maintenance and upgrade has ended up to be a major headache. Aren't computers wonderful?

We expect to be back to business as usual shortly. We appreciate our loyal readers and sincerely apologize for the inconvenience.




or

'Pajamas Media' Network for Elitist Bloggers only:

The innocence of its name belies the true nature of this new virtual organism.

Meaning? PJs is a powerplay by a handful of elitist bloggers to carve out a new media empire for their personal (and financial) gratification.

"Pajamas Media, a new blogging venture designed to bring together top online writers, journalists and commentators under a single umbrella, today unveiled its editorial board as it prepares for its formal debut next month.

The announcement comes as Pajamas Media further realizes its vision of coalescing the internet's brightest minds and most compelling content into a single source that will, in turn, complement and re-define journalism in the 21st century."

So there you have it folks. The brightest stars in the virtual firmament who are going to "re-define journalism in the 21st century".

Can you believe the hype? The kahunas! A bunch of pompous self-serving goofballs if there ever was.

And speaking of balls, here I thought re-defining journalism is what the blogosphere is all about, even without the help of PJs et al. Silly me.

They are touting Glenn Reynolds as one of their greatest acquisitions. I must confess that I am all the more enlightened from his inspired and in depth analysis. Spewing his best Spock impersonations such as "indeed" and "indeed", or one of my personal favorites... "indeed".

Do you think perhaps they might (hopefully) consider (God willing) allowing us insignificant pee-ons add our (albeit smallish) comments to their omnipoobah flatulation? Well try this one on for size:

"Golly gee Instapundit, you sure are great. I was really hoping that if you might possibly consider linking to me some time. Pretty please, and I promise to forever be your grovelling fan... pant, pant, drool."

Or will it be the same old droning monologue we're all accustomed to - the sermon from the mount a la Instapun style.

Hell, if we wanted sermons we can always watch Anderson Cooper 360 report to the CNN situation room. So much for a blogging community folks.

Guys, you've got it all mixed up. If you want a one-sided conversation find a soap box and run for public office. Or better still make an application to CNN.

If you want to write a book then write the stinkin' book. If you want to build an exclusive empire so you can call the shots, give Bill Gates a call. But if you want to blog, join the community.

BUT damn it choose, because they're different. Got it? (Are you listening Glenn)?

Can somebody please explain to me how all this nonsense benefits the blogosphere? Oh yeah right, I forgot - it doesn't.

It sounds more like Al Gore's reinvention of the internet than anything else. So let's be clear boys and girls - it is the technology and all of our collective efforts that has re-defined journalism. Not just a few arrogant twits.

Not since the invention of the printing press has so much been given to the common folk. It is its inclusive, collaborative nature and community spirit that gives blogging its influential power.

HELLO! Are you listening? The blogosphere is not the exclusive playground of an old-boys network trying to elevate itself above the rest of us mere mortals.

That is bass-ackwards thinking, destructive and the last thing we need. Another media empire of self-important opportunists believing in their own press, shovelling verbal poop down our collective throats.

Think about it. Did we take down Dan Rather just to create a job opening for Reynolds? I don't think so. Personally I'd rather have Dan back (no pun intended). And for that matter I hear he's looking for work. Any takers?

It's the same old story. If it becomes popular the politicians have to control it, and the capitalists want to exploit it.

Not that I object to making money from blogging. God knows I could use the extra coin. But it is their elitist business model and its ominous implications that I find offensive.

It's called good old fashioned exploitation. The great American way. Look out Weblogs here we come.

Mark my words. The blogosphere is on the fast track to being hijacked by the control freaks and big business interests.

More restrictive laws and government intervention. Acquisitions and mergers, IPO offerings, get-rich-quick dot-com scam artists, media moguls, ABC, MSNBC, FOX, Pajamas party, whatever.

Sounding all too familiar? PJs is a cash grab. Plain and simple. And for whose benefit? The way it reads right now PJs will benefit only a few elitists, that's who.

Perhaps it got lost in the translation, but until they can find a more inclusive model the blogosphere needs this shite like a hole in the head.

```
UPDATE: An Open Letter to Roger Simon

Source: daily FISK!




or

Happy Birthday Video Cards With Music For PCs & Mobiles

Happy birthday song cards for computers, free musical happy birthday video greeting cards for mobile smartphones, iPhone, Android, & Windows smartphones. Romantic love birthday cards for lovers.




or

International Online Dating Service For Men Interested In Dating Foreign Women

These testimonials shouldn't only be considered from the male perspective, they also serve in attracting women, as women feel more comfortable using Date International because of their proven track record of success.



  • Online Dating
  • International Dating Service
  • International Dating Services

or

The Best International Dating Website for Mature Men Interested in Dating Foreign Women

Safety is a paramount concern in online dating. Date International found at DateInt.com prioritizes the security of its members with stringent safety protocols and privacy measures. This ensures that your experience is not only enjoyable but also secure.




or

1 Million Human Visitors To Your “Make Money Online” Website

1 Million Visits To Your Website In The Make Money Online Niche ONLY





or

2024 Porsche 911 S/T

60 years on, the Porsche 911 continues to be one of the best sports cars on the market. Porsche is keeping the 60th-anniversary celebration rolling with the 911 S/T, a stripped-down 911 aimed squarely at the purist 911 fan. The naturally-aspirated 4.0-liter, 517-horsepower flat-six is mated to a six-speed manual transmission with a lightweight flywheel...




or

Verfassungsschutz: Keine AfD-Hochstufung vor Neuwahl?

Die Neuwahl hat auch Folgen für den Bundesverfassungsschutz: Nach Informationen des ARD-Hauptstadtstudios wird es sehr wahrscheinlich keine Entscheidung über eine neue Einstufung der AfD vor der Wahl geben.




or

Ford schickt Kölner Beschäftigte in Kurzarbeit

Ford hat für sein Kölner Werk Kurzarbeit angemeldet. Hintergrund sei die schwache Nachfrage nach Elektroautos. Der Autobauer will deshalb im kommenden Jahr weniger Fahrzeuge in Köln bauen.




or

Nach US-Wahl: Wie Trump den Einzug ins Weiße Haus vorbereitet

Heute empfängt US-Präsident Biden seinen Nachfolger Trump im Weißen Haus, um die Übergabe der Regierungsgeschäfte zu besprechen. Schon jetzt arbeitet Trump daran, schnellstmöglich völlig loyale Mitarbeiter zu installieren. Von C. Sarre.




or

Versorgung im Gazastreifen: Wie wirksam war das US-Ultimatum?

Die US-Regierung hatte Israel eine Frist von 30 Tagen gesetzt, um die humanitäre Lage im Gazastreifen zu verbessern. Israel habe seitdem einige Schritte unternommen - weitere Maßnahmen seien jedoch notwendig. Von Clemens Verenkotte.




or

TV-Moderator Hegseth soll Trumps Verteidigungsminister werden

Tag für Tag werden neue Namen der künftigen Trump-Regierung bekannt: Für Aufsehen sorgt jetzt, dass der rechte TV-Moderator Pete Hegseth das Verteidigungsministerium übernehmen soll. Auch Tech-Milliardär Musk bekommt einen Posten.




or

Wirtschaftsweisen legen ihr Jahresgutachten vor

Kurz nach dem Scheitern der Ampel und mitten in der Konjunkturflaute stellen die Wirtschaftsweisen ihr Jahresgutachten vor. Was hilft der Wirtschaft in der aktuellen Situation? Von Hans-Joachim Vieweger.




or

Porto für Briefe und Postkarten steigt auf 95 Cent

Zum Jahreswechsel wird es teurer, einen Brief oder eine Postkarte zu verschicken. Doch auch bei anderen Sendungen soll das Porto steigen. Das Plus beim Versand fällt für die Post aber deutlich zu gering aus.




or

Liveblog zu Neuwahlen: ++ Merz fordert grundlegende Politikwende ++

CDU-Chef Merz hat die Regierungserklärung des Bundeskanzlers scharf kritisiert und sich für ein Umsteuern in der deutschen Politik ausgesprochen. Scholz bestätigte den Zeitplan für die Vertrauensfrage. Die Entwicklungen im Liveblog.




or

Regierungserklärung: Scholz will noch wichtige Gesetze vor Neuwahl

Kanzler Scholz hat seine Regierungserklärung abgegeben. Er warb dafür, bis zur Neuwahl am 23. Februar wichtige Gesetzesvorhaben zu verabschieden. Scholz betonte außerdem, dass die Ukraine weiterhin Unterstützung benötige - aber nicht um jeden Preis.