Viewing 15 posts - 76 through 90 (of 13,838 total)
Save yourself the trouble and install Redgate's SQL Search (link).
March 17, 2025 at 10:40 am
Can I ask why you have set a custom page size, instead of 8.5 x 11?
To make sure you avoid the blank page issue, you need to be sure that
Palette...
March 15, 2025 at 7:29 pm
Are you able to post images showing the Report Properties?
March 13, 2025 at 9:16 pm
Can you post your code?
March 13, 2025 at 4:21 pm
Just for clarity, are you saying that they are generating INTs (or whatever) as keys in dim tables as part of a DW load and that those INT values can...
March 12, 2025 at 2:10 pm
This may be relevant:
Perhaps try making the proc very simple and seeing whether the error goes away. If it does, you will know that the problem relates (somehow) to...
March 12, 2025 at 9:27 am
March 11, 2025 at 2:56 pm
The following solution assumes that the data should be ordered by (DocEntry, Itemcode)
DROP TABLE IF EXISTS #Test;
CREATE TABLE #Test
(
DocEntry INT NOT NULL
...
March 11, 2025 at 10:38 am
You have >1,000 points, so you must know by now how to provide sample data (in the form of CREATE TABLE and INSERT statements) and desired results based on that...
March 10, 2025 at 1:11 pm
I'm no DBA, but doesn't log shipping require a single primary DB and one or more secondary DBs, with the secondary DBs being (effectively) copies of the primary?
Your requirement seems...
March 9, 2025 at 2:31 pm
Totally understand why you don't want to do this manually! But …
I know of nothing in the market that can do it, though I haven't looked for a few years....
March 6, 2025 at 9:15 am
Hi, thanks for replying. its 50% of the way there. splits out my uniqueidentifier perfectly.
I however, also need the false or true part that relates to each identifier, so...
March 5, 2025 at 5:15 pm
This issue is likely due to how the Excel driver interprets data types dynamically. If possible, switch to .xlsx format, as it's more stable.
Also, try adding IMEX=1 to the...
March 4, 2025 at 5:01 pm
Regarding the Excel file, is it empty when the job runs? If not, what does it contain?
I suspect the problem may be to do with the guesswork employed by the...
March 4, 2025 at 1:50 pm
Regarding my 'easier to read' comment, please also consider using table aliases and removing superfluous brackets.
SELECT h.Date
,h.EstCompDate
...
February 26, 2025 at 6:05 pm
Viewing 15 posts - 76 through 90 (of 13,838 total)