Viewing 15 posts - 841 through 855 (of 1,186 total)
An easier solution would be to create a STAGING type table import your EXCEL data into that "real" table and then grab the data you want out of it.
OR
You could...
September 2, 2004 at 4:57 pm
I would get with the people that manage that server and ensure that the ports, permissions, etc.. are set-up to allow the xp_loginconfig to run. I would also make sure...
September 2, 2004 at 5:51 am
Have you tried the following:
SELECT dbo.udf_FunctionNameHere ?? Also some require () at the end..
September 2, 2004 at 5:36 am
If you are trying to directly reference the #table it will not work. You will have to do the code inside a stored procedure. The problem is the system looks...
September 2, 2004 at 5:31 am
Assuming that the roles are supposed to be 2, 10, 13, 16... Have you checked to ensure that the roles you are expecting are not being weeded out by the...
August 31, 2004 at 6:22 am
Change the compatibility level of the DB to 7.0 (SQL 7). You should then be able to generate the code scripts required to rebuild the database on your other server...
August 30, 2004 at 7:31 am
IF you are using standard field storage for UTC then the below should work. Please note that this code will return Greenwich Mean time (Zulu time for you pilots...)
-- 1994-11-05T08:15:30-05:00
--...
August 27, 2004 at 8:46 am
rockmoose,
Your guess is as good as mine... I do all my code in QA, other places than paste...
August 26, 2004 at 5:14 pm
1st thing I would try is close out ALL Access databases, applications etc.. and re-open.
You may have to attempt a re-start as well. If you are getting this on Zoom...
August 26, 2004 at 2:43 pm
This code might help you get close to what you want. All you will need to do is INSERT new line after every account is done
DECLARE @iCnt INTEGER
DECLARE @Loop INTEGER
DECLARE...
August 26, 2004 at 11:39 am
John,
Have you tried drilling down through EM to "see" what tables exist??
You should be able to see Sheet1$, Test$ etc.
and refer to it as test...Sheet1$
August 26, 2004 at 9:34 am
Please see message
http://www.sqlservercentral.com/forums/post.aspx?forumid=23&messageid=133959
Same thread
August 26, 2004 at 5:33 am
How bout
DECLARE @employee_id
SET @employee_id = (SELECT employee_id FROM ##employee WHERE code = 'AA')
SELECT * FROM table1 WHERE fieldx = @employee_id
August 26, 2004 at 5:32 am
Ok, this is what I would try,
August 25, 2004 at 5:33 pm
Steve,
I have full faith in you and this site. I have been around for a little while with you. I have e-mails from Oct 2002 which is unfortunate because...
August 25, 2004 at 5:27 pm
Viewing 15 posts - 841 through 855 (of 1,186 total)