Viewing 15 posts - 3,556 through 3,570 (of 13,874 total)
You cannot use the OPTION clause in views. See this link.
The SELECT clauses in a view definition cannot include the following:
- An ORDER BY clause, unless there is also...
June 12, 2019 at 2:18 pm
Try this:
DROP TABLE IF EXISTS #Run;
DROP TABLE IF EXISTS #RunControlClient;
DROP TABLE IF EXISTS #SQLServerDatabase;
CREATE TABLE #Run
(
RunID INT NOT NULL PRIMARY KEY CLUSTERED
...
June 12, 2019 at 1:55 pm
Is this a many-to-many join?
P.Tracker_PSYH = Z.ZATS_PSYH
June 11, 2019 at 3:09 pm
A few of us have mentioned it in the huge friend,
Who is this guy?
PS, the logouts happen to me too.
June 11, 2019 at 2:56 pm
Hi The package will not be in SSISDB - it will be in Integration Services Catalog - which will be below all the database as a separate twistie
SSISDB is...
June 11, 2019 at 1:56 pm
We can't see your tables or your data, so I'm not sure how you expect us to be able to refine your unformatted SQL.
Please post some consumable code, along with...
June 11, 2019 at 1:54 pm
One obvious way is to disable the index & then rebuild it, once the update is complete. I presume you're trying to avoid that?
June 9, 2019 at 6:30 pm
A general answer to what? You haven't asked a question.
June 7, 2019 at 9:11 pm
Ok how do I use a Table Variable
A quick example:
DECLARE @Who TABLE
(
SPID CHAR(5)
,Status NVARCHAR(50)
,Login NVARCHAR(50)
...
June 7, 2019 at 9:09 pm
I think you'll need recursion to solve this. Try running the following:
DROP TABLE IF EXISTS #table2;
CREATE TABLE #table2
(
id INT NOT NULL --PRIMARY KEY...
June 7, 2019 at 7:24 pm
NOT LIKE '836%'
works. If you think it doesn't, please provide a query which we can run to prove otherwise.
June 6, 2019 at 7:38 pm
Note also that SSISDB does not contain any jobs, merely packages, logs, environments and configurations.
June 6, 2019 at 2:22 pm
Do you have the Master Key from the original server? That is, the key used to encrypt (some of) the data inside SSISDB?
June 6, 2019 at 2:20 pm
Or maybe this?
a) Users are querying table set A via synonyms
b) ETL process loads table set B with data from file1
c) ETL process switches synonyms to point to table set...
June 6, 2019 at 1:50 pm
Viewing 15 posts - 3,556 through 3,570 (of 13,874 total)