Viewing 15 posts - 46 through 60 (of 93 total)
No reason to be desappointed. In SSMS click on View then Solution Explorer. Then Add your other solutions.
April 27, 2007 at 6:54 am
No reason to be scared. What you are seeing and posted is just the the CREATE script for the view. The main part of it is the SELECT TOP 100...GROUP...ORDER...
April 27, 2007 at 6:43 am
Can you insert into a temp table first with that field being 80 chars and then truncate field width in another insert to LIVE data. I know it sucks, but...
April 26, 2007 at 1:09 pm
Francis, lets assume
1) Import table is tbl_IMPORT which is a cross-reference table containing information on products and one of the fields is ProdID, and NewProdName is the new name
2) The...
April 26, 2007 at 1:00 pm
Lets see if this will help.
use the SUBSTRING(input_str,12,len(input_string)) function to return the rest of the input string. The put the result string in a WHILE loop to find, count, parse...
April 26, 2007 at 12:49 pm
You are out of luck using the EXCEPT which works beautifully in SQL2005 for your case. However, T-SQL suggested above also works for SQL-2000.
April 26, 2007 at 12:25 pm
Guys, I really don't know what the final type of the result should be but this is what I do:
select
convert(varchar
April 26, 2007 at 11:58 am
If you have access to the Oracle Server, meaning credentials and at least SELECT rights, create a Linked Server to the Oracle database and you will be able to query...
April 25, 2007 at 10:53 am
You may want to play with the EXCEPT AND INTERSECT
select
* from table_1
select
*
April 25, 2007 at 10:34 am
Here is another similar approach. By the way, you are not alone on this journey to CROSSTAB queries in MS T-SQL.
April 24, 2007 at 6:04 am
Here is a sample SP someone wrote on this forum a couple of weeks ago, probably more. I think it works out of the Northwind Sample Db.
I hope you can...
April 24, 2007 at 5:58 am
This is what I have. Am I right?.
SELECT
a.data_date
,count(case when serv1 = 'N' and serv2 = 'Y' then cust_id else null end) as from1to2
,count(case when serv1 = 'N' and serv3 =...
April 19, 2007 at 12:02 pm
go ahead and buy the off the shelf e-commerce solution and make sure you can see all the objects, like SPs code and views and so on.
Then create your app...
April 13, 2007 at 8:17 am
Try this:
select
distinct(obj.name) as tableName
,obj.type_desc
,
April 13, 2007 at 7:52 am
April 11, 2007 at 11:33 am
Viewing 15 posts - 46 through 60 (of 93 total)