Viewing 15 posts - 1,231 through 1,245 (of 13,446 total)
this almost sounds like ID_NUM is a foreign key, and you want to render the details inline in the table; why not just create a view that pulls the data...
March 1, 2016 at 11:03 am
i believe you'll get an error if the column doesn't' exist, right? physical_memory_in_bytes vs physical_memory_kb
i've done it with an exec command instead;
IF (SELECT CONVERT(MONEY,LEFT(CONVERT(VARCHAR,SERVERPROPERTY('productversion')),CHARINDEX('.',CONVERT(VARCHAR,SERVERPROPERTY('productversion')))))) >=11
BEGIN
SET @cmd = 'UPDATE...
February 29, 2016 at 6:56 pm
ocean3300 (2/29/2016)
Grant Fritchey (2/29/2016)
February 29, 2016 at 1:20 pm
Eddie that got me over the logjam, thanks;
grabbing the object_name you mentioned, and adding some new smart parsing to my email that shreds xml to get that object name in...
February 29, 2016 at 11:53 am
for a lot of my trigger or procedure based audits, i don't limit myself; i just log everything, since you never know what might be relevant later.
I add columns for...
February 29, 2016 at 10:02 am
sri2015 (2/29/2016)
1) how the SQL Server detects Bulk Operations ?
2) I did put SQL Server database in Bulk Logged recovery model and started to...
February 29, 2016 at 9:54 am
one of the things i slapped together is a procedure i can call on demand, which grabs whatever is running via sp_whoisactive every 2 seconds, for speedy adhoc monitoring.
it creates...
February 26, 2016 at 4:35 pm
when it happens, can you run sp_whoisactive or at least sp_who2 and see if there is blocking? I'd look to one instance locking a core table, and all the other...
February 26, 2016 at 4:26 pm
i would do it similar to the way Luis is: remove ALL leading zeros by converting to decimal, and then add as many zeros as needed to make it a...
February 26, 2016 at 11:08 am
in South Florida, most of the SQL related groups are using meetup to organize and publish when there next event is:
this is my local group, for example:
http://www.meetup.com/South-Florida-SQL-Server-User-Group/; Diana Betancourt...
February 26, 2016 at 6:31 am
i think you have to set the 64bitruntime to false, right? otherwise no debugging/no data viewers?
February 25, 2016 at 10:10 am
i think this is an application error, that has nothing to do with the data; might have something to do with permissions, though.
how are you going into pwd destination? could...
February 25, 2016 at 9:58 am
SQL!$@w$0ME (2/25/2016)
Need to setup alerts to different groups on table insert on different criteria.
data on insert is probably going to be an insert trigger on the table itself.
Since database mail...
February 25, 2016 at 8:20 am
Viewing 15 posts - 1,231 through 1,245 (of 13,446 total)