Viewing 15 posts - 2,461 through 2,475 (of 39,720 total)
I did always want a Jeep, ever since I spent a summer with a few friends that had CJ-7s.
However, I rented a Wrangler with my son and we drove from...
July 24, 2020 at 6:18 pm
Never been a big Corvette person, at least not since the late 50s, but I did see a new one recently that looked slick.
My wife is more interested in Toyota...
July 24, 2020 at 6:16 pm
I think they will be cool. Now, there's a lot of overhead, but in 5 years I think these will be amazing.
July 24, 2020 at 6:14 pm
Invoke-SqlCmd will do this for you. If you really want a RunPS, alias it, but there's no reason to have some other cmdlet.
If you want to capture the output in...
July 23, 2020 at 10:10 pm
Standards are hard here. More, I think discussing whether a particular comment is helpful or not helps the team decide what is important and how to structure them
July 23, 2020 at 4:01 pm
Here you go:
$who = Invoke-Sqlcmd -ServerInstance "Aristotle\SQL2017" -Database "master" -Query "EXEC sp_Who"
foreach ($row in $who)
{
Write-Host ("SPID: " + $row.spid + " Status: "...
July 23, 2020 at 3:48 pm
If you take notes of what you use, what you learned, how the test goes (don't break NDA), it would make a great article.
July 23, 2020 at 3:42 pm
Thanks and glad you like them. I am trying to keep this very simple, and assuming these are new concepts for people.
Any suggestions/requests are welcome.
July 23, 2020 at 3:33 pm
Part of the game, plus you can try to use knowledge to make it an educated guess.
Most of the question I write are because I didn't know something and learned...
July 23, 2020 at 2:22 pm
Thinking more, I think colorizing based on login is likely not really what is useful. However, by role is interesting. It's usually the permission set we are about, so allowing...
July 22, 2020 at 8:10 pm
Prompt does not colorize based on the login used for the instance. That's an interesting idea. I'll submit it.
July 22, 2020 at 8:06 pm
No, I mean execute the query(ies) that the package runs from SSMS from the instance where the data will be stored.
July 22, 2020 at 8:03 pm
My guess too, which is why I'd like to break something out to check.
If it hangs in SSIS, can you get it to hang in SSMS?
July 22, 2020 at 5:19 pm
Thanks. Posted in the MVP list. Hopefully someone responds.
July 22, 2020 at 5:18 pm
I wouldn't think column order matters. At least, it shouldn't. Not sure dynamic SQL is better than just the loop shown above. I might actually store the 30 cols in...
July 22, 2020 at 4:34 pm
Viewing 15 posts - 2,461 through 2,475 (of 39,720 total)