Posted by: paolyn lazo on: September 23, 2008
My sister forced me to write a Turbo C program. Where i the user can do the following: a. convert a decimal to octal b. Convert an octal to decimal c. convert a decimal to hex d. convert a hex to decimal After thinking so many things. And formulating a lot of loops, trying to [...]
Posted by: paolyn lazo on: September 1, 2008
For those people who are looking for a script to be able to attach database to sql server 2005 here is a sample script: USE [master] GO CREATE DATABASE [AdventureWorksDW] ON (FILENAME = N’D:\files\databases\adventureworksBW\AdventureWorksDWData.mdf’ ), (FILENAME = N’D:\files\databases\adventureworksBW\AdventureWorksDWLog.ldf’ ) FOR ATTACH ; GO or simply: USE [master] GO CREATE DATABASE [database name] ON (FILENAME = [...]