Viewing 15 posts - 256 through 270 (of 1,988 total)
And possibly herein lies the problem with bugs. My personal feeling is that those who create software should be the ones who have to find and fix the problems...
April 14, 2021 at 1:46 pm
That should just be a matter of changing the date format, I based that off the article you were using to get the directory listing but for the date format...
April 12, 2021 at 1:39 pm
The second solution I posted does not require pushing anything to SQL Server and should work with the standard PS install.
April 12, 2021 at 1:15 pm
Hmm... it looks like that list directory is just returning an array of strings that you'll have to parse if you want the relevant file information. As for getting it...
April 6, 2021 at 6:08 pm
Now I'm curious what kind of use case requires Sybase and SQL Server installed on the same system.
April 6, 2021 at 1:46 pm
Well do you actually have the 5 years experience on your resume?
April 2, 2021 at 2:47 pm
And produce a kill script from that select.
That query should have the login and the sql command in it, you'll just need to add the filter.
March 31, 2021 at 7:14 pm
Well does the account running SQL Server have access to the filepath?
March 31, 2021 at 2:54 pm
You could do something like and filter as needed,
SELECT * FROM sys.dm_exec_requests er
INNER JOIN sys.dm_exec_sessions ses on er.session_id = ses.session_id
CROSS APPLY sys.dm_exec_sql_text(er.sql_handle) sql_text
March 31, 2021 at 2:43 pm
Hmm... you wouldn't put the pagination in the order by clause. The order by clause is used to define the result set then the pagination filters it.
March 19, 2021 at 4:01 pm
As a Data Architect I'm primarily focused on ETL in a MS stack. Official tools are pretty much just our 2 main ETL tools, we don't use SSIS, and some...
March 19, 2021 at 2:02 pm
Well if you make your categories broad enough then sure everyone will fit into a small number of categories. And in that case most companies will fit into some broad...
March 17, 2021 at 8:32 pm
Just the parts that would be impacted,
For the params, if you want to keep the date as a datetime to let powershell auto validate the format you'll need to check...
March 16, 2021 at 4:17 pm
Another option might be to default the parameters to wild cards and use -like instead of -eq in your comparisons since everything is strings.
Otherwise you're going to have to write...
March 16, 2021 at 2:01 pm
Well how are you deciding which conf code for each badge number to use?
March 16, 2021 at 1:26 pm
Viewing 15 posts - 256 through 270 (of 1,988 total)