Viewing 15 posts - 16 through 30 (of 14,952 total)
Either the image you installed from is seriously messed up (not likely), or it's a coincidence and something else was being done at the same time.
July 13, 2016 at 7:15 am
Have you tried running the command in the command-prompt directly? As opposed to through xp_cmdshell, I mean.
July 12, 2016 at 1:42 pm
NVARCHAR won't hold RTF files, just the text. I would expect VARBINARY instead of IMAGE, for RTF files.
July 12, 2016 at 1:33 pm
mcfarlandparkway (7/11/2016)
Where I have to search for sql extended events or trace in management studio?I never used it before.
I use Bing, because I'm strange, but most people use Google.
July 11, 2016 at 1:39 pm
You can trace events in a database, even at the table level. Use either a trace, or (better) extended events. (Search for "sql extended events" to find out...
July 11, 2016 at 10:45 am
I've used OpenRowset for exactly that. But the automation executes as an AD credential that's in a group with the needed permissions. Simpler that way, in my opinion.
Are...
July 11, 2016 at 9:32 am
Second-the-motion on Gale's suggestion. Script objects, import data. Don't script data.
July 7, 2016 at 8:24 am
When you say "migrate", do you mean an in-place upgrade, a copy of a database to a new server, or something else?
July 7, 2016 at 8:22 am
Are you using something like Spotlight to monitor server health, etc? If not, then tools like that can take you a long ways in "service improvement".
July 7, 2016 at 8:21 am
If you use a Calendar table, you can query the rows in that, join them to your time parameters, and simply do either a join to your date-range table (Cross...
July 7, 2016 at 8:13 am
Try this:
CASE WHEN result.Pc_CrFCIC IN (52, 53) THEN result.Ip_Code ELSE 0 END,
CASE WHEN result.Pc_CrFCIC IN (52, 53) THEN 0 ELSE result.Ip_Code END DESC
It takes two statements. You can put...
July 7, 2016 at 8:07 am
You should be able to shrink the log files right after setting it to Simple.
Instead of Read_Only, I suggest setting it to Single_User With Rollback_Immediate. ALTER DATABASE mydb SET...
July 7, 2016 at 8:03 am
It looks to me like it's having to do an outer-reference for the aggregate in question, in order to resolve the sub-query. The other sub-query doesn't appear to do...
July 7, 2016 at 7:59 am
Is there a finite and definite list of all of the possible parameters?
If so, just list them all in the @params parameter and the Exec statement. If...
July 7, 2016 at 7:35 am
Viewing 15 posts - 16 through 30 (of 14,952 total)