Viewing 15 posts - 1,381 through 1,395 (of 13,445 total)
i was always under the impression that to downgrade, you have to uninstall and reinstall.
especially master and the hidden resource databases, which cannot be restored to any lower version service...
November 4, 2015 at 8:30 am
at my last place where we supported Oracle and SQL for an applications RDBMS, we had a specific set of rules to map equivalents structures at a table level. it...
November 3, 2015 at 7:50 am
typically, you look at at a specific table, and decide which specific columns need to be encrypted, either because they contain personally identifying information, health information, or sensitive info...
November 2, 2015 at 1:07 pm
after the bcp is created, you can call 7za.exe(the command line version of 7zip) to zip the file.
if you call it from xp_cmdshell, you are limited to one...
November 2, 2015 at 7:30 am
was this a question, or were you pointing folks to the solution to an issue you encountered?
November 2, 2015 at 5:23 am
we'd need more details to really help.
my research implies it's due to bad logic in the procedure:
when i googled "sql error 3621"
this link implied that the error was returned...
November 2, 2015 at 5:21 am
if ServerA is going to issue a command(s) on serverB, psexec must be installed on ServerA
also i believe on a per user basis, you need to call psexec at...
October 30, 2015 at 11:21 am
DDL triggers are great for tracking whodunnit info, but rolling back operations can have a performance impact, as you identified.
I think using a DDL trigger to prevent index operations is...
October 29, 2015 at 5:54 am
i do something very similar, but i rename the original table just in case, along with any indexes/constraints/defaults/foreign keys.
then rename the temp table, and it's indexes/constraints/defaults/foreign keys to match the...
October 28, 2015 at 1:30 pm
SQLPain (10/28/2015)
October 28, 2015 at 12:58 pm
Sergiy (10/27/2015)
And glitch in the functionality beyond SQL Server control may cause...
October 28, 2015 at 6:13 am
New persopn (10/27/2015)
Thanks for your information.Is there any query to capture the information like Type of Backup, Mode of Backup information in SQL server
Backups occur on a per database level,...
October 27, 2015 at 1:15 pm
New persopn (10/27/2015)
We are in the process of creating inventory, for that I need a query to capture the below information
HostName
InstanceName
Version
Edition
SQL Service Account
Region
Zone
Server Managed By
Storage Managed By
Backup Managed By
Type...
October 27, 2015 at 12:31 pm
here's one way to do it:
since i want to find the second slash, i know i can use charindex to start at char 4 in your path.
/*
X:\folder\anotherfolder\X:\folderX:\folder\yet another folder\X:\folderX:\foldername\another folder\X:\foldernameX:\foldername\yet...
October 26, 2015 at 11:35 am
in that case, the assumptions really incorrect.
an entire SQL Service listens to a specific port; on a default instance, the default port is 1433, but, yes, it can be...
October 26, 2015 at 11:04 am
Viewing 15 posts - 1,381 through 1,395 (of 13,445 total)