Viewing 15 posts - 13,381 through 13,395 (of 13,841 total)
I think that table variables might give you what you need - they can be passed as parameters to/from stored procedures - try reading the on-line help and see how...
August 10, 2005 at 4:35 am
What do you mean by 'linked table'? Are you talking about a table residing in a linked server? Or perhaps you're using Access and have linked to a SQL Server...
August 10, 2005 at 4:12 am
I still think that the error is happening before processing gets to the
Set Excel_WorkBook = Excel_Application.Workbooks.Open(sFilename)
line. To prove it one way or the other, try changing sFilename to...
August 9, 2005 at 9:04 am
Why do the CONVERT when the ROUND works without it?
August 9, 2005 at 8:01 am
No problem. The other thing you should consider doing is creating a lookup table:
DayNo (int, PK), Day (varchar(10))
and then populating it as follows:
1 Monday
2 Tuesday
........
7 Sunday
Then you can just do...
August 9, 2005 at 5:07 am
This can be achieved in many fewer lines, try this:
declare @days char(100), @classday varchar(10), @dayno int
set @days = ' Monday Tuesday Wednesday Thursday Friday Saturday Sunday'
set @classday = 'Sunday'
set @dayno...
August 9, 2005 at 4:25 am
Sorry if this is obvious, but is Excel installed on the SQL Server server itself (if you know what I mean)?
Your error is happening at the CreateObject line, before the...
August 8, 2005 at 4:35 pm
But I've just eaten 3 pieces of fried chicken & need to remove the grease somehow - not on my screen either ![]()
August 8, 2005 at 11:13 am
A fixed-length file has ALL records the same length! Yours does not, so it is not.
If you've got less than 65,535 rows you can do it in Excel in 1...
August 8, 2005 at 11:11 am
Here's another way that might be faster as it's not doing the CONVERTs
SELECT floor(0.4799608993157 * 1000) / 1000
August 8, 2005 at 11:07 am
Following your own explanation, surely the formula is
UNION ALL = UNION + duplicates
?
August 8, 2005 at 6:30 am
Somethink like this might be what you need:
ALTER DATABASE <dbname> SET SINGLE_USER WITH ROLLBACK IMMEDIATE
go
Regards
August 8, 2005 at 4:55 am
I don't think that this is enough detail.
Can you also possibly include some sample source data and what you are seeing - highlighting the spurious rows.
Regards
August 8, 2005 at 4:51 am
OK - can you provide a small sample of the data you have and what you want to be returned. No need to include all of the existing GROUP BY...
August 8, 2005 at 3:43 am
Viewing 15 posts - 13,381 through 13,395 (of 13,841 total)