Here's a few of the new posts today on the forums. To see more, visit the forums.
|
SQL Server 2017 - Administration |
Attempt to retrieve data for object failed - On Local Instance of SQL Server - I am getting this error in SQL Server Express 2017 when trying to script a table out to a new query. I can open it in design mode, run queries and so on but not generate scripts for tables... Attempt to retrieve data for object failed for Server '(LocalDB)\MSSQLLocaDB'. (Microsoft.SqlServer.Smo) Additional Information Invalid Urn filter […] |
SQL Server 2017 - Development |
Create Excel (XLSX) file from Stored Procedure - Hi, I've been searching for current code that will allow me to create an Excel file from the contents of a SQL Server table. I'm just looking for the simplest approach. Does anyone have working code they would be willing to share with me? We are on SQL Server 2017. Also, I want to be […] |
Study Resources - Hi - I am originally a DBA who has been doing SQL DEV work for the last few years as a contractor - primarily SSIS / ETL/ reports projects. I'm wrapping up a contract imminently and am expecting to have some time on my hands while the market re-adjusts to the current pandemic situation, so […] |
SQL Server 2016 - Administration |
Using listener_name in 4 part naming convention gives sys.servers error - Hi, app uses cross db connections, the dbs are in different AG's, so I need them to use 4 part naming convention - in the place of servername would be listener name, but when I run a simple query like: select * from Listener_Name.DatabaseName.[schemaname].[objectname] go I get: Could not find server 'Listener_Name' in sys.servers. Verify […] |
OPENROWSET question - Hello, Simple question, can the OPENROWSET if enabled, grant all access to databases only? or can i specify to only for a particular database? |
SQL Server 2016 - Development and T-SQL |
Database Deployment Scripts - I am wondering what people are using for automated deployment of database objects. We are agile, but only because we have sprints. We perform large about every 3 months and assign the stories to a release in TFS, so it is easy to figure out what scripts are being released. We also do smaller releases […] |
Filling dates between the status changes - Hi , I have a table with a sample data like this. CREATE TABLE EMployeeStatus( EMployeeID Int, TranDate datetime, OldStatus varchar(50), NewStatus varchar(50) ) INSERT INTO EMployeeStatus(EMployeeID , TranDate , OldStatus , NewStatus ) VALUES( 12345657, '07/11/2018', 'SUSPENDED', 'ACTIVE') INSERT INTO EMployeeStatus(EMployeeID , TranDate , OldStatus , NewStatus ) VALUES( 12345657, '7/18/2018', […] |
Importing csv file into SQL table - Looking for something like BULK insert CSV file to SQL table. But BULK insert assumes there is table already exist. Is there any other option to directly import csv file into SQL server (may be into temp table)...kinnda like SELECT * into . Problem is csv contains about 200 columns and sometimes they send less […] |
SQL Server 2019 - Administration |
SA account locked out/Single user turned on/SQL Server Agent stopped - Hey there all! So we have recently been having an issue at work. Started with our sqladmin account being locked out randomly. Searched the logs and we cannot find out where this is happening at. Now...We came into work our SQL server was changed to Single User mode. Next issue......SQL Server Agent decided to stop. […] |
SQL Server 2019 - Development |
Pivot Data based on the date range - Hi All, I have a dataset which has information about students and their registered courses. following is a temp table with a sample structure and data. DROP TABLE IF EXISTS #StudentData CREATE TABLE #StudentData (StudentID INT,CourseType VARCHAR(50),CourseID INT,SubscriptionStartDate DATE, SubscriptioneEndDate DATE) INSERT INTO #StudentData VALUES (1,'Basic',50,'10-15-2016','10-15-2017') INSERT INTO #StudentData VALUES (1,'Advanced',72,'10-15-2016','2018-12-31') INSERT INTO #StudentData VALUES […] |
SQL Server 2008 - General |
SSIS - Package failing after first run - Hello, I have created an SSIS package which calls a SQL PROC and exports the data to an Excel file. We use an Excel template within the ConnectionString name, then within the ExcelFilePath we change the name of the file and add a date. However, we are getting the error message at the bottom of […] |
SQL Azure - Administration |
Blocked Processes in Azure - Hey all, What's the appropriate way to setup a blocked processes report in Azure SQL? I see blocked process threshold is set to 20, this can't be changed right? There's no profiler, but data factory has a plugin. Do you have to use extended events out to a storage account? Basically I just want to setup […] |
My Azure SQL Database Tips from real life - My Azure SQL Database Tips from real life ?? On premium subscription Restore 1.5 TB database to point in time takes ~ 10 hours Truncate 100 rows ,100K or 958M rows from table located in azure sql database takes same time ~2 seconds ?? DBCC SHRINKDATABASE will bring DTU to 100% for all execution period […] |
General |
How to calculate a "DUTCHING" formula with an odds on runner < 2.00 price? - I would provide a table creation script but I am getting the following error which I posted earlier > https://www.sqlservercentral.com/forums/topic/attempt-to-retrieve-data-for-object-failed-on-local-instance-of-sql-server Attempt to retrieve data for object failed for Server '(LocalDB)\MSSQLLocaDB'. (Microsoft.SqlServer.Smo) Additional Information Invalid Urn filter on server level: filter must be empty, or the server attribute must be equal with the true server name. […] |
Integration Services |
Refresh Power BI dataset using script task - Hi , I am trying to refresh the power bi dataset using the API in the Script task using C#, Can some one guide me with the right approach Thanks in Advance |