Tagged Questions
The dbo tag has no wiki summary.
3
votes
1answer
71 views
SQL Alias vs dbo.prefix - query performance
Assuming you're using MS SQL Server:
Which of these queries will execute the fastest, and WHY?
I'm going to guess the last, as I'm thinking that Aliases are only resolved to their tables once?
...
2
votes
3answers
148 views
Is there a way to use a function on a Microsoft SQL Server Query without using “dbo.” before the function?
Thats the question, i want to call a User defined function without using "dbo." before the function name and parameters
in example:
Using:
SELECT USERFUNCTION(PARAM1,PARAM2,PARAM3,PARAMN)
...
2
votes
4answers
244 views
dbo in SqlServer
I'm converting database from Teradata to SqlServer. I've noticed all tables and procedures are named by the prefix "dbo." (e.g. "dbo.Table1").
I would like to know if and how I can get rid of "dbo" ...
2
votes
5answers
825 views
lu.[TableName] instead of dbo.[TableName]?
Some of the tables in my SQL Server 2005 database is named as lu.[TableName] instead of dbo.[TableName]. What does lu stand for?
Note: I tried google already
2
votes
3answers
531 views
DBO rights risk
I'm advising a friend who manages a SQL 2k5 box that has several users who have dbo access to multiple databases. The problem is:
These users haven't had their passwords changed for some months,
...
1
vote
1answer
255 views
pdo prepared statement insert DEFAULT when the variable in BindParam is null. I tried: IFNULL or COALESCE
I have this problem:
I'm using PDO prepared statement....
I want to BIND a variable BUT if the variable is NULL it have to INSERT in MYSQL the DEFAULT VALUE of the field...
I'm trying with
...
1
vote
1answer
105 views
Creating tables and queries with dbo as owner on a shared SQL Server?
I'm developing a database that would eventually live on a shared SQL Server 2008 database on the host machine (at hosting provider). I noticed that all the tables and queries are owned by the dbo. I ...
1
vote
1answer
465 views
Assign role of db_denydatawriter to user dbo
When I try to do this I receive the following error message:
Add member failed for DatabaseRole 'db_denydatawriter'. (Microsoft.SqlServer.Smo)
ADDITIONAL INFORMATION:
An exception occurred ...
1
vote
2answers
177 views
SQL Server 2000 - Programmatically Limit Access to Database Owner?
How would I programmatically go about limiting the access of a database in SQL Server 2000 to the database owner for that database? Example... if I right-click "Properties" on the "Northwind" database ...
1
vote
1answer
484 views
How to check if I'm currently the database owner for SQL 2000/2005/2008
I can't remember how to do this in a TSQL query. It was a one-liner, good for testing before running DML. The query was something similar to SELECT IS_DBO() or SELECT IS(DBO).
1
vote
6answers
391 views
What harm can DBO do to a server?
Aside from executing XP_CmdShell, which I have disabled in my SQL 2005 installation, what could a malicious user who gains DBO rights to my database do:
to my database,
to my server?
I'm assessing ...
0
votes
1answer
134 views
Why can't a user create tables in a database (they own) with a script? SP permission issue perhaps?
I granted a user permission to create databases. They were able to create a database, which they now own, but they are getting errors when running a script to create the tables. I don't have a lot ...
0
votes
2answers
233 views
How do I create an OLEDB table with the column named “DATE”?
We're using the Microsoft Jet OLEDB provider to insert data into a legacy system.
This system requires that we insert data by creating a DBF file, which has the format of:
employee Numeric (10,0),
...
0
votes
1answer
215 views
cakephp with oracle: no group by?
Greetings,
I'm trying to use the 'group' parameter for a find using CakePHP.
The dbms is oracle and to my surprise it didn't work (no group by in the query).
Example:
...