Viewing 15 posts - 12,451 through 12,465 (of 13,465 total)
As i understand it, the database is it's own self contained unit, and doesn't have info about other instances that exist;
There's a few metadata functions, like SELECT @@SERVERNAME,@@SERVICENAME,@@VERSION ,...
September 12, 2007 at 1:13 pm
I'm curious as to why you think you need to update the system tables directly anyway. What are you trying to accomplish? there might be a better way to do...
September 12, 2007 at 10:28 am
because there is no central source which captures which servers exist, you can't really query it.
you can ask the operating system to poll all the servers that are advertising...
September 12, 2007 at 10:15 am
OK, if you look at the procedure, it's pretty much getting two values for each companyId: the sum(moneyamount) and the sum(number of shares)
you can get the same information from a...
September 12, 2007 at 8:32 am
the original function did not encode <> symbols as well as quotes and ampersands;
this is a little better; someone critque this function please:
ALTER FUNCTION HTMLEncode(@OriginalText VARCHAR(8000))
RETURNS VARCHAR(8000)
BEGIN
DECLARE...
September 12, 2007 at 7:54 am
ha!
once again, stealing/borrowing Jeff Modens example and running with it, here's a TSQL function:
--===== Create and populate a 100,000 row test table.
-- Column RowNum has a range of 1...
September 12, 2007 at 7:12 am
obviously you can do this on the application side, but not natively in TSQL...looks like you'd need a function.
I bet the .NET HTMLEncode and HTMLDecode functions would be perfect for...
September 12, 2007 at 6:43 am
As you suspect, no there's no surefire way to prevent anyone from connecting to a database and copying the schema, nor the data. I know you probably spent a lot...
September 12, 2007 at 5:53 am
I'm pretty sure \r is the row terminator for unix, and \n is the terminator for pc based text files. I've never used \n and \r together, that would be...
September 11, 2007 at 12:00 pm
here's an example that i based off of one of Jeff Modens examples...hey I'm learning:
there'sa huge advantage performance wise to use a tally or numbers table.
--Your Sample Table :
CREATE...
September 11, 2007 at 11:30 am
you are thinking about it wrong...you should create a new role that has db_datareader writes, and then any additional rights you want toa dd. don't try to change the existing...
September 10, 2007 at 12:02 pm
oops sorry i skimmed over that part.
SQL server will automatically use all availalble processors. if you had a 4 proc, but licensing for only two, you'd be out of compliance...
September 10, 2007 at 9:27 am
there's lots of links on microsoft on this;
licensing is per physical processor, not per virtual processor/core .
If the motherboard has a single socket in it, (if you could afford it)...
September 10, 2007 at 8:12 am
Assuming you have SQL server installed on your laptop, you should be able to open Query Analyzer, Press F8, which will open the object browser...find the database>> open the treeview...
September 6, 2007 at 5:56 am
won't make any difference as far as databases go.... they are backed up to a specific format for SQL 2005,a dn in a manner backwards compatible with non-service pack-ed 2005...
September 5, 2007 at 3:42 pm
Viewing 15 posts - 12,451 through 12,465 (of 13,465 total)