If you did not use the log on clause to create database, you can move your transaction log to another database device.
sp_logdevice marks the portions of an existing database that exist on a specified device as reserved for the transaction log; it does not move existing data. If your database already has data on this device, SAP ASE does not interpret this data as not being on its proper segment. However, because dbcc reports this as an error, no existing part of the log moves to the specified device; the current log data remains where it is until the log has extended onto the new device and you use dump transaction to clear that part of the log. Also, sp_logdevice does not allocate new space to the database or initialize devices. Instead, it reserves those portions of the specified device for the log that already belong to the database you specify.
The syntax for sp_logdevice is:
sp_logdevice database_name, devname
The database device you name must be initialized with disk init and must be allocated to the database with create or alter database.