Viewing 15 posts - 61 through 75 (of 1,047 total)
Yes you would greatly benefit by moving the 'old' database over to your new server and modifying your views accordingly.
August 8, 2013 at 6:23 am
Well stated summation of what it takes to be successful in life.
August 5, 2013 at 8:36 am
Get the column names from sys.columns -- if it is a table it will have a row in sys.objects and one row for each column in sys.columns. Here's a...
August 2, 2013 at 8:54 am
insert the pivot into a temp table first, then select from that with you roll-up totals.
August 2, 2013 at 8:25 am
A global temp table IS a real table. The only thing different about a table that starts with # or ## is that it will be dropped when the...
August 2, 2013 at 6:39 am
Report it to Microsoft, sounds like a bug to me. Schedule a graceful server reboot.
August 1, 2013 at 12:25 pm
dzoll (8/1/2013)
Just a moment ago I came across the solution to my immediate problem: I had a few records with a blank send-to line. Deleting those cleared the problem up.
You...
August 1, 2013 at 6:54 am
Sounds to me like you have no good indexes on the mail queue (table) and so the query to find new records and the query to update the ones you...
August 1, 2013 at 6:44 am
As it stands there appears to be no definitive way to associate a row from table1 to table two. However, assuming you want it to be the order that they...
July 30, 2013 at 8:53 am
The native encryption methods in SQL server use a "randomizer" seed to make it difficult to infer values from a large set of values. That is why you are seeing...
July 26, 2013 at 1:03 pm
spaghettidba (7/25/2013)
I think that my only option is to keep using SQL Authentication and set up something to encrypt and secure my credentials.
Exactly. You could even use a stripped down...
July 25, 2013 at 11:00 am
If you think about, it has to work that way or impersonation would then have a huge security hole in it.
You should consider using a key server scenario (tier) to...
July 25, 2013 at 6:52 am
Lowell (7/23/2013)
it's going round and round to other table when it's not needed at all.
And... the OP said this trigger is on 35 other tables. :w00t:
July 23, 2013 at 1:22 pm
Yeah, there is something sort-of fishy about a design that would incorporate that kind of [il]logic in a trigger. But without seeing more information about this entire design there is...
July 23, 2013 at 12:55 pm
Besides wondering why this is being done in a trigger, I am wondering why this trigger is written in such a way as to assume that every insert is...
July 23, 2013 at 11:47 am
Viewing 15 posts - 61 through 75 (of 1,047 total)