Viewing 15 posts - 2,881 through 2,895 (of 59,067 total)
I just want to make sure we get this right. You're saying that you want to eliminate all book details for books that DO exist in the books table?
I just...
August 24, 2022 at 7:14 pm
How to get records for the first 15 days of the month. please suggest
WHERE OrderDate<=DATEADD(day, 15, GetDate())
Phil's code works perfectly if you can guarantee that the OrderDate column does...
August 24, 2022 at 6:20 pm
For now my goal is to fix my SSIS projects which are not giving the desired result.
I have no quantitative numbers on what I'm about to say but... I've...
August 24, 2022 at 5:29 pm
Also, check with the other Developers in the company. You should be checking your code into some form of source control. They should also have a "onboarding" process that lets...
August 24, 2022 at 5:01 pm
Jeff, format date is not the issue.
If you are willing to waste your time, do it on the real problem, the variable is the issue.
DECLARE @todays AS VARCHAR(20) SELECT...
August 24, 2022 at 2:55 am
Hi, this is what I am trying to do,
DECLARE @todays AS VARCHAR(20) SELECT @todays = format(cast(getdate() as date),'yyyyMMdd')
EXEC xp_cmdshell 'copy C:\Test\@todays\ *.* C:\Newtest\';
But, I can figure out the syntax...
August 23, 2022 at 8:09 pm
Thanks for your reply Phil, Someone suggested PIVOT would do this, so I was trying to figure out how to do that. While this would be the answer if...
August 23, 2022 at 8:04 pm
Why not just create a stored procedure to produce the data and have Excel pull the data on demand? That way, you don't end up creating files for a bazillion...
August 23, 2022 at 3:38 pm
Jeff, why do you think deadlocks could be an issue?
It was a suggestion based on previous experience that was meant to prompt you into checking for them. That worked. ...
August 23, 2022 at 1:56 am
Awesome news about the Substring parameters. And, I've not run it but it looks like your @SmearStart will likely do the trick.
All of that and your previous column additions means...
August 23, 2022 at 1:41 am
I was able to resolve the issue i just deleted the date filter in the where clause.
Have you taken a look at your execution plan since you've done that?
August 23, 2022 at 1:37 am
But in a general sense, am more frustrated by the drive to add new 'Big' features, rather than perfect what we have.
That's one of my biggest frustrations with Microsoft.
[quote-1...
August 23, 2022 at 1:29 am
Have a look at the following article to support such "Dynamic CrossTabs". Use MAX() instead of SUM() like Scott Pletcher did. With the understanding that I have little love for...
August 22, 2022 at 5:03 pm
Thanks Jeffrey, do you have a link you can refer me to?
It's part of the windows operating system. Just Google it.
August 22, 2022 at 4:56 pm
Viewing 15 posts - 2,881 through 2,895 (of 59,067 total)