Viewing 15 posts - 2,341 through 2,355 (of 2,883 total)
Then I am not sure. Sorry about that. I've not seen that before except when I end up with an unnamed column.
Any chance that 2 columns ended up with...
August 1, 2017 at 3:04 pm
Without seeing the data, I would try something like:BEGIN TRANSACTION;
SELECT MISCCODE FROM table;
UPDATE table
SET MISCCODE = MISCCODE + '1'
WHERE MISCCODE NOT LIKE ''
AND...
August 1, 2017 at 2:50 pm
are your columns named?
That is, if you are using aggregates, are you providing an alias to the column?
Like a "SELECT SUM(dollars) FROM table" won't have a column...
August 1, 2017 at 2:41 pm
Has this ever worked?
Is there a different SQL instance you can successfully connect to on the network from your local machine?
August 1, 2017 at 9:46 am
I may be mistaken on this one, but I THINK the service account not being able to talk to AD can cause that problem too.
Might want to check that...
July 31, 2017 at 12:21 pm
July 31, 2017 at 11:56 am
July 31, 2017 at 10:27 am
What we do where I work is have the environment set up for the connection managers instead of for an environment. That way, anything we deploy to test, regardless of...
July 31, 2017 at 9:28 am
July 28, 2017 at 8:27 am
OH, my bad. But, yay, progress!
SQL browser service (I believe) uses port 1434. Do you have that port open in your firewall (as was suggested by July 26, 2017 at 3:02 pm
Since you can connect when you specify the port, I am thinking this isn't a firewall related issue.
Have you tried restarting the SQL browser service? I beleive (but could...
July 26, 2017 at 2:42 pm
I am planning on speaking soon... just need to get some demo scripts and some stuff set up.
I am hoping to do a presentation on troubleshooting service broker. I've...
July 26, 2017 at 2:30 pm
Where I work, we sometimes have an issue with orphaned users on our test systems. We restore live user databases to test from backup when we need to troubleshoot some...
July 26, 2017 at 11:35 am
Viewing 15 posts - 2,341 through 2,355 (of 2,883 total)