| Thread | Last Post | Replies |
|
| Help | 15 Jul 2008 11:44 GMT | 3 |
Declare @var varchar(200) SET @var = 'varchar1,varchar10,varchar15' But i want like this @var = varchar,varchar,varchar any one help on this
|
| SQL 2005 Jobs | 15 Jul 2008 08:08 GMT | 2 |
I want to explore the properties of an existing job by going to Management Sutdo ->SQL Server Agent -> Jobs Right click one of the jobs and select 'Properties'
|
| Return the indexed word from a full text catalog | 15 Jul 2008 06:20 GMT | 1 |
Is there a way where I also can return the indexed word similar to the way we can get the Key and Rank? Thanks in advance Christian
|
| Inserting Excel data into SQL Server | 15 Jul 2008 05:05 GMT | 1 |
I have an auto generated excel file(.xlsx) in a particular format . I tried importing the file to the SQL server database using the query below. SELECT * INTO temp_ExcelData2 FROM OPENROWSET('Microsoft.ACE.OLEDB.
|
| script to drop/add FKs | 15 Jul 2008 03:20 GMT | 2 |
What are people using to generate scripts to drop/add all FKs referencing a table ? Thanks.
|
| How get data returned by Stored Procedure ? | 14 Jul 2008 23:56 GMT | 3 |
In my calling stored procedure how do I access the recordset returned by another stored procedure that I call? I know how to retrieve output parameters but how do I retrieve a recordset? Does it make any difference if I know only one record will be returned?
|
| How To Change a Live Clustered Index Without Blocking | 14 Jul 2008 21:47 GMT | 13 |
Anyone who has been following my tribulation with a particularly sticky query might not be surprised to see this post. I am now in the position where I want to update a live system by exchanging one clustered index for another, on a table that gets several updates per
|
| Using a temp table in dtspackage | 14 Jul 2008 21:45 GMT | 2 |
I would like to be able to run a query based on joining a temp table with an existing table and export the result using dts. I select the " use query to specify the data to transfer" and paste the sql in
|
| How to optimize "Inserted Scan" in trigger code | 14 Jul 2008 20:51 GMT | 9 |
We're pulling values from a the "inserted" table that is created in an insert trigger. When we do an insert and view the execution plan in Query Analyzer, the "Inserted Scan" accounts for 98% of the entire query cost. How can this be optimized? There is very little
|
| CopyDatabase wizard | 14 Jul 2008 18:42 GMT | 2 |
hey all, i'm doing a copydatabase on my producation to create a test database. Once this is done do I need to modify anything on the new test database to make sure I'm not affecting the producation database in anyway?
|
| Defining a decimal data type in a temporary table | 14 Jul 2008 17:19 GMT | 3 |
I have a sql server table where a field (e.g.) field1 has length 9 and is of datatype decimal with precision 18 and scale 8 (I am getting this value from design view of sql server table). Now I need to create a temporary table in sql server stored procedure. The
|
| unsigned int... | 14 Jul 2008 17:15 GMT | 7 |
Am I correct in saying that SQL Server does not support an unsigned integer variable? If that is so, then I am curious why they would not. I can see uses for it and support exists for unsigned ints in the .NET environment.
|
| Decimal datatype is outputting integer values | 14 Jul 2008 16:37 GMT | 3 |
I am in the process of building a stored procedure. Some of the datatype are decimals which corresponds to table field types. I am using a temptable to store intermediate values. When I am executing this stored procedure and getting the output from the temp table the values are ...
|
| Will the batch insert fail if some records already exists? | 14 Jul 2008 16:11 GMT | 7 |
I have a table with composite primary key. I created a long stored procedure that batch insert some records into the table based on some checking condition.
|
| enum in sql | 14 Jul 2008 16:02 GMT | 16 |
In C# [Flags] private enum Action {
|