Viewing 15 posts - 16 through 30 (of 30 total)
Oops, sorry - helps if I read the whole post.
I forgive thee....:D
Works like a charm, thanks very much!
Raymond
September 10, 2008 at 5:05 am
Does the service account that SQL Server runs under have permissions to the networked drive?
Yes it has... as I started with, the SP that imports data from that file...
September 10, 2008 at 4:13 am
Thanks to all for the overwhelming response! What a great site and forum this is.
As for using the script wizard: it doesn't script master system sp's. I never realized this...
September 4, 2008 at 1:02 am
From: http://www.webtropy.com/articles/SQL.asp?SQL=sp_MS_marksystemobject
-- FOR INTERNAL USE ONLY ... DO NOT DOCUMENT --
-- This procedure sets a bit in sysobjects. This bit has no meaning, various
--groups (starfigther, davinci, replication) use it...
August 5, 2008 at 3:14 pm
Hi Jeffrey (and others)
Thanks! Exactly what I needed!
I stumbled across
http://msdn.microsoft.com/en-us/library/ms187760.aspx
that handles synonyms, it was not perfect at all, but better than nothing.... of course your solution is better.
Of...
August 5, 2008 at 3:07 pm
Hi there,
Thanks for your input.... however being a newbie about where (or where not) to place SP's I'm not quite getting it. I understand that when you put a SP...
August 5, 2008 at 1:21 pm
Super! Your example (values from just one row) was right what I needed.
Thanks!
Ray
July 28, 2008 at 7:18 am
I can't avoid using Excel sheets to import data - all my (potential) customers work this way.
Anyway I solved the problem (I added the solution to this forum but somehow...
July 26, 2008 at 3:59 am
I already tried TEXT (in Excel) as well. My big friend Excel tells me that all numbers will be treated as text, and be written as they were entered. Great,...
July 25, 2008 at 8:32 am
Hi,
I did change the column with telephone numbers to 'Special'|'Telephonenumbers' in Excel. It still gets imported as a float in SQL2005, with leading zeroes omitted and phonenumbers with a dash...
July 25, 2008 at 8:16 am
Hi there,
Solution 1) does the trick; as a stored procedure the error doesn't occur.
Thanks to everyone for the help,
Ray
July 24, 2008 at 12:53 am
Nope... it's SQL2005.... SQL Server 9.0.1399 (free Express Edition) to be exact.
The behaviour is pretty strange: the first time I run the query I get the message. After that,...
July 23, 2008 at 7:17 am
Hi,
Thanks for your reply.
When I try your solution in the Server Manager Studio I get a popup with this message:
query:
SELECT name,Count(*) OVER (Partition BY 1) AS [Count] FROM customers
message:
The...
July 23, 2008 at 2:05 am
Maybe this helps: use WITH (NOLOCK).
I had some locking issues, and after I started using this they never showed up again.
Example:
SELECT c.*,t.* FROM customers WITH (NOLOCK)
INNER JOIN tickets t WITH...
July 23, 2008 at 1:00 am
Hi again,
In addition to the discussion..... a lookup table for male/female was just an example.
A reason for me to use lookup tables is that users can fill their own...
November 25, 2007 at 2:38 am
Viewing 15 posts - 16 through 30 (of 30 total)