Viewing 15 posts - 3,991 through 4,005 (of 13,462 total)
from another post very similar to yours, i created this trigger to create a role if it doesn't exist;
it SEEMS to work in my limited testing then and now:
note this...
February 15, 2013 at 1:21 pm
ok, in that case, it might be that the tempdb is running out of space or something for the import wizards process?
i'd still recommend backup and resotre over the copy...
February 15, 2013 at 12:07 pm
you cannot copy the mdf/ldf data files themselves unless the sql server is actually stopped; otherwise you get corrupted files.
you cannot replace a server's existing databases if the server is...
February 15, 2013 at 12:04 pm
and a simple cross apply example:
with myCTE(val)
AS
(
SELECT 'Heavy rains that fell across the Upper Mississipp' UNION ALL
SELECT 'i River Basin in the summer of 2007 were responsi' UNION ALL
SELECT 'ble...
February 15, 2013 at 9:40 am
there are multiple .NET frameworks, and they are side by side installations, not upgrades from previous; so you need each version to support various functionality that use each framework.
my developer...
February 15, 2013 at 9:31 am
this book has a few pages on renaming both the sa/administrator login and the guest account:
February 15, 2013 at 9:15 am
take a look at this thread; it can help you find the ascii code of the unseen character(s)
;
from there, you can decide whether you want to replace it or whatever:
there's...
February 15, 2013 at 6:11 am
take a look at this thread; it can help you find the ascii code of the unseen character(s)
;
from there, you can decide whether you want to replace it or whatever:
there's...
February 15, 2013 at 6:09 am
another possibility that seems fast and easy would be to select one days data into a new table, do sp_spaceused , and then drop that table.
then you could get the...
February 14, 2013 at 10:49 am
Kwisatz78 (2/14/2013)
February 14, 2013 at 8:12 am
what does your connection string look like?
are you putting servername-comma-port in the connection string? i know it's common for people to use a semicolon by mistake.
for example
Private Const...
February 14, 2013 at 7:03 am
uggh; looks like you are doing something in a trigger(inserting/updating into another server?) that should be done in a service broker, or a schedule job that would do...
February 14, 2013 at 6:30 am
I'd blame the application that might be inserting rows into the table; chances are the code is inserting a default of zero from the application, which is outside of the...
February 13, 2013 at 8:22 am
not sure about the trigger being what you want to do or not...
it should be an instead of trigger and not a FOR/AFTER trigger, i think
a float cannot have an...
February 13, 2013 at 7:40 am
jpomfret7 (2/13/2013)
I'm looking for a tool that would allow me to group objects together and assign permissions based on those groups. Such as Joe gets rights to all...
February 13, 2013 at 7:35 am
Viewing 15 posts - 3,991 through 4,005 (of 13,462 total)