Viewing 15 posts - 181 through 195 (of 4,820 total)
That's what I first thought, and then I copied the data into the second query, and also just ran some test SELECT statements and thought for sure I had covered...
May 23, 2019 at 5:53 pm
I have no way to provide sample data that will recreate the problem. In fact, that 2nd query result was nothing but the following:
SELECT 'ASSBLY', RTRIM('SN5B3 ASSBLY'), '820035021', 'A' UNION...
May 23, 2019 at 11:57 am
I think the problem here is that you haven't really defined exactly what you have for data. You are asking to break out a given column, but then don't specify...
April 23, 2019 at 8:06 pm
Finally fixed the problem. Had to Dim newrow As String() first. That solved the problem. All I've got left to do now is to fix the column alignment in the...
April 17, 2019 at 5:42 pm
So here's the latest version of the code:
Private Sub ImportButton_Click(sender As Object, e As EventArgs) Handles ImportButton.Click
Dim da As OleDbDataAdapter
Dim conn As OleDbConnection = Nothing
Dim sheet As...
April 17, 2019 at 4:21 pm
Found the OLEDB answer on StackOverflow. Turns out the Extended Properties portion of the connection string needed to be enclosed in quotes. Of course, that only got me past the...
April 17, 2019 at 2:54 pm
Thanks for that. Unfortunately, I can't use T-SQL for this, as the file needs to go on the user's machine as opposed to on the server. We need this as...
April 17, 2019 at 1:54 pm
Okay, so to mash together Sue's input and Chris's, I can just create the login for the domain group on the SSRS Server, and then apply permissions to that login...
March 28, 2019 at 12:27 pm
Given that disk space, in relative terms, is cheap, and network bandwidth is expensive, I'm not sure the considerations here are properly focused. Handing off the data storage problem invokes...
March 28, 2019 at 11:40 am
March 28, 2019 at 11:14 am
Okay, that's a good resource on users without logins. Thanks for that. Still not sure I understand the reason one would choose to use that ability, so maybe you can...
March 28, 2019 at 10:20 am
Also I disagree with a "heck of a lot...
March 26, 2019 at 10:00 am
I'm an idiot. I just now realized that the sproc in question did not have a GO statement to end the procedure and thus the GRANT statements that were part...
March 26, 2019 at 8:52 am
Without any test data to work with, and for both scenarios (you have enough rows, and, you don't), there's not a lot of incentive for anyone to try and figure...
March 26, 2019 at 8:08 am
Okay, but then why would the existing user like this script out that way? Did those logins perhaps "used to exist" ?
March 21, 2019 at 10:48 am
Viewing 15 posts - 181 through 195 (of 4,820 total)