Viewing 15 posts - 181 through 195 (of 298 total)
You are executing the sql loged in as yourself with Windows authentication?
March 15, 2006 at 9:51 am
That would be my guess - can you update the workbook using Excel in it's remote loacation?
March 15, 2006 at 9:25 am
Possibly DTS, store proc in another database?
March 15, 2006 at 8:53 am
I think you can use a named range or a sheet - im not sure but if the name ends in a $ then it's a sheet if not it...
March 15, 2006 at 8:50 am
Hi Charles - a colleague of mine used the following to access a remote Excel workbook and it works fine.
SELECT *
FROM
OPENDATASOURCE ('Microsoft.Jet.OleDB.4.0', 'Data Source= \\MANMEA0007\Transfer\UPS3\Inbox\CampaignStamping.xls;extended Properties=''Excel 8.0;IMEX=1''')...CampaignStamping$
March 15, 2006 at 8:28 am
Hi Ilan,
SQL server 2k does not have the concept of a row number (unlike Oracle or Access). Sql 2005 has a ROW_NUMBER() function that outputs the row number of the...
March 14, 2006 at 5:51 am
Perhaps your question is not understood. I think you are trying to get a row number. Is that correct? If you post some sample data I'm sure someone will help.
March 14, 2006 at 2:07 am
Are you trying to get the row number or get a count?
This will get you a count - sql(2k) does not have the concept of rownumber. sql2k5 does have a...
March 13, 2006 at 5:57 am
You will probably get a few different views on this but for my servers.
Restricted file growth - I dont want the server going down because the os has run out...
March 13, 2006 at 5:51 am
AFAIK User defined functions have to be invoked with at least a two part name dbo.fnMyFunction
March 13, 2006 at 5:05 am
To the best of my knowledge droping a table will drop all associated objects.
Is the constraint DF_PartyAltID_DateCreated definately on the table PartyAltID?
I think contraint names have to be unique within...
March 10, 2006 at 9:47 am
On sql2k I think you are limited to using an IDENTITY - on 2005 you have a ROW_NUMBER() function.
March 9, 2006 at 7:02 am
I think the minimum you need is for your operators to be a member of db_ddladmin however this role probably has too many priveliges for your liking. You could put...
March 9, 2006 at 6:37 am
A good one I picked up was not to use plurals. E.G use Week not Weeks
March 9, 2006 at 3:17 am
Viewing 15 posts - 181 through 195 (of 298 total)