Viewing 15 posts - 46 through 60 (of 1,131 total)
I do this in an Database Managing tool i can do it by klicking in and chang the value.
Are you sure? When I try to use SSMS to...
October 19, 2010 at 7:59 am
Instead of having BusinessId_BusinessMember and BusinessId_BusinessGroup in the BusinessGroupMember table, couldn't I just have BusinessId in BusinessGroupMember table and use that column as part of the foreign key to...
October 19, 2010 at 5:10 am
The message 'Msg 8152, Level 16, State 14, Line 3 String or binary data would be truncated.
The statement has been terminated." is caused by the value attempting to be inserted/updated...
October 19, 2010 at 4:58 am
If you collation is Case Insensitive, then to only update rows when values would have changed, the SQL needs to cast to a Case Sensitive collation:
AND CAST( Import_Data_Fixed.LocationMixed as varchar(100)...
October 18, 2010 at 2:44 pm
SQL Server available encryption functions do not include SHA2 or SHA256
Available are DES, Triple DES, TRIPLE_DES_3KEY, RC2, RC4, 128-bit RC4, DESX, 128-bit AES, 192-bit AES, and 256-bit AES.
October 18, 2010 at 2:14 pm
Perhaps I am missing something but what is wrong with a solution that has no cursors, whiles or UDFs ?
use tempdb
go
Create Table Import_Data_Filter (MyID Int Identity(1,1) NOT NULL, Location varchar(100))
GO
Insert...
October 18, 2010 at 2:00 pm
It depends if what you have listed as the "_pk" columns. If these single columns, then yes, this is a circular reference and can be a problem since declarative...
October 17, 2010 at 6:37 am
In order to avoid loss of information, all literals need to be prefixed with N and all variables need to be defined as nchar, nvarchar and ntext. Variables includes...
October 11, 2010 at 5:07 am
You seem too have two requirements:
1) Update all “Part Price xx” fields in the “Products” table.
2) Report all “Part No xx” that do not exist in the master parts file
Suggest...
October 10, 2010 at 7:06 pm
The TargetServersRole role is defined with deny execute on procedure sp_start_job and as deny overrides any grants on the procedure from all other roles, a user with TargetServersRole cannot start...
October 8, 2010 at 4:12 am
Will that work if the current drives are 100% full?
There are some constraints with the solution:
1. The second transaction log needs to be on a different drive that...
September 16, 2010 at 11:27 am
The simpliest solution is to add a additional log file on another drive, backup the log, shrink the first log file and then remove the additional log file. Here...
September 15, 2010 at 6:48 pm
Perhaps the drive partitions housing the tempdb files are not aligned? See "Disk Partition Alignment Best Practices for SQL Server" at http://msdn.microsoft.com/en-us/library/dd758814(SQL.100).aspx
August 16, 2010 at 12:15 pm
If SQL Server is running on a Cluster and certain other conditions apply, such as VPN, then this is a known bug.
August 6, 2010 at 11:00 am
Using the IP address, the source domain can be determined from the 'American Registry from Internet Numbers" at URL https://ws.arin.net/whois/ or http://wq.apnic.net/apnic-bin/whois.pl
The four IP addresses are...
July 16, 2010 at 6:06 am
Viewing 15 posts - 46 through 60 (of 1,131 total)