Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
120 views

We have created new publication and then subscription replicate data from D to E database. Publication is set to run every 10 seconds Subscription is set to run continuously. It was working fine and ...
Manish Joisar's user avatar
0 votes
0 answers
28 views

I am trying to run a query for multiple servers, but it is not inserting the results into the destination table from a different server. By debugging the Script from script component I got the error: ...
user26055100's user avatar
0 votes
0 answers
18 views

The code below results in the error (On Line 25): Invalid column name: FileDate. IF OBJECT_ID(N'TempDB.dbo.#CriminalCases') IS NOT NULL DROP TABLE #CriminalCases SELECT cc.CourtCaseID, cc....
fragmonger's user avatar
1 vote
0 answers
193 views

I have got an old and big database with a lot of extra stored procedures. I've executed a query to find unused queries. SELECT O.name, PS.last_execution_time FROM sys.dm_exec_procedure_stats ...
Amirhossein Yari's user avatar
0 votes
1 answer
363 views

I'm running my app locally, in dev env and also in prd env without a problem, but in stg env I get this "Invalid object name 'bls.TaskFeedReactions" exception.. I renamed the table from &...
MarchalPT's user avatar
  • 1,606
0 votes
0 answers
23 views

I have a stored proc that returns details of SQL Agent Jobs on the local server. There is a master script that calls this proc, using OPENQUERY, against every SQL server in the ecosystem. In ...
High Plains Grifter's user avatar
0 votes
0 answers
244 views

When I create a connection to SQL in Excel that has a temp table for a lookup and I hard code the parameters for the SQL query, everything runs fine. When I change the hard coded parameters to ? to ...
John Self's user avatar
0 votes
1 answer
424 views

My database is called "Confluence". The maintenance job has always failed since that job was setup 6 months ago. Attempting to run the job manually also fails with same error. Executed as user: NT ...
c c's user avatar
  • 11
0 votes
0 answers
508 views

I have this code in my SQL, however the if statement seems to be not working at all. Every time I run the query below.. I always have an error that says... Msg 2714, Level 16, State 1, Line 39 There ...
Magpie737's user avatar
0 votes
1 answer
1k views

180 objects are invalid in pre-requisite even after running utlrp.sql while upgrading oracle 12c to 18c. When running EXECUTE DBMS_PREUP.INVALID_OBJECTS, I am getting APEX packages in the output ...
Pratishtha Mudgal's user avatar
0 votes
0 answers
2k views

I am trying to bulk load from a CSV file to an SQL Server (both Excel and SQL Server are sitting on my laptop). I am doing this via Excel VBA using the "bulk insert" statement. I keep getting a run-...
Ron's user avatar
  • 1
4 votes
1 answer
2k views

I just enabled change tracking by turning on ALLOW_SNAPSHOT_ISOLATION, executing this query to turn on change tracking for the database ALTER DATABASE [DatabaseName] SET CHANGE_TRACKING = ON (...
Cambesa's user avatar
  • 456
0 votes
0 answers
2k views

I am facing a weird problem and I would be glad if anyone can help me. In our company we use SSRS to send daily Reports to the Same Management. We Have 3 Types of Reports, which of 3 is executed ...
Gio's user avatar
  • 1
1 vote
1 answer
864 views

I have a wired situation. The code below works perfectly well on one server, but not in the other one. Databases compatibility level is the same on both of the servers. I use sql server 2016. ;USE ...
Data Engineer's user avatar
6 votes
3 answers
11k views

I have setup a connection in R: conn <- dbConnect(odbc::odbc(), Driver = "SQL Server", Server = "...", Database = "AdventureWorks2012") The ...
Sasha Babaei's user avatar
1 vote
1 answer
1k views

Currently creating a Django site for some work I'm doing. Here are the relevant code blocks: portal/device_categories/models.py from django.db import models # Create your models here. class Type(...
nuckingfut5's user avatar
1 vote
1 answer
386 views

I have a windows service application that imports a CSV file. During the import process, the application runs a series of queries to the database. During stress testing, we tried importing a CSV with ...
darwin25's user avatar
0 votes
2 answers
4k views

I have been looking for the solution from 2 days and tried everything but still i am not able to resolve the issue i am facing. Issue : Invalid object name 'Info' package test; import java.sql.*; ...
topper1309's user avatar
0 votes
2 answers
2k views

I have a table that gets deleted and re created in milliseconds(cant just insert and delete). Of course this occurs sometimes when another stored procedure is running and trying to call that table. ...
Chris's user avatar
  • 1
1 vote
1 answer
1k views

My issue is that I keep getting an error on console that says Invalid Object Name 'dbo.Products' I am using Visual C# 2008 Express Edition and SQL Server 2008 Express. I have had some issue with ...
Andrew Ricci's user avatar
2 votes
6 answers
169 views

[Corporate confidential information or graphics removed] I have this sort of structure in my database. I need to build a list of employees' names followed by names of their departments and offices. By ...
user avatar
0 votes
2 answers
1k views

I am completely ignorant in relation to databases and servers etc. Please bear with me. I am trying to install a program called RealProspect 2009 which allows both local and remote sql database ...
Chris Peisher's user avatar
1 vote
1 answer
2k views

I have to work on a database in which there are many stored-procedures & views that are referencing non-existing tables & columns. How can I get the list of invalid objects (Tables, Columns) ...
Yaqub Ahmad's user avatar
  • 27.7k
2 votes
2 answers
5k views

I'm switching my web host and backed up my database. Due to some restriction with my new host I could not restore the .bak file and had to send to them so they would restore it. Once they had restored ...
Kimpo's user avatar
  • 5,836
2 votes
1 answer
2k views

We are seeing 'interesting behavior with our SQL Sever Database. We have a merge statement which selects a table X. In the match clauses there is a subselect to table X. When we execute the stored ...
Jens Schauder's user avatar