Viewing 15 posts - 11,341 through 11,355 (of 26,486 total)
Nagaram (6/13/2012)
In my sample data TECH_MODE field have value...
June 13, 2012 at 9:56 am
Nagaram (6/13/2012)
Expected output 1:
IDREFERENCE_IDTECH_MODE_IDBEGIN_TIMEEND_TIME RANK
1162012-05-03 20:29:22.0002012-05-03...
June 13, 2012 at 9:48 am
440692 I am just a number (6/13/2012)
SET DATEFORMAT dmy;GO
SELECT
[Getdate] = GETDATE()
,[Year] = DATEPART ( yy , GETDATE() )
,[Month] = DATEPART ( mm , GETDATE() )
,[Day] = DATEPART ( dd...
June 13, 2012 at 9:43 am
ChrisM@Work (6/13/2012)
AndrewSQLDBA (6/13/2012)
I have something simple that I am getting stumped on.
I have a complete date with time (2012-06-12 10:43:37), and I need only the date portion. I...
June 13, 2012 at 9:24 am
Check that the SQL Server Express is configured to accept remote connections.
June 13, 2012 at 1:25 am
glamourth (6/13/2012)
I have used sys.dm_exec_query_stats and sys.sysprocesses to find long running queries particulary more than 60 minutes. But, as am not gud at sql scripting not able to join...
June 13, 2012 at 1:21 am
Absolutely no idea. Are there any other error messages in the sql error logs?
June 12, 2012 at 8:39 pm
What is missing from the description of your problem is the error message you are getting while trying to connect to the instance of SQL Server Express. Without all...
June 12, 2012 at 8:37 pm
isuckatsql (6/12/2012)
SQL Server Execution Times:
...
June 12, 2012 at 8:30 pm
I love it (sic):
OP: I have a problem.
Forum: What?
OP: SQL Server is only using 60 GB of memory and I have max memory set at 100 GB.
Forum: Aaarrrrrgggghhhhhhhhhh!...
June 12, 2012 at 5:02 pm
Not a problem. SQL Server is able to meet your users needs with only 60 GB of memory. If it needs more, it will take it and use...
June 12, 2012 at 4:59 pm
h_maksuda (6/12/2012)
I have a table with the following data structure-
IDF1F2F3
11nullnull
1null1null
1nullnull1
I want to get the result in the following way -
IDF1F2F3
1111
how can I write the Query?
Any kind of help is appreciated.
Thanks...
June 12, 2012 at 3:48 pm
sonia.burns (6/12/2012)
June 12, 2012 at 3:00 pm
I have a suggestion, post the DDL for the tables involved, some sample data (something that without restrictions would return say 10 to 12 rows of data), the expected results...
June 12, 2012 at 2:31 pm
shil_jsh (6/12/2012)
I've two tables in the production does not have the primary key and foreign keys and yet I've to join those two tables in order to get the data...
June 12, 2012 at 2:21 pm
Viewing 15 posts - 11,341 through 11,355 (of 26,486 total)