| Thread | Last Post | Replies |
|
| Does Bulk insert require SA???? | 29 Dec 2008 16:24 GMT | 2 |
Hello does Bulk Insert in SQL 2000 require SA rights? Is there any rights that I can provide for a user without giving them SA rights to my system? TIA
|
| Get firing DML of trigger? | 29 Dec 2008 16:11 GMT | 6 |
Okay... obviously this only applies to DML triggers, and not DDL or database triggers? Is there some way, in a trigger, that I can get the actual SQL DML statement which fired the trigger in the first place?
|
| sequence of numbers | 29 Dec 2008 15:36 GMT | 4 |
hey all, what's the best way to get a column of sequential numbers in a memorty table? for instance, 1, any data1
|
| Using GUIDs/UUIDs | 29 Dec 2008 14:58 GMT | 5 |
I'm writing a database to store and process sales data from Second Life (not my usual area, but since its the holidays, I figured I'd knock something together for a friend who apparently makes money selling their designs/builds there).
|
| Insert Permission in Tables | 29 Dec 2008 12:40 GMT | 4 |
Take a case a where user does not have insert access to a table T1, but user has stored procedure execute access. Can inserts be done to table T1 using the stored procedure? Can user be the owner of table T1 and still insert access can be
|
| isolation level problem | 29 Dec 2008 08:29 GMT | 4 |
In the place i work we user Read commeted transaction isolation level. I discovered that on that isolation level if two or more quries inserts data to the same table the first row that will commeted is the fastest one and not the one who started first.
|
| 2 different tables or just 1? | 29 Dec 2008 02:53 GMT | 20 |
I have 2 different types of data that is pretty much the same thing (live events and special events). The only difference between the 2 is that live events requires an address and special events does not. They hold the exact same data and everything. How should I manage this? ...
|
| Books on writing SP, triggers, UDF,... SQL 2005 | 29 Dec 2008 02:36 GMT | 2 |
Any suggestions on these programming?
|
| Using BETWEEN in a query | 29 Dec 2008 02:20 GMT | 1 |
How I use BETWEEN to query a table for orders placed between certain dates. I get an error that says cannot convert to smalldatetime if I do this: SELECT * FROM orders WHERE Datereceived between 20090101 AND 20080101 Thank you for your help.
|
| converting/casting NULL to empty string | 28 Dec 2008 23:52 GMT | 4 |
I'm trying to select something like the below: RRTT.TName + ' ' + ltrim(rtrim(app.AName)) problem i'm having is RRTT.TName is always populated but app.AName is not, there are times when it is NULL, but doing that select above is
|
| SP Best Practice | 28 Dec 2008 18:04 GMT | 2 |
I'm just getting to the point of moving some of my logic from the client program to the SQL Server. I'm beginning to write a few more "sophisticated" stored procedures. My intention below is to receive a component part, if the component part has a status anything else but "BH" ...
|
| need help on instead of update trigger | 28 Dec 2008 14:38 GMT | 3 |
I've been scratching my head on this one for a few hours now. I'm not quite sure what's the best way to handle this. SQL 2005 (and sql 2005 compatible db) but I have a column that I need to deal wiht in a trigger that is a TEXT type that I cannot change to
|
| Updating a table with an index issue | 28 Dec 2008 13:17 GMT | 5 |
The table I am trying to update has an index preventing the occurrence of duplicate values.The columns making up the index are "name","idspn" and "idcategory". I need to change all idcategory 1s to idcategory 11s as demonstrated by the sql below.
|
| XML Index decrease Performance | 27 Dec 2008 09:59 GMT | 1 |
I have a table with 16.5 K records with an XML field. In my select (group by, where, min) I use .value. my reference to the xml data is like: xmlField.value('(//errortime)[1]','datetime'))
|
| Query Notification In Sql2005 | 27 Dec 2008 09:58 GMT | 1 |
I want to know that how we use Stored procedure In Sample Of Query Notification . Or Can we use Stored procedure In Query Notification ?
|