Viewing 15 posts - 31 through 45 (of 5,394 total)
Sorry, this is a SQL Server forum: you won't have many people answering c# questions here.
I suggest that you post your question in places like stackoverflow.
September 29, 2016 at 2:28 am
To connect to a default instance, you don't need to specify "MSSQLSERVER" as the instance name: instead of Server=SERVERNAME\\MSSQLSERVER use Server=SERVERNAME
September 29, 2016 at 2:26 am
That stored procedure does exactly what you need to do.
September 29, 2016 at 2:17 am
Luis Cazares (9/28/2016)
Don't listen to that
You mean me? Wow, that's quite a way to disagree... 🙂
September 28, 2016 at 7:15 am
MERGE is a widely known deadlock generator: https://www.mssqltips.com/sqlservertip/3074/use-caution-with-sql-servers-merge-statement/
September 28, 2016 at 6:56 am
In the "SELECT" part of the query, SQL Server has no idea what [DB].[dbo].[TABLE1].Report_Run_Date is, because it is not part of the query.
This might be similar to what you're after:
INSERT...
September 28, 2016 at 6:20 am
No, I'm sorry. You need to restore the database and then set up replication from scratch. You can always script the publication from the production database and use that script...
September 28, 2016 at 1:32 am
Anything that Google can't help you with?
Are you lloking for something in particular?
September 28, 2016 at 1:20 am
This is a SQL Server forum, not a MySQL forum. You'll have better luck with MySQL forums: http://forums.mysql.com/
September 28, 2016 at 1:18 am
Sorry, but it is unclear to me what you're trying to do.
Please post table scripts, sample data and expected output.
See http://spaghettidba.com/2015/04/24/how-to-post-a-t-sql-question-on-a-public-forum/ for guidance.
September 28, 2016 at 12:54 am
Compare the two execution plans. If the plans are simple, you can do that visually/manually.
If the plans are complex, you can look for subtle changes using SSMS: https://blogs.msdn.microsoft.com/sql_server_team/comparison-tool-released-with-latest-ssms/
September 27, 2016 at 8:32 am
Absolutely possible, but don't focus on the read/write or read-only status of the database: look for differences in the query plans and sorting/hashing operations spilling to tempdb.
September 27, 2016 at 8:24 am
What's your question?
The query you posted is invalid. Try something like this:
SELECT (
SELECT PARTY_NAME
FROM...
September 23, 2016 at 1:44 am
What you need here is a table valued parameter:
CREATE TYPE ParamCountry AS TABLE (name varchar(200));
GO
CREATE PROCEDURE FindingCityNames @CountryNames ParamCountry READONLY
AS
SELECT CityName,Capital, Countryname
FROM TableCountries
WHERE CountryName IN (
SELECT name
FROM @CountryNames
)
GO
DECLARE...
September 22, 2016 at 3:30 am
Viewing 15 posts - 31 through 45 (of 5,394 total)