Viewing 15 posts - 1,726 through 1,740 (of 2,268 total)
try,
SELECT Company.[Company Name], DailyStockPrice.Date
FROM Company LEFT OUTER JOIN DailyStockPrice ON Company.[Ticker] = DailyStockPrice.[Ticker]
WHERE DailyStockPrice.Date IS NULL
GROUP BY Company.[Company Name], DailyStockPrice.Date;
December 12, 2008 at 3:40 am
There are thousands of websites that provide .net tutorials
check out MSDN for some walk-throughs.
http://msdn.microsoft.com/en-gb/default.aspx
it really depends on how much experience you have..
December 11, 2008 at 11:11 am
Don't use RDO, i am sure this is no longer supported, use ADO.NET
as for the pages, i would use ASP (either c# or vb.net) and run these from IIS.
you...
December 11, 2008 at 11:02 am
to find the name that has the highest average moneyx use;
SELECT TOP 1 namex,AVG(moneyx) AS MoneyXAvg
FROM [Temp]
GROUP BY namex
ORDER BY MoneyXAvg DESC
December 11, 2008 at 7:22 am
CrazyMan (12/11/2008)
One way u can use sysindexes table to get the row count of all the table on that databases 🙂
This not always accurate, all this has been discussed in...
December 11, 2008 at 3:39 am
create table #rowcount (tablename varchar(128), rowcnt int)
exec sp_MSforeachtable
'insert into #rowcount select ''?'', count(*) from ?'
select * from #rowcount
order by tablename
drop table #rowcount
December 11, 2008 at 3:29 am
This is kind of a hard question to answer without a bit more detail,
What does your table look like?
how are you accessing the database?
What are the business rules surrounding transactions...
December 10, 2008 at 10:34 am
Rishi (12/10/2008)
I am aware that it can be done using trigger, but dont know how to write a trigger as I have never done it before and I am weak...
December 10, 2008 at 10:25 am
You won't need to change the collation at all.
The reason it is not storing unicode is because you are not passing the string as Unicode.
add the leading unicode N before...
December 10, 2008 at 10:07 am
Rishi (12/10/2008)
We have vendor softwares to access the tables. I want to store the insert, update and delete events in a different table, so that they can be reviewed later.
then...
December 10, 2008 at 10:01 am
The connection has been denied The reasons are either;
the databse does not exist ( check that it does and that you have the name correct)
the user does not...
December 10, 2008 at 9:56 am
You can modify the stored procedures that you use to access the data to use an audit table.
December 10, 2008 at 9:51 am
Yes you can;
you can setup an audit table and use triggers to populate this table when changes are made.
Or if you are using stored procs to access your data, you...
December 10, 2008 at 9:34 am
gm.mittal (12/10/2008)
December 10, 2008 at 9:20 am
SQL server should really be installed on a Server and all the client machines should then access this server. Setting up local copies of SQL server and then using...
December 10, 2008 at 8:01 am
Viewing 15 posts - 1,726 through 1,740 (of 2,268 total)