Viewing 15 posts - 106 through 120 (of 984 total)
You have a problem with a project file, so are asking how to fix MSSQL server files?
<head/desk> despair at spammer uselessness...
June 12, 2018 at 4:05 am
Yes, but you will need several clicks to do it...
In SSMS, navigate to your database.
Right-click, and, in the popup menu, go to Tasks, then "Generate Scripts".
June 8, 2018 at 5:26 am
You've got a field "TRANSACTION_TIME" as a date/time field - fair enough. But also a field "TRANSACTION_DATE" as a varchar(900)?
June 6, 2018 at 11:26 am
Break the job into smaller steps. Do a day (or an hour) at a time. Script it so that it runs without intervention overnight.
June 6, 2018 at 9:03 am
June 1, 2018 at 2:31 am
If you change the 'FOR XML' part of your query to look like this:
FOR XML PATH (''), TYPE).value('.','varchar(max)')
you may find what you're looking for.
May 29, 2018 at 7:03 am
Those table names look horribly familiar...
May 29, 2018 at 6:58 am
What can you see in the windows error logs, or in the SQL Server installation logs (in C:\Program Files\Microsoft SQL Server\140\Setup Bootstrap\Log)?
May 29, 2018 at 4:43 am
CHECKSUM(NEWID()) is a way of generating a random number. There are...issues with the T-SQL RAND function that can be illustrated with the following:
DECLARE @t...
May 29, 2018 at 4:38 am
What you're looking for might be something like:
ORDER BY CASE WHEN i <= 3 THEN 0 ELSE 1 END, CASE WHEN i <= 3 THEN...
May 29, 2018 at 2:52 am
Jeff Moden - Thursday, May 24, 2018 3:33 PMNo problem...
Wait. I know this one. It's about multiple tempdb...
May 25, 2018 at 8:45 am
Yeah if you are spending several hours a week because of format then...
May 25, 2018 at 5:20 am
May 24, 2018 at 4:02 am
May 24, 2018 at 3:29 am
Viewing 15 posts - 106 through 120 (of 984 total)