Viewing 15 posts - 1 through 15 (of 25 total)
I am working with a script to exclude certain data types, and I was wondering if there is a comprehensive listing of the system.<datatype> for each of the...
April 11, 2025 at 5:15 pm
Thanks very much! Yes, I may do Regex replacing on the generated CSVs.
By the way, in DbaTools, is there any filtering based upon datatype of columns (e.g. AutoNumber) or the...
March 26, 2025 at 7:53 pm
Addendum: Here's the code I've been using for export:
Credit to this link
#Initiate a connection
$MyConnection = Connect-DbaInstance -SqlInstance LOCALHOST\MSSQLSERVER -TrustServerCertificate
#Define a list of tables
$Tables = @("cop.table1", "cop.table2",...
March 26, 2025 at 3:15 pm
I've been doing a bit more research into this in between other projects.
If I used powershell to export (like in this link - below), is there a way to use...
February 28, 2025 at 9:05 pm
Thanks so much!
I'll check into those options to see what direction to go in.
February 19, 2025 at 2:16 am
(Your answer solved the error - thanks!)
Thanks for your input.
The first part of my post was an typo on my part - I had been getting the 'incorrect syntax' previously...
June 3, 2019 at 4:13 pm
Thanks very much!
I've been also looking at the example in the link you referenced. I just left the @urlKEY value empty, as I wasn't sure where its value came...
July 22, 2016 at 12:48 pm
Thanks,
I've been working on this search/replace string and had a question about why the replace still is not occurring.
Below is the actual SQL I've been using in test:
UPDATE [dbo].[tbl_a]
SET...
November 24, 2015 at 11:21 am
daniel.freedman 80164 (10/15/2015)
INSERT INTO aaa_test_users (UserName, first_name, last_name)
FROM aaa_test_sp
INSERT INTO aaa_test_users_positions (UserID, position, phone)
SELECT aaa_test_users.UserID, aaa_test_sp.position, aaa_test_sp.phone
FROM...
October 16, 2015 at 2:53 pm
Sean Lange (8/20/2014)
cajun_sql (8/20/2014)
Sean Lange (8/20/2014)
cajun_sql (8/20/2014)
Sean Lange (8/20/2014)
Why not just change your hidden field to be strSP_VersionYear="2014-01-01"? That should work for you.
Thanks.
Why does the SQL INSERT statement succeed where...
August 20, 2014 at 12:13 pm
Sean Lange (8/20/2014)
cajun_sql (8/20/2014)
Sean Lange (8/20/2014)
Why not just change your hidden field to be strSP_VersionYear="2014-01-01"? That should work for you.
Thanks.
Why does the SQL INSERT statement succeed where the Recordset AddNew...
August 20, 2014 at 9:56 am
Sean Lange (8/20/2014)
Why not just change your hidden field to be strSP_VersionYear="2014-01-01"? That should work for you.
Thanks.
Why does the SQL INSERT statement succeed where the Recordset AddNew fails?
August 20, 2014 at 9:44 am
Thanks - I wanted to share the solution, thanks to user AlwaysLoadingData on StackExchange:
SELECT
KSA.ID as KSA_ID
,KSA.KSA_Version
,KSA.KSA_Sort_Order_Number
...
April 28, 2014 at 1:24 pm
LutzM (11/27/2013)
I'm...
December 4, 2013 at 2:23 pm
:-)Thanks for the great question, and (in your answer) thanks for showing the scenarios in which the other choices could be valid.
Nice detail work.
November 26, 2013 at 9:37 am
Viewing 15 posts - 1 through 15 (of 25 total)