Tagged Questions
0
votes
2answers
35 views
How can I convert string to datetime in SQL Server 2008
How can I convert the following:
031413 05:53 AM into DATETIME format?
Where this code:
SELECT CONVERT(DATETIME, '031413 05:53 AM') gives me an error.
0
votes
0answers
15 views
How to implement Full-Text search in multilingual content in SQL Server
We have a site which supports different languages. We have millions of data so in search we would like to implement SQL Server Full-Text Search.
The table structure we have currently like below.
...
0
votes
0answers
14 views
Best Strategy for Encrypted Column to be Accessed by Multiple Users
We have a database of database connection strings, where the connection string contains passwords and is therefore sensitive. The table looks something like this:
CREATE TABLE ...
0
votes
1answer
35 views
T-SQL SUM All with a Conditional COUNT
I have a query that produces the following:
Team | Member | Cancelled | Rate
-----------------------------------
1 John FALSE 150
1 Bill TRUE 10
2 ...
-2
votes
0answers
52 views
Complex select query - sql server [closed]
I'm a novice of SQL, my question relates to the following tables:
Comments
id_comment|comment_product|comment_date|product_id|user_id
1 |Lorem 1 |2013/06/12 |1 |1
2 ...
0
votes
1answer
22 views
SQL declare variable for a long and repetitive select
I want to declare a variable and do the following :
Select
cast (SUM(case when @Dummy is not null then 1 else 0 end)*1.0/443321 as decimal(10,5)) @Dummy
FROM hellotable
WHERE @Dummy in ("100 ...
1
vote
2answers
57 views
Strange SQL Query
I came across this bit of tsql in some code I inherited:
DECLARE @a NVARCHAR(1000) ,
@b NVARCHAR(4)
SET @b = ( SELECT RIGHT(CAST(SQL_VARIANT_PROPERTY('#', 'basetype') AS VARCHAR(7)),
...
1
vote
2answers
41 views
SELECT rows for each 2 DISTINCT columns in a Table in SQL Server
I have a single table that has thousands of rows of log statistics (number of views per page, per website) for multiple websites. For instance, in this table, multiple sites can have a separate stat ...
2
votes
2answers
32 views
Add Column to Temp Table - 'Invalid column name DECIMAL'
I'm am creating a temp table via a SELECT INTO. I'd like to create the temp table then add a column to it like so:
SELECT id, name, val
INTO #TEMP_TBL
ALTER TABLE #TEMP_TBL ADD new_col AS DECIMAL
...
-1
votes
1answer
21 views
SQL rolling period of 20 days
I was wondering what is the best way to find, if over any continuous period of 20 days, the number of events exceeded 10.
I am trying to write an exception report but cannot figure out a logic ...
-2
votes
1answer
45 views
TSQL - Combine from one table into another with single row
I have three tables as outlined below.
tblNews
NewsId | Title |
======================
1 | Hello World |
tblSectionItems
rID | SectionID | NewsID |
...
0
votes
3answers
58 views
Split values by hyphen that exist in the same row and integrate with a INNER JOIN?
A table in my database holds values as below,
TBLFlow
FlowId FlowName ProcessId
------------------------------------------------
F00 Flow1 ...
0
votes
2answers
67 views
Print out all dates between 2 dates
If I have 2 days 2013-06-03 and 2013-06-10 as examples, how do I print a list of all the dates between those 2 dates?
For example, the list in this case would be:
2013-06-22
2013-06-23
2013-06-24
...
0
votes
3answers
72 views
datediff is always 1 number less than I need
I have the following which seems to work perfectly, except that it's always 1 less than the count I need:
DECLARE @start_day DATETIME;
DECLARE @end_day DATETIME;
DECLARE @start_time DATETIME;
DECLARE ...
0
votes
1answer
34 views
Query Results and display data
Hello I need help in creating a stored procedure that pulls out multiple data from different tables.
My current stored procedure is as follows:
'@partnername nvarchar(120)
as
select ...
3
votes
5answers
47 views
Select Statement wich joins to a another table with where definitions inside
I've a table which contains the where selection. For example ExpressionTable:
ID WhereCase
------------------
1 = 4
2 in(2,3)
3 = 3
4 in(4,5,6)
Now I need to select ...
0
votes
2answers
35 views
how to set value of column to a string out of selected options?
I have the following string literals
('Tv','Radio','Magazine','Internet')
I want to set the value of a certain column in a table to any of the above randomly.
so I would like to say
update ...
2
votes
5answers
43 views
datediff not returning what I'm expecting
Anyone know why the following is returning 8? I'm expecting 8 hours 30 minutes, or 8.5?
declare @start_day datetime;
declare @end_day datetime;
declare @start_time datetime;
declare @end_time ...
1
vote
4answers
60 views
TSQL stored proc nonsense
Saw this on a test- My SQL experience is basic CRUD-related and I'm not sure what the intent of this would be, if any?
CREATE PROCEDURE [dbo].[uspGetAccountID]
(
@AccountID int = 1
)
AS
...
0
votes
0answers
29 views
OPTION (MAXDOP) with sub query?
SELECT [SomeColumn]
FROM [Table1] t1
WHERE Table1ID = (
SELECT [Table1ID]
FROM [Table2] t2
WHERE t2.ID = 2
OPTION (MAXDOP 4)
)
OPTION (MAXDOP 4)
This gives ...
-4
votes
1answer
41 views
Variable Declaration [closed]
`DECLARE @MYACCOUNT CHAR(2),
@REPORTTYPE CHAR(1),
@BRANCHCODE CHAR(3)
SELECT @MYACCOUNT='SV',
@REPORTTYPE='D',
@BRANCHCODE='001'
IF ...
1
vote
0answers
45 views
How will this affect the data using Loops with rollback transaction
While @@Fetch_Status = 0
Begin
INSERT INTO [server].MyDatabase.dbo.Mytabletobeinserted (
UPC,
Sale_date)
VALUES(
@UPC,
@Sale_date)
'Inserting the error trapping here'
...
0
votes
1answer
47 views
Update Table Values while Incrementing the main value
I have two tables and I want to update current rows from that table to the main table, I am a DBA so for me I will end up writing a big loop so was thinking if any one can help me out. So basically I ...
0
votes
2answers
46 views
SQL Server : using a user-defined column in an aggregate function
For example, I have
SELECT SUBSTRING([Path], 0, 5) AS [Directory]
, COUNT([Directory])
FROM [MyDatabase]
GROUP BY [Directory];
But I get an "Invalid column name" error.
1
vote
1answer
40 views
SQL SUM statements returning different results
Can somebody explain why the two select statement results below are different!
I know the first statement is correct (using CASE) but I can't understand why the second statement is wrong.
CREATE ...
0
votes
2answers
32 views
SQL sum field and select a column (with condition) and sum another column
I have a select statement:
SELECT ID, A, B, C, D
FROM MyTable
GROUP BY ID, A, B, C, D
HAVING D >= '14/06/2013'
AND D <= '17/06/2013'
show this:
ID | A | B | C | ...
0
votes
1answer
29 views
Populate data from One table to another with out matching Key
Can any one tell me how to do this....
Table 1 Table 2
Cat_ID Cat_Name Term_ID Term_Name
1 ab ...
1
vote
3answers
72 views
How to split string into columns for a view [duplicate]
I have a column (full_location_id) in a table that contains a string is delimited by '-' which I need to split up into 4 columns in a view (Test_SplitColumn). Not every record in full_location_id ...
4
votes
3answers
93 views
Check if column is NOT NULL
I have a column in my DB which is currently defined as NOT NULL.
I would like to update this column to allow NULLs.
I have the following script to do this however I would like to check first if the ...
0
votes
3answers
36 views
Update table from stored procedure
Have stored procedure where I update my table :
UPDATE myTbl
SET [first_name] = @first_name,
[second_name] = @second_name,
[faculty] = @faculty,
[age] = @age
WHERE [id] = @id
...
2
votes
1answer
18 views
SQL Server After Update Trigger Not Working
i have schema with the following structure;
In MPRMain table, the Status can be 1(Aprove), 2(Cancel) and 3(Pending). I'm trying to do something like this e.g When someone update the Status (in ...
-14
votes
0answers
81 views
I want a SQL Server answer [closed]
I want a SQL Server answer. I have tried to validate a variable with sql server with if else condition.I have three variables. If the variable is given three right inputs then it will make the program ...
0
votes
1answer
57 views
SQL query, search data and return project name
Hey I'm looking for some help in creating a stored procedure.
Here are the details
I have a table called Partners which holds the partner information (Columns, PartnerID and partnername) I also have ...
0
votes
1answer
29 views
How to convert varbinary to varchar sql server
I have table with columns :
ID int,
FirstName nvarchar(50),
Phone varchar(50),
Email varbinary(50) -- (use varbinary for unicode)
Have stored procedure where I want update phone and email in this ...
2
votes
1answer
20 views
Executing T-SQL script with dynamic query that requests AcitveDirectory with various usernames
folks!
I'm trying to execute dynamic query that requests the ActiveDirectory folder via LDAP. The query is below:
DECLARE @TargetUser VARCHAR(100)
SET @TargetUser = 'apilinktester'
DECLARE ...
1
vote
1answer
31 views
Fusion of two tables with Specific SUM operation in SQL Server 2012
I have two views in my database, here are their structures:
Table 1 (Stock product entries) :
---------------------------------------
| Date | Product | Quantity |
...
0
votes
1answer
50 views
Date range tally table grouping with bad performance
I have a stored procedure that is currently hitting the TempDb pretty hard, making the query run both slow and sometimes consuming a lot of disk space (growing TempDb). I am taking data such as this:
...
1
vote
1answer
39 views
remove duplicate rows based on substring match
I have a sql column nvarchar(200) which has the following values
xxx {"Name":"Stack"} yyy
aaa {"Name":"Overflow"} bbb
ccc {"Name":Stack"} ddd
eee {"Name":"Overflow"} fff
I want to ...
0
votes
0answers
33 views
insert into statement to select records from access (mdb) file
Is there a way that I can use access(mdb) file in sql(t-sql) insert into statement?
I have a client table in my sql CE and I have same like table in another access database, i want to import records ...
0
votes
0answers
54 views
How to improve this query - is partitioning the best option here?
I have a table called Transactions which currently contains 6+ million of rows (around 600-700 thousand per month)
It looks like this:
pk id ...
0
votes
2answers
58 views
INNER JOIN should happen only when a condition is fulfilled
I am trying to "short-circuit" an INNER JOIN, if condition isn't met.
What I tried:
I found that if a Left Join is preceded with a False clause on "ON" condition, the LEFT JOIN fails. Hence, I tried ...
1
vote
1answer
27 views
T-SQL function does not return all values
I have 2 tables, contact and membership
Here is the data from my tables:
CONTACT:
SERIALNUMBER TITLE FIRSTNAME SURNAME
1 Mr John Doe
2 Mrs ...
1
vote
5answers
44 views
Dynamic SQL to pass table name and return Max ID value
Here is what I am trying to do I have list of tables(50 of them) and in all the tables I have one common column called "ID", what I want to do is pass table name that will dynamically return my ...
0
votes
1answer
35 views
SQL statement to collect data over granular time span
I have collected CPU usage data on my server using the following SQL Server 2008 table structure:
CREATE TABLE [tbl]
[id] BIGINT NOT NULL IDENTITY(1,1) PRIMARY KEY,
[dt] DATETIME2, -- date/time ...
1
vote
2answers
70 views
Insert n rows stored procedure
Trying to insert multiple rows based on a passed parameter.
Tried this and it only repeated once:
ALTER PROCEDURE [dbo].[ActivateCertificates]
@Count int,
@CertificateNumber ...
0
votes
2answers
43 views
Make a CTE from result of others CTE
I have several joined CTE. Something like:
;With CT1 AS(SELECT ..)
, CT2 AS(select)
SELECT *.T1,*T2 FROM CT1 T1 INNER JOIN CT2 T2 WHERE (some Condition ) GROUP BY (F1,F2, etc)
Now I need to join ...
0
votes
2answers
34 views
Update one column from substring of another column
I have an existing column that I would like to take a subset of and insert into a second (new) column in the same table.
e.g. MyTable.[FullName] (existing column) contains a string like "P-13-146 PS ...
0
votes
2answers
45 views
Put Where Clause in a parameter
I would like to use a where clause in a parameter. I already tried the following code but it doesnt work. the last line us red underlined, i reckon that i have to bind the parameter to the select ...
0
votes
1answer
39 views
Comparing 2 tables with Limited join options
I have this category group , which has 5 categories and Description(Display Text)of the categories . Fields(Category ID, Display Text)
And I have another view which has information about like ...
3
votes
1answer
61 views
Get the SQL statement that invoked the CLR function
Is it possible from with in a CLR function that is being executed by SQL to determine the SQL statement that invoked the CLR function in the first place. If there is no direct way, what about an ...









