Viewing 15 posts - 1,546 through 1,560 (of 2,268 total)
sqlcentral (3/3/2009)
Mark: the row_number() over partition looks like it's working!!Please tell me that is Sql Server 2000 compliant 🙂 (my test machine is Sql 2005 Express)
Unfortunately, Row_number() won't...
March 3, 2009 at 10:19 am
sqlcentral (3/3/2009)
March 3, 2009 at 10:00 am
If you can let me know what the name of the order cokumn is then i can help you ..
If not then this can be using ROW_ORDER()
March 3, 2009 at 9:39 am
Do you have a primary key to determine the order?
March 3, 2009 at 9:34 am
For this project i would use SSIS, since you have SQL sever 2005 then you should have a copy of BIDS. This will allow you to create SSIS...
March 3, 2009 at 8:56 am
solution_developer (2/27/2009)
Cant backup the system database but all other databases are backup.
You can and should backup the system databases.
Since you have a backup of your missing datafile database, then it...
February 27, 2009 at 9:41 am
Can you post the table defs and some sample data, with a outline of what the procedure is meant to do?
February 27, 2009 at 8:06 am
No sure what is going on,
But clicking the text-column button in Excel should fix the formating on the Excel side
February 27, 2009 at 5:08 am
Looks like a good event , am thinking of heading up from London..
February 26, 2009 at 9:39 am
notes4we (2/25/2009)
steveb (2/25/2009)
use a join for this;
select Name, Message, Date, JobStatus
from tableA inner join tableB on tableA.id = tableb.id
There columns Message, Date, JobStatus are not in...
February 25, 2009 at 8:24 am
use a join for this;
select Name, Message, Date, JobStatus
from tableA inner join tableB on tableA.id = tableb.id
February 25, 2009 at 7:32 am
use Sysobjects
SELECT COUNT(*) FROM sys.sysobjects
WHERE xtype = 'p'
February 23, 2009 at 4:59 am
it's all on the Microsoft website..
http://www.microsoft.com/learning/mcp/mcitp/sql/2008/default.mspx
February 23, 2009 at 3:51 am
I would be inclined to put the clustered index on the date. But this really depends on how you will be querying the table.
Are you able to post the queries...
February 20, 2009 at 9:12 am
Viewing 15 posts - 1,546 through 1,560 (of 2,268 total)