Login
Home
KB
Current Articles
|
Archives
|
Search
12
Formatting a Short Date in SQL using Convert Function
posted on August 12, 2011 11:26
To format a short date like MM/DD/YY try the following: select CONVERT(VARCHAR(8), GETDATE(), 1) as MyShortDate For a complete guide to ...
[Read the rest of this article...]
SQL
,
Date
,
Convert
Posted in:
SQL Scripts
Actions:
E-mail
|
Permalink
|
Comments (0)
09
Sample Connection Strings
posted on August 09, 2011 05:12
Oracle: "Provider=MSDAORA; Data Source=ORACLE8i7;Persist Security Info=False;Integrated Security=yes" Microsoft Access: "Provider=Microsoft.Jet.OLEDB....
[Read the rest of this article...]
Connection Strings
,
SQL
,
Oracle
,
Microsoft Access
,
MySQL
,
IBM AS/400
Posted in:
Microsoft SQL Server
,
Web.Config
Actions:
E-mail
|
Permalink
|
Comments (0)
30
Changing Web Site Name in IIS 7
posted on July 30, 2011 06:41
Recently I’ve had need to change the name of a running website in IIS 7. This isn’t something you can do through the GUI, but I have disco...
[Read the rest of this article...]
IIS7
,
site identifier
Posted in:
IIS
Actions:
E-mail
|
Permalink
|
Comments (0)
30
How to Enable Telerik Rad Editor or RadEditorProvider for DotNetNuke
posted on July 30, 2011 05:29
So, if you are using DotNetNuke 5.4.1 you already have a cool alternative to default text html editor. Yes i am talking about Telerik RAD Editor. It r...
[Read the rest of this article...]
Posted in:
DNN
Actions:
E-mail
|
Permalink
|
Comments (0)
16
Non-Routable (Private) IP Addresses
posted on June 16, 2011 08:50
RFC 1597 provides for a group of Internet Networks that will never be assigned. Furthermore, these addresses will not route through the Internet. This...
[Read the rest of this article...]
Posted in:
Networking Problems
Actions:
E-mail
|
Permalink
|
Comments (0)
27
Quick Table Backup - SELECT INTO
posted on April 27, 2011 06:01
Syntax: SELECT field1 [ , field2 ] , ... [ ] INTO newtable FROM source field1 Is a parameter that specifies the list of the fields that are to be r...
[Read the rest of this article...]
Posted in:
SQL Scripts
Actions:
E-mail
|
Permalink
|
Comments (0)
17
Add Domain Account as Local User Administrator
posted on April 17, 2011 11:59
Start > run > Type "control userpasswords2" Click Add Put in the username and domain Click Next Select the "other" radio button Select "Adm...
[Read the rest of this article...]
Posted in:
Networking Problems
,
Windows XP
Actions:
E-mail
|
Permalink
|
Comments (0)
13
Windows® XP File Association Fixes
posted on April 13, 2011 05:37
Malware these days can wreak havoc on your registry file associations. Here is a great resource for Windows® XP File Association Fixes from Doug ...
[Read the rest of this article...]
Malware
,
malicious software
Posted in:
Malware
,
Windows XP
Actions:
E-mail
|
Permalink
|
Comments (0)
10
DNN User Login report SQL script for DNN Reports Module
posted on April 10, 2011 13:27
Here's a great sql script to use for the DotNetNuke Reports Module: Select -- AU.Username, U.FirstName, U.L...
[Read the rest of this article...]
Posted in:
DNN
,
Core Modules
,
Microsoft SQL Server
,
SQL Scripts
Actions:
E-mail
|
Permalink
|
Comments (0)
05
valuePair String Split
posted on April 05, 2011 14:16
string emailAddress = "email1@domain.com;address2@another.com;myaccount@somewhere.com"; string[] valuePair = emailAddress.Split(new char[] { ';' }); f...
[Read the rest of this article...]
Posted in:
C Sharp - C#
Actions:
E-mail
|
Permalink
|
Comments (0)
Page 15 of 32
First
Previous
10
11
12
13
14
[15]
16
17
18
19
Next
Last