Viewing 15 posts - 5,401 through 5,415 (of 8,761 total)
TeraByteMe (5/3/2015)
May 3, 2015 at 9:07 am
OsborneHar (5/3/2015)
May 3, 2015 at 6:48 am
MotivateMan1394 (5/3/2015)
I have 2 Functions in my Query. (then 2 columns in my query's output)
Function 1 : calculate a value on check a state field. (get values from...
May 3, 2015 at 6:44 am
Here is an addition to the previous code, nothing fancy but it should work most of the time
😎
USE tempdb;
GO
SET NOCOUNT ON;
SELECT
AW.Id
,CS.city_state_ID
...
May 3, 2015 at 6:32 am
GilaMonster (5/2/2015)
May 3, 2015 at 4:35 am
Paul Webb-223029 (5/1/2015)
May 3, 2015 at 4:30 am
Markus (5/1/2015)
May 3, 2015 at 4:26 am
sqlvitoco (4/30/2015)
I have a flow that includes a Foreach Loop Container that loads many files into a table. Also, the last task in the flow sends an "OK" email, and...
May 3, 2015 at 4:05 am
SQL-DBA-01 (4/30/2015)
Whenever I'm runing query against the below database alone, it throws me the error. Any suggest why this happens?
use [AdventureWorks_2005]
SELECT * FROM dbo.sysFILES
OR
SELECT ...
May 3, 2015 at 4:01 am
Quick thought, it might be helpful to look at the sys.dm_db_index_usage_stats view.
😎
SELECT
*
FROM sys.dm_db_index_usage_stats IUS
WHERE IUS.object_id = OBJECT_ID(N'[SCHEMA_NAME.TABLE_NAME]');
May 3, 2015 at 3:53 am
ramana3327 (4/30/2015)
I have a table in Server A and it has 5 columns. One is Address & ID, CreateDatetime,..
I need to transfer data from this table from Server A to...
May 3, 2015 at 3:46 am
jellybean (4/30/2015)
Hope I'm in the right forum. Apologies if this is off-mark. I'm a little new to SSIS and need a little help.
I'm reverse engineering...
May 3, 2015 at 3:40 am
aprathour.89 (4/30/2015)
I have a shared Sql instance having multiple databases of different Departments.
I have created a login LoginDept1 and given db_owner permission on database Dept1Db
The development team wants...
May 3, 2015 at 3:32 am
MotivateMan1394 (5/3/2015)
OkThe results are equal
and your query has 24 cost in comparition 76 cost of my query.
more over :
the Eirikur Eiriksson's queries are very complete.
Thank you All
You are...
May 3, 2015 at 1:02 am
Quick thought, first of all, I think there is an error in the code as purchase registryid does not match the item id.
😎
SELECT (SELECT SUM(amount) from giftregistrypurchases gps where registryid=gi.registryid...
May 3, 2015 at 12:57 am
Viewing 15 posts - 5,401 through 5,415 (of 8,761 total)