Viewing 15 posts - 571 through 585 (of 754 total)
Do you mean in table edit/view mode? You can open the table in design view and set the format to mm/dd/yyyy. Or in a form or report (in which case...
December 1, 2021 at 8:15 pm
I assume your description was of a physical server rather than a VM? 4-socket/2-core: Old Xeons or Opterons?
I believe you'll only get to use 2 cores -- SQL Server Express...
November 30, 2021 at 5:13 pm
Just execute the second query after the first within your try block.
If the first statement succeeds, the second statement will execute.
If the first statement fails, it will jump to the...
November 29, 2021 at 8:24 pm
If you are using the GUI, in the advanced tab, see the "On failure action" dropdown. In addition to the more common "Quit the job reporting failure" or "Quit the job...
November 29, 2021 at 4:57 pm
StatusId is in dbo.Revision, so I think you'd need to adjust slightly to something like the following
DECLARE DocsToExport CURSOR LOCAL FAST_FORWARD FORWARD_ONLY FOR
SELECT RevisionAttachmentItem.DisplayFileName
...
November 24, 2021 at 2:21 pm
Do the clients fully understand the risk of lost data and uptime in testing on the live system? Would a test on duplicate environments suffice. Variables (IP addresses, server names,...
November 23, 2021 at 6:16 pm
Any time you do a comparison such as =, <>, or LIKE in a where clause (or inner join), you are implicitly excluding rows where that column is null, since...
November 23, 2021 at 5:56 pm
You indicated BillingRateB was blank, but in the picture it is BillingTypeB that is blank -- Rate (which is either BillingRateA or BillingRateB) is always populated. But there are...
November 18, 2021 at 10:32 pm
So the count returned is right.
Can you provide one or more sample source rows and corresponding output rows (obfuscated as appropriate) where the problem lies?
November 18, 2021 at 9:02 pm
Since you are aliasing BillingRateA as 'Rate' and BillingRateB as 'Rate', are you saying that you are seeing a populated Rate column when you run just the bottom half, but...
November 18, 2021 at 8:49 pm
A primary key is really just a unique index (clustered or not, depending on how it was created). Microsoft has wrapped it w/ some logic that syntactically implements it as...
November 17, 2021 at 7:37 pm
Short of writing your own dtsx processor, there is no way to run dtsx packages without SSIS. dtexec is the executable that parses & implements the logic in dtsx...
November 17, 2021 at 5:54 pm
No. If you really need/want to convert the unique index to a primary key, you will have to drop the index and create the primary key - I don't believe...
November 17, 2021 at 4:29 pm
November 16, 2021 at 8:18 pm
Viewing 15 posts - 571 through 585 (of 754 total)