Viewing 15 posts - 736 through 750 (of 1,346 total)
Interesting, This article is the third item in the list on the home page.
Give er a read.
cheers
http://www.sqlservercentral.com/columnists/dasanka/callingcomfromtsql.asp
November 1, 2005 at 2:58 pm
Size of db is reported using this system stored procedure
sp_helpdb
There are several ways to shrink a db, check books online for
DBCC SHRINKDATABASE
dbcc shrinkfile
A log file is an integral part...
November 1, 2005 at 9:15 am
Look for information_schema in books online.
It describes how you can get to that data using microsoft created logical views.
such as information_schema.columns.
select *
from information_schema.columns
where table_Name = 'mytable'
GL
October 31, 2005 at 4:18 pm
I'm not exactly sure what your asking.
Are you using query analyzer?
Unless you are creating derived/calculated columns, you should be able to see the headings.
October 31, 2005 at 4:10 pm
select userID, username, groupName
from tbl_users U
Inner join tbl_group_memberships gm on U.ID = gm.userID
inner join tbl_groups G on gm.GroupID = G.ID
order by username
if a user belongs to many groups you will have 1...
October 31, 2005 at 4:07 pm
or
if your in query analzyer, select the database your working in on the top of the app.
Or in query analyzer
use Mydatabasename
Select *
from mytable
October 28, 2005 at 4:55 pm
The addition of another ndf file will only be benefitted by putting that new file on a separate drive.
DB size is limited by the space on the disk. but at some point...
October 28, 2005 at 4:53 pm
What do you mean set up variables?
And when records are inserted into table1, how do you know there are new records in table 2?
Is ther some kind of relationship between...
October 28, 2005 at 2:01 pm
The reason its slow is because by using a wildcard in the beginning of the string eliminates all chance of using an index to eliminate any candidate rows.
Full text indexing...
October 28, 2005 at 1:48 pm
What username are you typing? Are you a member of DBO, and are all the tables created with an owner of DBO?
usernames as owners are there for a reason. From...
October 28, 2005 at 10:01 am
Nice, an advertisment article, the link at the bottom doesn't even work.
October 28, 2005 at 9:39 am
I'm surprised you'd come in here and ask a completely vague question and expect us to do all the legwork for you.
your initial question was fine
"Can anyone recommend a website...
October 27, 2005 at 3:16 pm
Sounds like a poor way to solve the problem.
Data integrity will be a major issue for this type of solution
What if a user creates a record for the wrong department?
You...
October 27, 2005 at 3:11 pm
I'll tell U if you hire me.
Try searching for and reading up on SQL DMO
October 27, 2005 at 3:03 pm
Viewing 15 posts - 736 through 750 (of 1,346 total)