Viewing 15 posts - 12,346 through 12,360 (of 13,461 total)
you could convert to int, which would be the number of days since the beginning of time(according to sql server that's 1900-01-01 00:00:00.000)
SELECT getdate(),CONVERT(int, GETDATE())
2007-10-03 23:07:05.640 ...
October 3, 2007 at 9:08 pm
you get a rows affected for every sql statement performed. that means select,update,insert or delete statements each return the rows affected.
sounds like you had either a cursor or loop that...
October 3, 2007 at 8:14 am
you cannot rename an instance, it has to be uninstalled and a new instance with the correct name needs to be created. that means backing up non-system databases, and then...
October 3, 2007 at 5:53 am
also, a DTS job is slower thant he time it takes to backup, copy and restore a database, as well as being prone to the changes you are seeing.
I'd recommend...
October 2, 2007 at 8:02 pm
the thing about color is that you MUST enter the double quotes to get it to work.
input = #0000FF is BAD
input = "#0000FF" is GOOD
October 2, 2007 at 7:51 pm
you are right....the actual permissions are stored inside the database, and not in any master table.
this is by design, so when you backup and resotre, the permissions for the objects...
October 2, 2007 at 11:41 am
it's handled automatically by the operating system;
you might have one nic that has an internal IP for your network, lets say 192.168.1.50
the other NIC might have an IP address on...
October 2, 2007 at 9:57 am
we had a similar issue in our shop...we needed to merge two databases together, with each table having different data, but possibly the same identity() values.
we had to build...
October 2, 2007 at 9:15 am
Jeff was just fiddling with it...add a reply, emails get sent, delete teh reply, the link in the email can't find the posted reply. expected behavior.
WHY he was testing, we...
October 2, 2007 at 8:07 am
Jeff Moden (10/1/2007)
1. How many internal rows will be...
October 2, 2007 at 7:00 am
this would give you the sample structure to test each column in a single pass...is that what you wanted, or did you want where an entire row was null?
select SUM(CASE...
October 2, 2007 at 4:54 am
from what i remember Clipper was just a Visual Foxpro, right? so it's simply a .DBF file you connect to using dts and import the whole thing:
Enterprise Manager, Select database...Right...
October 1, 2007 at 10:07 pm
you can restrict access to executables and such via NT permissions and Active directory.
Once connected, unless you restricted his access to some objects, he's pretty much got access right?
if he...
October 1, 2007 at 9:34 pm
creating and deleting replys, it looks like from my forum emails.
October 1, 2007 at 9:31 pm
Serg is right; what is your trigger doing? Is it calling a stored procedure or something ?Is it using spOACreate/xp_cmdshell? trying to email something? does it declare a variable? does...
October 1, 2007 at 9:30 pm
Viewing 15 posts - 12,346 through 12,360 (of 13,461 total)