Viewing 15 posts - 2,731 through 2,745 (of 2,756 total)
richlion2 (12/8/2016)
December 8, 2016 at 8:20 am
Not a problem. Everybody has days like that.
Plus it is much nicer to find out you missed something simple than to find out that your query really needs to...
December 6, 2016 at 12:08 pm
Possibly a dumb question but are you using the database as the schema?
That is, in the UPDATE command it should be:
UPDATE <database>.<schema>.<table>
SET dest.[project_id] = stage.[project_id]
...
November 28, 2016 at 3:04 pm
If I understand your question correctly, you are wondering why you would want to specify a listener IP.
Lets say for example, your SQL instance had 2 network cards; one inside...
November 28, 2016 at 2:57 pm
As a thought, could you ask your domain controller manager to check their logs if the account got locked at the time the job failed?
Is it always the "backup" job...
November 17, 2016 at 7:21 am
Is the backup happening to local disk or network attached storage?
If it is network attached storage, you could bug your network admin to see if there are any network issues...
November 16, 2016 at 8:29 am
Did a quick google of that and found this link: http://answers.microsoft.com/en-us/windows/forum/windows_7-pictures/error-the-application-has-failed-to-start-because/df019c0d-746e-42d0-ad68-465e18e3f3ef
which had the following answer:
Error message: "Side-by-side configuration is incorrect"
The machine is missing the correct C++ runtime components...
November 16, 2016 at 7:43 am
Now, I am no SQL expert, but if I had to guess, I would say it is part of how SQL Server handles ACID.
If you do an update and something...
November 16, 2016 at 7:37 am
Should also be noted that this is for SQL version greater than SQL Server 2005 which according to the microsoft documentation at https://msdn.microsoft.com/en-us/library/ms174335(v=sql.90).aspx states:
expression
Is a constant, a variable,...
October 17, 2016 at 8:35 am
OH, so you are using SSIS.
why not use a data flow task to copy the data over instead of a script?
October 12, 2016 at 10:38 am
Eirikur Eiriksson (10/12/2016)
October 12, 2016 at 9:44 am
you could do it as a stored procedure instead of a hard coded SQL command, but if you don't like that solution how about:
public static SqlDataAdapter InsertSQL()
{
SqlDataAdapter adapter = new...
October 12, 2016 at 9:12 am
The reason it is failing is that the variable doesn't exist on the MYSQL side. When you do the execute AT command, you are telling it to run that...
October 12, 2016 at 8:54 am
I agree with you Andrew.
It also doesn't help that every time I think I partially understand most of the features they add in something new or I find a feature...
October 12, 2016 at 8:20 am
Abu Dina (10/7/2016)
I love it when I get a notification about a thread I posed in 4 years ago!Miss SQL Server so much! :crying:
Geeze. Sorry about that. Didn't...
October 7, 2016 at 10:30 am
Viewing 15 posts - 2,731 through 2,745 (of 2,756 total)