| Thread | Last Post | Replies |
|
| Joining two tables after manipulating a field | 18 Jul 2008 16:10 GMT | 6 |
Hi I have say table A and table B Table A has the following data. proj_num contact_name contact_phone 05-0001-00 Sam Eaton 111-1111
|
| OPENROWSET not working on one cluster node | 18 Jul 2008 15:41 GMT | 7 |
insert into OPENROWSET('Microsoft.Jet.OLEDB.4.0', 'Excel 8.0;Database=Z:\FILE\FILE.XLS;HDR=YES', 'SELECT * FROM [Country$]') select registrantid, firstname, lastname, title, company,address,
|
| Question on triggers for our audit tables | 18 Jul 2008 15:18 GMT | 13 |
We have several versions of our database: OurDatabaseDev OurDatabaseQA OurDatabaseUAT
|
| Columns returned from Stored Procedure | 18 Jul 2008 14:57 GMT | 3 |
Is it possible to get metadata about columns returned by a strored procedure in much the same way as you would from syscolumns? the info im interested in is Ordinal
|
| Stored proc issue after converting from Sql Server 2000 to 2005. | 18 Jul 2008 14:28 GMT | 2 |
I recently converted a Sql Server 2000 database to 2005 (using the copy database method). After conversion, all of the stored procedures executed just as they had before . . . no problems. I have run the following issue, however . . .
|
| Script to generate SQL Agent jobs. | 18 Jul 2008 14:14 GMT | 7 |
Anybody know of a script that generate all of the jobs for SQL Agent? TIA - Jeff.
|
| ADO Command parameterized queries | 18 Jul 2008 13:01 GMT | 42 |
For something that Microsoft, and the world, wants me to do, they sure make it difficult to figure out how. i want to use paramaterized queries with a command object against SQL Server.
|
| Convert datetime | 18 Jul 2008 12:48 GMT | 1 |
How do I take a datetime from an SQL table and convert it to the format dd/mm/yyyy hh:mm? I have tried this but it doesn't work : convert(datetime, dbdate, 103)
|
| SQL Injection Issues-Thought I had this fixed | 18 Jul 2008 12:43 GMT | 20 |
My sites are using Classic ASP and got hit by the original SQL Injection attacks awhile ago. I changed all my scripts that allowed members to login to our website, to use Stored Procedures, instead of the normal select statements that are easily hacked.
|
| A job to script out Tables and prosedures. | 18 Jul 2008 11:12 GMT | 1 |
We do have a lot of DB's on our server. This is a copy of customer DB's with Test data, but customized tables and prosedyres. We do take a standard database backup of thes every day, but the data it self is of no importanse. To reduse size we wonder if there is a way of automatic ...
|
| Count ussing a column in the same table | 18 Jul 2008 10:15 GMT | 3 |
Here you will find what I need --------------------------------------------- Name Region No_Customers No_Names ---------------------------------------------
|
| Retive username / machine name | 18 Jul 2008 10:11 GMT | 6 |
How can i retirve information as follows : 1. User name who execute an sql statement. 2. machine name (on which machine sql statement execute). 3. is sql statement execute by directly by management studio/ qa or an
|
| Creating parameterized query in SSIS package | 18 Jul 2008 09:34 GMT | 7 |
I have created a query to run in a .dtsx package. I would like to parameterize it so that a user can input a value via the Execute Utility dialog when the .dtsx package is double-clicked. Any info would be appreciated!
|
| SQL Statement to combine 2 records into 1 row. | 18 Jul 2008 06:37 GMT | 3 |
Not very sure how to explain this. but perhaps with my illustration, you guys will be able to understand. Record stored in table StaffID Date / Time Status
|
| Getting the opposite of a join table | 18 Jul 2008 01:57 GMT | 9 |
I need to find out what relationships do NOT exist in a join table -- employee table create table #E (emp int) insert into #E (emp) values (1)
|