Viewing 13 posts - 1 through 13 (of 13 total)
isnumeric(column name) to check whether the column has any numeric values in it.
May 26, 2010 at 12:42 pm
SELECT p1.CategoryId,
( SELECT ProductName + ','
...
March 5, 2010 at 9:12 am
Dude....Dont post any questions when you dont have time to Check back what you've posted......I'm here to help with some issues....and not to waste my time.....
March 5, 2010 at 9:00 am
Place the SQL Code in SP give input parameters if any....use SqlCommand, SqlConnection, Sql PArameters to exec SP and to pass Parameters in Visual Studio.....
March 5, 2010 at 8:42 am
What do you mean by modifying? Changing the columns you select or chang the logic, you can see the execution steps in execution plan along wid the time it takes...
March 4, 2010 at 3:36 pm
If the Pages in your application are accessing the Database.....u need to setup permissions to execute scripts on your Database..for that user...
March 4, 2010 at 12:44 pm
Express doesnt allow remote connections, so please check the requirement....as you can extract data from two tables into your application and you can use LINQ if you are using C#...
March 4, 2010 at 12:41 pm
try this:
SELECT convert(varchar(10),[yourdatecolumn],121) as Dateonly FROM dbo.v_all_tracking_table
March 4, 2010 at 12:38 pm
Run the query part ot the SP on production server and see the execution plan, this way you can see which part of your query is taking so much amount...
March 4, 2010 at 12:26 pm
sorry i've used table datatypes for your tables toavoid creating tables in my database
here is the code again
DECLARE @TEMPTABLE TABLE(USERID INT, USERNAME VARCHAR(MAX), TAGNAME VARCHAR(MAX), USERCOUNT INT)
INSERT INTO @TEMPTABLE
SELECT USERS.Id...
March 2, 2010 at 10:33 am
I THINK YOU CAN DO SOME FORMATTING.......ELSE JUST LET ME KNOW....nimbala29@gmail.com
March 2, 2010 at 10:17 am
HERE IS THE CODE, HAVE FUN :-):
DECLARE @TEMPTABLE TABLE(USERID INT, USERNAME VARCHAR(MAX), TAGNAME VARCHAR(MAX), USERCOUNT INT)
INSERT INTO @TEMPTABLE
SELECT USERS.Id AS USERID, USERS.FirstName +', '+USERS.LastName AS USERNAME,A.TagName , A.USERSCOUNT...
March 2, 2010 at 10:14 am
Viewing 13 posts - 1 through 13 (of 13 total)