-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Anyone have experience with Quick Sequence Diagram Editor? The combination of instant display + text source code + Java implementation is very attractive to me, but I can't quite figure out how to make the syntax do what I want, and the documentation's not very clear. Here's a contrived example:
al:Actor
bill:Actor
atm:ATM[a]
bank:Bank[a]
al:atm…
>>> More
-
as seen on SQL Authority
- Search for 'SQL Authority'
SQL Server 2011 will contain one of the very interesting feature called SEQUENCE. I have waited for this feature for really long time. I am glad it is here finally. SEQUENCE allows you to define a single point of repository where SQL Server will maintain in memory counter.
USE AdventureWorks2008R2
GO
CREATE…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I've got an exception that contain ORA-03113:
(SiPPSS.GetPrintWorkDirectDetail) - ERR:ORA-03113: end-of-file on communication channel Process ID: 7448 Session ID: 30 Serial number: 9802 ?????:12110937 ????:T855
Oracle.DataAccess.Client.OracleException ORA-03113: end-of-file on communication channel…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
I'm running a task sequence, and so that users don't accidentally interfere, I have the task sequence reboot to currently installed operating system, which as I understand, is supposed to boot to a sort of single user mode and all that shows is task sequence progress. However, this does not happen…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi everyone,
In Linux. There is an srand() function, where you supply a seed and it will guarantee the same sequence of pseudorandom numbers in subsequent calls to the random() function afterwards.
Lets say, I want to store this pseudo random sequence by remembering this seed value.
Furthermore…
>>> More