Viewing 7 posts - 1 through 7 (of 7 total)
I am perfectly at ease with sqlstudiomanagementexpress or sqlserver.
What i meant was my clients are not too familiar with these and i need a solution for them.
January 7, 2011 at 3:30 am
OK can you tell me how exactly to do that.
I am always open to ideas and appreciate every thing that would make doing anything in a better and optimized way.
January 7, 2011 at 3:06 am
Yes i did finally achieve this with these command in a bat file.
cd D:\sqlbackup
sc stop mssql$sqlexpress
copy "C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data\hospital_log.ldf" D:\sqlbackup\ /Y
copy "C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data\Hospital.mdf" D:\sqlbackup\ /Y
sc...
January 7, 2011 at 2:55 am
superb
This is exactly what i wanted and it serves my purpose quite well.
Thanks RP_DBA.
I really hope you would help me out with this query.
Table trans has the following structure
...
January 4, 2011 at 9:21 pm
Sorry for the haste.
The above query is working for my purpose.
Next what i am trying to do is to get a list of all acctid , and their balances using...
January 4, 2011 at 7:46 am
After posting i did tried and write the query as follows
SELECT c.invdate,a.acctname,COALESCE(c.invamt, 0) AS Debit,0 AS credit
FROM invoices c
INNER JOIN accounts a ON a.acctid = c.acctid
WHERE a.acctid = 3
UNION...
January 4, 2011 at 7:43 am
Tables are
1.Med Fields are MedicineCode primary varchar(10)
MedicineName ...
July 13, 2010 at 7:46 am
Viewing 7 posts - 1 through 7 (of 7 total)