Viewing 15 posts - 106 through 120 (of 297 total)
The most likely cause is that your firewall does not allow outbound connection to the gmail SMTP server. I'm assuming your SSIS package i running in a corporate environment.
You say...
July 30, 2022 at 4:33 pm
You don't really need sys.indexes in the row-count query:
OUTER APPLY (
SELECT SUM(p.rows) AS TotalRows
FROM sys.partitions p
...
July 28, 2022 at 7:04 pm
BTW, maybe you could edit your question and change references to Visio (which is a completely different Microsoft product) into Visual Studio?
That would make it much easier to know what...
July 28, 2022 at 6:41 pm
I notice that the version of the SSDT you have installed seems to be 14.0.xxx - and I think for Visual Studio 2017 it needs to be 15.0.xxxx. This could...
July 28, 2022 at 6:25 pm
Try this:
SELECT
CONCAT(SCHEMA_NAME(t.schema_id), '.', t.name) AS TableName
, t.create_date AS CreatedDate
, t.modify_date AS LastModifiedDate
...
July 28, 2022 at 5:26 pm
How about this, would this be helpful?
WHILE NOT EXISTS (SELECT * FROM table1 WHERE Text LIKE '%fire%' ) BEGIN
WAITFOR DELAY '00:00:10'
END;
THROW 50000,'Some error...
July 27, 2022 at 10:33 pm
Sorry, I hereby withdraw my entry. I used a bit operator, not the power function, and that does work with the testdata, but is not a valid general solution. The...
July 25, 2022 at 8:39 pm
What OS version is the remote SQL Server 2012 running on?
If the server is runningWindows Server 2012 or older, it may not have the cipher suite to support a TLS1.1...
July 21, 2022 at 8:34 pm
Yes, but do you have a copy of the database on a different server, and access the table in the remote copy from the view (using four-part identification and linked...
July 21, 2022 at 7:57 am
NO,
All the tables resides in same database.
Are you absolutely sure of that?
Because according to the documentation the columns referenced_server_name, referenced_schema_name and referenced_entity_name are only not-null if an object is...
July 20, 2022 at 3:26 pm
It does look strange. I notice that there are some implicit conversions involved - the parameter @p8 is converted/cast to nvarchar(4000) and the cid column is likewise implicitly converted/cast to...
July 20, 2022 at 12:59 pm
You stated nothing about equipment_id in your original post. How am I supposed to include logic for your equipment_ids when you tell us nothing about them?!
Easy now! 🙂
He did...
July 19, 2022 at 8:49 pm
I'm no expert on Powershell scripts by a long shot, but I think you should try to do an explicit cast to NVARCHAR(MAX) or XML on your insert command.
As I...
July 19, 2022 at 8:17 pm
(deleted)
July 19, 2022 at 8:02 pm
Viewing 15 posts - 106 through 120 (of 297 total)