Viewing 15 posts - 301 through 315 (of 653 total)
Sachin,
If you had finished the MCDBA course you would be eligible for one upgrade exam. But as it is, you will probably have to sit for all the exams in...
July 5, 2007 at 2:24 am
CREATE TABLE myTable(Document varbinary(max)) GO
INSERT INTO myTable(Document) SELECT * FROM OPENROWSET(BULK N'C:\Image1.jpg', SINGLE_BLOB) AS Document
GO
July 3, 2007 at 4:48 pm
the one that got me chuckling was the Star Wars variable names...
July 3, 2007 at 10:09 am
hope you guys will be around for even longer to share your knowledge
July 3, 2007 at 2:34 am
talking about "experts", one of the them advised a client to use floats on monetary columns, instead of using the more intuitive MONEY datatype.
June 30, 2007 at 11:09 am
June 29, 2007 at 4:34 pm
intresting idea. i think this is possible, try using the Visual Studio Add in project template
June 29, 2007 at 4:26 pm
put this statement at the top of your query
SET NOCOUNT OFF;
June 29, 2007 at 3:59 pm
try this in your connection string
connectionString="server=XXXXX;Initial Catalog=DBName;UID=XXXXX;PWD=XXXXXX"
if you are using windows authentication, ensure that the user that runs the IIS process has access to the sql server,
June 29, 2007 at 3:56 pm
read this article it will help you understand
http://www.sqlservercentral.com/columnists/mcoles/fourrulesfornulls.asp
June 29, 2007 at 10:07 am
quick and dirty, run your script in the query windows as you are doing, then do into SSMS right click > Design
drag you column to the position you want,...
June 29, 2007 at 10:04 am
you can use replicated databases, i think they are better than trying to connect directly unless if you have super efficient connections
June 29, 2007 at 9:57 am
what do you mean by hasty approach, your aim is to return all the columns as one column so that you can assign them to your variable. did you get...
June 29, 2007 at 8:44 am
Viewing 15 posts - 301 through 315 (of 653 total)