Viewing 15 posts - 556 through 570 (of 1,988 total)
What's not ordering correctly? The query or when you select from the temp table?
September 26, 2018 at 2:52 pm
Man, do I agree with that! Renaming a schema is relatively easy compared...
September 26, 2018 at 8:44 am
September 26, 2018 at 7:42 am
September 25, 2018 at 10:29 am
Thanks for your prompt response.
If file is present in Linux server and SQL server...
September 25, 2018 at 9:12 am
September 25, 2018 at 8:35 am
This should be very straight forward in powershell.
$testy = @("C:\Test\test.txt", "C:\Test\st.txt")
If( (Test-Path $testy) -notcontains $false)
{
Move-Item $testy "C:\Test\Test\"
Write-Output "All found"
}
September 24, 2018 at 2:39 pm
You can also show the execution plans with and without the index.
September 21, 2018 at 11:09 am
September 21, 2018 at 10:44 am
No you shouldn't write code with just the goal of not failing test cases. For your personal tests you should be testing it enough to verify that it meets the...
September 20, 2018 at 1:38 pm
September 20, 2018 at 8:05 am
There's a few options, one and this might be easiest is just to wrap all your fields in " in the query or just stripping the commas out of the...
September 19, 2018 at 2:09 pm
And what are the rules you are using to derive those numbers for a specific user for a specific ticket?
September 19, 2018 at 9:01 am
The first step, you pray that whoever built it used somewhat intuitive names for tables columns and constraints.
September 18, 2018 at 9:05 am
Viewing 15 posts - 556 through 570 (of 1,988 total)