Viewing 15 posts - 6,646 through 6,660 (of 7,168 total)
I haven't tried them myself but a 64-bit Jet<edit>-alternative</edit> driver was released: http://www.microsoft.com/downloads/details.aspx?FamilyID=C06B8369-60DD-4B64-A44B-84B371EDE16D&displaylang=en
April 15, 2011 at 10:25 pm
Fine...into rabbit hole 🙂 What is your MemToLeave setting on both instances? -g on your startup options.
April 15, 2011 at 8:32 pm
I do not think this is related to SQL Server. I suspect it is the Excel driver that is inferring your data types and causing your data to be munged.
The...
April 15, 2011 at 3:53 pm
I have looked around for a solution using TYPE but have come up empty...what is it that you know and why have you been holding out on us? 😀
I...
April 15, 2011 at 3:22 pm
You cannot use variables in your ORDER BY for your column list or the ASC/DESC expression...I tested in 2005 and 2008.
Try it this way:
DECLARE @NEW_SEARCH_STRING VARCHAR(250),
@SORTFIELD...
April 15, 2011 at 1:50 pm
Jeff Moden (4/14/2011)
April 15, 2011 at 11:24 am
PS for the record I still think this task would be better off done in PowerShell using WMI (or sc) to avoid having to turn on xp_cmdshell.
April 15, 2011 at 10:12 am
Very nice, I completely missed that you were using sc 😀
I fixed up your results query to have it give the instance names instead of just rows with MSSQLSERVER which...
April 15, 2011 at 10:06 am
Ysaias Portes-483038, your solution implies he knows an instance he can log into...all he has are host names.
I agree with your comment about xp_cmdshell though...avoid it!
April 15, 2011 at 9:36 am
I feel your pain man...there is no official "standard" for CSV files...this is the closest thing out there but it's just an RFC: http://www.rfc-editor.org/rfc/rfc4180.txt
Your file conforms to section 2, unfortunately...
April 15, 2011 at 7:30 am
Using EXECUTE AS is the approach I have used but only when using a database user with no associated server login as a proxy. This article from Erland should get...
April 15, 2011 at 6:50 am
Using only T-SQL? Unfortunately there is no BULK EXPORT command to counter the BULK INSERT command. You're options are to call bcp using xp_cmdshell (yuck!) or move the process into...
April 14, 2011 at 4:54 pm
Someone may correct me if they know of a better way in SSIS, but I think you're better off doing this work in T-SQL. Please read the article in my...
April 14, 2011 at 3:41 pm
I ran into this same issue with SSIS but after lots of complaining amongst my team, having several experienced SSIS developers "take a shot" at the problem, as well as...
April 14, 2011 at 3:35 pm
Please read this article, it explains it all: http://www.sqlservercentral.com/articles/Best+Practices/61537/%5B/url%5D
In addition to the DDL and DML please post the queries you have tried so far 🙂
April 14, 2011 at 3:27 pm
Viewing 15 posts - 6,646 through 6,660 (of 7,168 total)