Viewing 15 posts - 331 through 345 (of 462 total)
Sachin Vaidya (10/9/2009)
I have a script written for SQL 2000 database which gets the information about objects like, tables, stored procedures, user defined data types etc. I am looking...
October 9, 2009 at 4:12 am
Chi Chi Cabron (10/8/2009)
My...
October 8, 2009 at 9:45 am
Each new query window that you open from client (SSMS) would also add an entry there. I dont think there is any problem with that!.Thanks.
October 8, 2009 at 9:28 am
Did you debug your clr proc, is it working fine? could be that there is some problem inside that?
October 8, 2009 at 8:18 am
ihd doubt in line i copy & past below
(tbl_LeaveStatistics.Granted - isnull(tbl_LeaveStatistics.AlreadyUsed,0) - @Leavedetails)...
October 7, 2009 at 1:39 pm
Most of your effort while doing an upgrade would go in testing! Get a dev/test environment (ss2k5) run upgrade advisor, test your application extensively, identify the problematic/pain areas(code), come up...
October 7, 2009 at 12:31 pm
sql server console meaning sql server management studio?
Can you copy paste the code that you are running which is giving you the error here?
October 7, 2009 at 8:11 am
Grant Fritchey (10/7/2009)
What about using VARCHAR(MAX) and use sp_executesql. According to BOL the @stmt parameter in sp_executesql is only limited by available memory.
Yeah, thats true! As per BOL,
varchar [...
October 7, 2009 at 7:51 am
@hitendra, providing data like below would get you answers quickly,
Drop table #A
Drop table #B
Create table #A(Aid int, ProductID int, ProdQty int, ProdBalanceQty int)
Create table #B(BdetID int, Bid...
October 7, 2009 at 7:23 am
Ian Scarlett (10/7/2009)
October 7, 2009 at 4:06 am
Is it throwing any error? which part of the code is not working? you are saying 'you can not insert the records into the second table' but I see you...
October 7, 2009 at 3:43 am
Just to add to what Elliott is saying, I guess you will have to convert the image file into bytes array and put it in memory stream and then update...
October 7, 2009 at 2:11 am
Just FYI, there was a discussion around similar problem I guess,
http://www.sqlservercentral.com/Forums/Topic795852-1291-1.aspx
October 6, 2009 at 1:01 pm
Sorry it could sound bit obvious but still, is employee and driver different entities? If not I would keep it in one table and put check constraint.
October 6, 2009 at 12:57 pm
Yes, I agree with Elliott. Dynamic sql should be the last resort for you. Thanks.
October 5, 2009 at 8:24 am
Viewing 15 posts - 331 through 345 (of 462 total)