Viewing 15 posts - 8,881 through 8,895 (of 13,461 total)
i've done something similar two differnet ways; i ended up making an application because i had more control;
you can get a list of servers several ways, form osql to using...
August 24, 2010 at 12:24 pm
the devil is in the details, so "it depends"
this:
/*
DO SOME SQL LOGIC
*/
depedning on what that is doing, or going to do, you might not need a loop or tally table...
August 24, 2010 at 6:19 am
show us the script you are using...are you tal\king into consderation non-standard database names?
ie select * from [My Database With Spaces Or a Reserved Word].dbo.sys.objects?
August 23, 2010 at 11:27 am
you have to define a table with the proper columns before you call the procedure.
if your proc, which is using dynamic sql, returns a different number of columns depending on...
August 23, 2010 at 10:03 am
that would limit all connections, whether from your web app or form Management Studio; remember your web server will try too pool connections, so it'll be reusing some of...
August 23, 2010 at 9:03 am
Denesh Naidoo (8/23/2010)
Working on SQL Server 2005.
Have a query that has a WHERE clause as follows:
WHERE (Documents.Flags & 0x18)=0
Can someone please explain the & 0x18 part which I have...
August 23, 2010 at 7:48 am
monietamarind (8/23/2010)
August 23, 2010 at 7:31 am
Parthi i mentioned before that while you can use CAST and CONVERT on the columns, it's best practice to stay within the same datatype by using DATE ADD/DATEDIFF functions;
when...
August 20, 2010 at 12:48 pm
VNC/Remote Desktop/ TeamViewer / PCAnywhere / GoToMyPC are desktop viewers,
you don't need that.
SQL Server Management Studio is the interface of choice and is backwards compatibile, and can connect to ...
August 20, 2010 at 12:09 pm
ny66 (8/20/2010)
havent gotten that far yet on the insert into, need to get the syntax together prior to creating the new table.
it's pretty basic:
--get just the data we need to...
August 20, 2010 at 12:05 pm
ricardo_chicas (8/20/2010)
what I really want to know is for a suggestion on what is the best way to retrieve large amount of...
August 20, 2010 at 11:32 am
newbieuser (8/20/2010)
I'm creating an application role, the password for the role should be read from a table. Is it possible to do this?
The table need to...
August 20, 2010 at 11:21 am
Lowell (8/17/2010)
can you post the example data as an actual INSERT INTO query?(don't paste my example back...that already worked correctly)
chopping stuff up with substrings not hard to do...but we need...
August 20, 2010 at 11:04 am
ouch; Steve's analysis is right on....it'll be tough to determine what changed and what should be kept, especially if competing applications used two different databases at the same time.
Lesson i...
August 20, 2010 at 10:26 am
sharp analysis drew... i would not have inferred the regional settings affecting the implicit conversion.
here's my version of the procedure, which seems to return the data with seconds:
CREATE FUNCTION [dbo].[fn_JulianDateConversion](@JulianDate...
August 20, 2010 at 10:14 am
Viewing 15 posts - 8,881 through 8,895 (of 13,461 total)