Viewing 15 posts - 661 through 675 (of 754 total)
What have you done to debug it? Have you determined which call to the stored procedure is breaking? (i.e., what parameters?). You may have to use extended events or a...
April 8, 2021 at 10:22 pm
msdb, model, & tempdb can be moved through relatively normal means (though you have to restart SQL Server afterwards).
master requires modifying startup parameters and the registry... and maybe a prayer...
April 8, 2021 at 3:01 pm
Your odds might be better in an Oracle forum like Oracle Communities or orafaq than in a Microsoft SQL Server forum.
April 8, 2021 at 1:22 pm
Microsoft says you can, but recommends excluding most folders and file types associated with SQL Server: https://support.microsoft.com/en-us/topic/how-to-choose-antivirus-software-to-run-on-computers-that-are-running-sql-server-feda079b-3e24-186b-945a-3051f6f3a95b#:~:text=You%20can%20run%20antivirus%20software,is%20a%20cluster%2Daware%20version.&text=C%3A%5CWindows%5CCluster
... as well as the following on cluster servers:
Q:\ (Quorum drive)
C:\Windows\Cluster
MSDTC directory in...
April 7, 2021 at 1:13 pm
Why the empty date shows '1900-01-01' and how to avoid?
Because that's what an empty string casts to (the equivalent of 0).
If you want NULL, use NULL instead of empty string.
What...
March 29, 2021 at 10:25 pm
What version/patch # is the server at?
What ODBC driver version is each client using? Do they have identical hardware (CPU, amount of RAM, speed of RAM, etc.)?
Are they pointing at...
March 24, 2021 at 7:44 pm
Ideally from the source/designer of the XML. Barring that, maybe Generate an Inline XSD Schema
Here's another link: Generate XSD from Sql query using FOR XML
March 24, 2021 at 2:40 pm
This is a post to the more appropriate forum of the question asked in Metrics/Order Detail -MSSQL, in which you were repeatedly, politely asked NOT to post excel file...
March 22, 2021 at 9:33 pm
Posting consumable DDL & data serves several purposes:
March 18, 2021 at 8:03 pm
Only db_ddl_admin & db_owner roles inherently have create table permissions.
db_datareader, db_denydatareader, db_datawriter, & db_denydatawriter roles do not.
March 18, 2021 at 4:59 pm
2....
March 18, 2021 at 2:05 pm
It would help if you provided DDL and insert statements for data... and if your query column names matched those you provided in the table descriptions -- WorkCenterName != WCName
Given...
March 17, 2021 at 9:07 pm
TLDR: Analyze server specs, compare to actual workload, & test consolidation.
It's not really about the version of SQL Server, but about the size/rate of transactions (inserts, updates, deletes), the size/rate...
March 15, 2021 at 9:37 pm
Is the font installed on the server where SSRS is running?
That is where the export takes place, and where the font has to be embedded in the PDF. Font embedding...
March 15, 2021 at 6:39 pm
Not sure what you mean by generic, but a report with barcodes doesn't sound generic.
How are the bar codes generated? Given the behavior, I suspect they are using a bar...
March 15, 2021 at 3:55 pm
Viewing 15 posts - 661 through 675 (of 754 total)